mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 06:49:44 +01:00
21 lines
548 B
Markdown
21 lines
548 B
Markdown
---
|
|
functions:
|
|
shell:
|
|
- code: screen
|
|
file-write:
|
|
- description: This has been found working on screen version 4.06.02. The file has a trailing `^C` character.
|
|
code: |
|
|
LFILE=file_to_write
|
|
screen -L -Logfile $LFILE tail -f /dev/null
|
|
DATA
|
|
^C
|
|
- description: This has been found working on screen version 4.05.00. The file has a trailing `^C` character.
|
|
code: |
|
|
LFILE=file_to_write
|
|
screen -L $LFILE tail -f /dev/null
|
|
DATA
|
|
^C
|
|
sudo:
|
|
- code: sudo screen
|
|
---
|