본문으로 바로가기

[Bugbear] LOS 문제풀이13

category SOLUTION/LOS(Lord of SQL) 2017. 7. 3. 18:38


   [Bugbear] LOS 문제풀이13


SQL Injection Web Hacking

LOS 사이트 : http://los.eagle-jump.org/


[힌트]

1. substr 우회

   right, left, mid 사용

   substr('apple',1,1) = 'a'  ->  right(left('apple',1),1) = 'a'

   substr('apple',1,1) = 'a'  ->  mid('apple',1,1) = 'a'

2. ascii 우회

   ord, hex 사용

   ascii(substr(pw,1,1)) = ord(substr(pw,1,1))

3. =, like, or, and 우회

  = : like, between, in, instr 이용

  or : ||   and : &&

4. 빈칸(공백) 우회

  ' ' : ( ), /**/, %09, %0a, %0c, %0b, +

5. ' (작은따옴표) 우회

  char 이용 or " (큰따옴표) 사용






'SOLUTION > LOS(Lord of SQL)' 카테고리의 다른 글

[Assassin] LOS 문제풀이15  (0) 2017.07.03
[Giant] LOS 문제풀이14  (0) 2017.07.03
[Darkknight] LOS 문제풀기12  (0) 2017.07.03
[Golem] LOS 문제풀이11  (0) 2017.07.02
[Skeleton] LOS 문제풀이10  (0) 2017.07.02