GTFOBins.github.io/_gtfobins/shuf.md

24 lines
700 B
Markdown
Raw Permalink Normal View History

2018-06-12 16:06:16 +02:00
---
functions:
2020-03-17 07:19:50 +01:00
file-read:
- description: The read file content is corrupted by randomizing the order of NUL terminated strings.
code: |
LFILE=file_to_read
shuf -z "$LFILE"
2018-06-12 16:06:16 +02:00
file-write:
2020-03-17 07:19:50 +01:00
- description: The written file content is corrupted by adding a newline.
code: |
2018-07-16 15:01:50 +02:00
LFILE=file_to_write
shuf -e DATA -o "$LFILE"
2018-10-05 19:55:38 +02:00
suid:
2020-03-17 07:19:50 +01:00
- description: The written file content is corrupted by adding a newline.
code: |
2018-07-16 15:01:50 +02:00
LFILE=file_to_write
./shuf -e DATA -o "$LFILE"
2020-03-17 07:19:50 +01:00
sudo:
- description: The written file content is corrupted by adding a newline.
code: |
2018-07-16 15:01:50 +02:00
LFILE=file_to_write
sudo shuf -e DATA -o "$LFILE"
2018-06-12 16:06:16 +02:00
---