From d834abe43c78716db22a3d2fc8fff6c68f4c356d Mon Sep 17 00:00:00 2001 From: mohnad banat <75941340+mohnad-0b@users.noreply.github.com> Date: Mon, 1 Apr 2024 20:46:09 +0300 Subject: [PATCH] Update SQLite Injection.md Since sqlite version 3.33.0, sqlite_schema has been replaced by sqlite_master. --- SQL Injection/SQLite Injection.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SQL Injection/SQLite Injection.md b/SQL Injection/SQLite Injection.md index 924f611..4738508 100644 --- a/SQL Injection/SQLite Injection.md +++ b/SQL Injection/SQLite Injection.md @@ -33,7 +33,10 @@ select sqlite_version(); ```sql SELECT sql FROM sqlite_schema ``` - +if sqlite_version > 3.33.0 +```sql +SELECT sql FROM sqlite_master +``` ## Integer/String based - Extract table name ```sql