xploitscan 1.0.17 → 1.0.18
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4127,7 +4127,7 @@ async function cursorInstallCommand(opts = {}) {
|
|
|
4127
4127
|
var program = new Command();
|
|
4128
4128
|
program.name("xploitscan").description(
|
|
4129
4129
|
"AI security scanner for vibe-coded apps. Find vulnerabilities before attackers do."
|
|
4130
|
-
).version("1.0.
|
|
4130
|
+
).version("1.0.18");
|
|
4131
4131
|
program.command("scan").description("Scan a directory for security vulnerabilities").argument("[directory]", "Directory to scan", ".").option("--no-ai", "Skip AI-powered analysis").option("-f, --format <format>", "Output format: terminal, json, sarif", "terminal").option("-v, --verbose", "Show detailed output", false).option("--diff [base]", "Scan only files changed vs base branch (default: main)").option("-w, --watch", "Watch for file changes and re-scan automatically", false).action(async (directory, opts) => {
|
|
4132
4132
|
await scanCommand(directory, {
|
|
4133
4133
|
directory,
|