Skip to content

Commit 2008b5f

Browse files
committed
update: rustscan scanning task
1 parent 9c02695 commit 2008b5f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.vscode/tasks.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,19 @@
117117
],
118118
"problemMatcher": []
119119
},
120+
{
121+
"label": "auto rustscan",
122+
"type": "shell",
123+
"detail": "Run rustscan with some default options",
124+
"command": [
125+
"source ${workspaceFolder}/.vscode/.zshrc; ",
126+
"rustscan",
127+
"--ulimit 5000",
128+
"-a ${input:scan-host}",
129+
"-- ${input:nmap-args}"
130+
],
131+
"problemMatcher": []
132+
}
120133
],
121134
"inputs": [
122135
// msfvenom
@@ -328,6 +341,18 @@
328341
"type": "promptString",
329342
"description": "This is the place for wordlists or your mask string",
330343
"default": "$ROCKYOU"
344+
},
345+
{
346+
"id": "scan-host",
347+
"type": "promptString",
348+
"description": "Enter the host to scan, or using default $RHOST $DOMAIN $TARGET variable u defined",
349+
"default": "$RHOST"
350+
},
351+
{
352+
"id": "nmap-args",
353+
"type": "promptString",
354+
"description": "Enter the nmap arguments, like -sS/-sV/-sC/-Pn",
355+
"default": "-A --script=vuln -Pn"
331356
}
332357
]
333358
}

0 commit comments

Comments
 (0)