mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 22:40:10 +01:00
19 lines
445 B
Markdown
19 lines
445 B
Markdown
---
|
|
description: |
|
|
Three spaces are added before each character in the read file, and
|
|
non-printable chars are printed as backslash escape sequences.
|
|
functions:
|
|
sudo-enabled:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
sudo od -An -c -w9999 "$LFILE"
|
|
suid-enabled:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
./od -An -c -w9999 "$LFILE"
|
|
file-read:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
od -An -c -w9999 "$LFILE"
|
|
---
|