diff --git a/Exploits/Databases/SQL Injection.md b/Exploits/Databases/SQL Injection.md index 537128f..28e5794 100644 --- a/Exploits/Databases/SQL Injection.md +++ b/Exploits/Databases/SQL Injection.md @@ -113,7 +113,7 @@ Check the number of columns by inserting NULL values one after another. 0 union select null, null, group_concat(username, ':', password from found_tablename ``` -The examples above contain methods of retrieving table name, column names. The last example uses the information returned to inject the correct column names so the acutal content of them are retrieved. Further examples under [SQL Functions](# SQL Functions) +The examples above contain methods of retrieving table name, column names. The last example uses the information returned to inject the correct column names so the acutal content of them are retrieved. Further examples under [SQL Functions](#SQL-Functions) ## Further Information