mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 06:49:44 +01:00
12 lines
184 B
Markdown
12 lines
184 B
Markdown
---
|
|
functions:
|
|
file-read:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
dd if=LFILE
|
|
file-write:
|
|
- code: |
|
|
LFILE=file_to_write
|
|
echo "data" | dd of=$LFILE
|
|
---
|