aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json22
-rw-r--r--.vscode/tasks.json5
2 files changed, 27 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 6bcfd80..de57131 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -87,6 +87,28 @@
"preLaunchTask": "Build rnd",
"miDebuggerPath": "/usr/bin/gdb"
},
+ {
+ "name": "recon",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/src/proone-recon",
+ "args": [ "./src/data/recon.conf", "22", "23" ],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "MIMode": "gdb",
+ "setupCommands": [
+ {
+ "description":
+ "Disable startup-with-shell to pass file cap",
+ "text": "set startup-with-shell off",
+ "ignoreFailures": false
+ }
+ ],
+ "preLaunchTask": "Build recon",
+ "miDebuggerPath": "/usr/bin/gdb"
+ },
{
"name": "proone",
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 03171be..60a1d5e 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -46,6 +46,11 @@
"command": "make -C ./src proone-rnd"
},
{
+ "label": "Build recon",
+ "type": "shell",
+ "command": "make -C ./src proone-recon"
+ },
+ {
"label": "Build proone",
"type": "shell",
"command": "make -C ./src proone"