diff options
author | David Timber <mieabby@gmail.com> | 2020-09-18 00:39:10 +0930 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2020-09-18 00:39:10 +0930 |
commit | 54166c46f32555532dc3c0e922fe6a591cb74128 (patch) | |
tree | dee32ffb8a15365cc2800f6c2cbc3520ef56324e /.vscode/launch.json | |
parent | e6953dcb47193746a4f4d9fff0193723fadbb3e6 (diff) |
* Impl: bne
* Add prne_index_nybin()
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index de57131..a9b6faa 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -109,6 +109,40 @@ "preLaunchTask": "Build recon", "miDebuggerPath": "/usr/bin/gdb" }, + { + "name": "mkcdict", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/src/proone-mkcdict", + "args": [ "./src/data/cred_dict.txt", "./src/data/cred_dict.bin" ], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [], + "preLaunchTask": "Build mkcdict", + "miDebuggerPath": "/usr/bin/gdb" + }, + { + "name": "bne", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/src/proone-bne", + "args": [ + "./src/data/cred_dict.bin", + "./builds/proone/proone.nybin", + "192.0.2.1" // CHANGE + ], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [], + "preLaunchTask": "Build bne", + "miDebuggerPath": "/usr/bin/gdb" + }, { "name": "proone", |