mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 23:09:46 +01:00
17 lines
330 B
Markdown
17 lines
330 B
Markdown
---
|
|
description: The read file content is corrupted by squashing multiple adjacent lines.
|
|
functions:
|
|
file-read:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
uniq "$LFILE"
|
|
suid:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
./uniq "$LFILE"
|
|
sudo:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
sudo uniq "$LFILE"
|
|
---
|