mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 06:49:44 +01:00
e637c45b84
Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
21 lines
422 B
Markdown
21 lines
422 B
Markdown
---
|
|
|
|
description: The file content is actually parsed and appears as error messages, thus it might not be suitable to read arbitray binary files.
|
|
functions:
|
|
file-read:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
bc -s $LFILE
|
|
quit
|
|
sudo:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
sudo bc -s $LFILE
|
|
quit
|
|
suid:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
./bc -s $LFILE
|
|
quit
|
|
---
|