Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sqlmapproject
GitHub Repository: sqlmapproject/sqlmap
Path: blob/master/extra/dbgtool/README.txt
2992 views
1
To use dbgtool.py you need to pass it the MS-DOS executable binary file,
2
and optionally the output debug.exe script file name.
3
4
Example:
5
6
$ python ./dbgtool.py -i ./nc.exe -o nc.scr
7
8
This will create a ASCII text file with CRLF line terminators called
9
nc.scr.
10
11
Such file can then be converted to its original portable executable with
12
the Windows native debug.exe, that is installed by default in all Windows
13
systems:
14
15
> debug.exe < nc.scr
16
17
To be able to execute it on Windows you have to rename it to end with
18
'.com' or '.exe':
19
20
> ren nc_exe nc.exe
21
22