mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2026-03-07 06:31:33 +01:00
22 lines
455 B
Plaintext
22 lines
455 B
Plaintext
---
|
|
functions:
|
|
file-read:
|
|
- code: |-
|
|
shuf -z /path/to/input-file
|
|
comment: |-
|
|
The read file content is corrupted by randomizing the order of NUL terminated strings.
|
|
contexts:
|
|
sudo:
|
|
suid:
|
|
unprivileged:
|
|
file-write:
|
|
- code: |-
|
|
shuf -e DATA -o /path/to/output-file
|
|
comment: |-
|
|
The written file content is corrupted by adding a newline.
|
|
contexts:
|
|
sudo:
|
|
suid:
|
|
unprivileged:
|
|
...
|