Create hexdump.md

This commit is contained in:
bcoles 2020-03-17 17:50:20 +11:00 committed by Andrea Cardaci
parent 0e78ab8010
commit 96ddab6cb8

15
_gtfobins/hexdump.md Normal file
View File

@ -0,0 +1,15 @@
---
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"
---