@voidagency/web-scanner 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +2 -2
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -21,7 +21,7 @@ const program = new Command();
|
|
|
21
21
|
program
|
|
22
22
|
.name('voidsec')
|
|
23
23
|
.description('Security scanning CLI - ZAP primary with Nuclei supplementary')
|
|
24
|
-
.version('0.0.
|
|
24
|
+
.version('0.0.4');
|
|
25
25
|
const availableStacks = getAvailableStacks();
|
|
26
26
|
program
|
|
27
27
|
.command('scan')
|
|
@@ -62,7 +62,7 @@ program
|
|
|
62
62
|
setSeverityOverrides(config.severity_overrides);
|
|
63
63
|
console.log('📋 Loaded severity overrides from config');
|
|
64
64
|
}
|
|
65
|
-
console.log('🔍 VoidSec Security Scanner v0.0.
|
|
65
|
+
console.log('🔍 VoidSec Security Scanner v0.0.4');
|
|
66
66
|
console.log('━'.repeat(40));
|
|
67
67
|
console.log(`Target: ${target}`);
|
|
68
68
|
console.log(`Profile: ${profile}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voidagency/web-scanner",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Security scanning CLI orchestrating ZAP, Nuclei, and testssl.sh",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"build": "tsc",
|
|
18
18
|
"dev": "tsx src/cli.ts",
|
|
19
19
|
"start": "node dist/cli.js",
|
|
20
|
-
"prepublishOnly": "npm run build"
|
|
20
|
+
"prepublishOnly": "NODE_ENV=production npm run build"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
23
|
"security",
|