[Bugbear] LOS 문제풀이13
[Bugbear] LOS 문제풀이13 SQL Injection Web HackingLOS 사이트 : 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. 빈칸(공백) 우회 ' ' : ( ), /**/,..