mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 22:40:10 +01:00
16 lines
335 B
Markdown
16 lines
335 B
Markdown
|
---
|
||
|
functions:
|
||
|
sudo-enabled:
|
||
|
- code: |
|
||
|
LFILE=file_to_read
|
||
|
sudo diff --line-format=%L /dev/null $LFILE
|
||
|
suid-enabled:
|
||
|
- code: |
|
||
|
LFILE=file_to_read
|
||
|
./diff --line-format=%L /dev/null $LFILE
|
||
|
file-read:
|
||
|
- code: |
|
||
|
LFILE=file_to_read
|
||
|
diff --line-format=%L /dev/null $LFILE
|
||
|
---
|