1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-19 02:11:39 +02:00

Add screen

This commit is contained in:
Emilio 2019-03-12 17:41:10 +00:00
parent 383db60b02
commit 73b18859d5

20
_gtfobins/screen.md Normal file
View File

@ -0,0 +1,20 @@
---
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
---