pwnkit-cli 0.1.6 → 0.1.7
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 +11 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14046,7 +14046,7 @@ var chalkStderr = createChalk({ level: stderrColor ? stderrColor.level : 0 });
|
|
|
14046
14046
|
var source_default = chalk;
|
|
14047
14047
|
|
|
14048
14048
|
// packages/shared/dist/constants.js
|
|
14049
|
-
var VERSION = "0.1.
|
|
14049
|
+
var VERSION = "0.1.7";
|
|
14050
14050
|
var DEPTH_CONFIG = {
|
|
14051
14051
|
quick: { maxTemplates: 5, maxPayloadsPerTemplate: 1, multiTurn: false },
|
|
14052
14052
|
default: { maxTemplates: 20, maxPayloadsPerTemplate: 3, multiTurn: false },
|
|
@@ -18452,11 +18452,11 @@ program2.command("review").description("Deep source code security review of a re
|
|
|
18452
18452
|
switch (event.type) {
|
|
18453
18453
|
case "stage:start": {
|
|
18454
18454
|
const msg = event.message;
|
|
18455
|
-
if (
|
|
18455
|
+
if (msg.startsWith("Reading ")) {
|
|
18456
18456
|
spinner?.stop();
|
|
18457
18457
|
console.log(` ${source_default.cyan("\u2192")} ${source_default.cyan("read")} ${source_default.gray(msg.replace("Reading ", ""))}`);
|
|
18458
18458
|
spinner?.start();
|
|
18459
|
-
} else if (
|
|
18459
|
+
} else if (msg.startsWith("Running: ")) {
|
|
18460
18460
|
spinner?.stop();
|
|
18461
18461
|
console.log(` ${source_default.magenta("\u2192")} ${source_default.magenta("exec")} ${source_default.gray(msg.replace("Running: ", ""))}`);
|
|
18462
18462
|
spinner?.start();
|
|
@@ -18470,10 +18470,12 @@ program2.command("review").description("Deep source code security review of a re
|
|
|
18470
18470
|
spinner?.succeed(event.message);
|
|
18471
18471
|
break;
|
|
18472
18472
|
case "finding":
|
|
18473
|
-
|
|
18473
|
+
{
|
|
18474
|
+
spinner?.stop();
|
|
18474
18475
|
console.log(
|
|
18475
18476
|
` ${source_default.yellow("\u26A1")} ${source_default.yellow(event.message)}`
|
|
18476
18477
|
);
|
|
18478
|
+
spinner?.start();
|
|
18477
18479
|
}
|
|
18478
18480
|
break;
|
|
18479
18481
|
case "error":
|
|
@@ -18568,11 +18570,11 @@ program2.command("audit").description("Audit an npm package for security vulnera
|
|
|
18568
18570
|
switch (event.type) {
|
|
18569
18571
|
case "stage:start": {
|
|
18570
18572
|
const msg = event.message;
|
|
18571
|
-
if (
|
|
18573
|
+
if (msg.startsWith("Reading ")) {
|
|
18572
18574
|
spinner?.stop();
|
|
18573
18575
|
console.log(` ${source_default.cyan("\u2192")} ${source_default.cyan("read")} ${source_default.gray(msg.replace("Reading ", ""))}`);
|
|
18574
18576
|
spinner?.start();
|
|
18575
|
-
} else if (
|
|
18577
|
+
} else if (msg.startsWith("Running: ")) {
|
|
18576
18578
|
spinner?.stop();
|
|
18577
18579
|
console.log(` ${source_default.magenta("\u2192")} ${source_default.magenta("exec")} ${source_default.gray(msg.replace("Running: ", ""))}`);
|
|
18578
18580
|
spinner?.start();
|
|
@@ -18586,10 +18588,12 @@ program2.command("audit").description("Audit an npm package for security vulnera
|
|
|
18586
18588
|
spinner?.succeed(event.message);
|
|
18587
18589
|
break;
|
|
18588
18590
|
case "finding":
|
|
18589
|
-
|
|
18591
|
+
{
|
|
18592
|
+
spinner?.stop();
|
|
18590
18593
|
console.log(
|
|
18591
18594
|
` ${source_default.yellow("\u26A1")} ${source_default.yellow(event.message)}`
|
|
18592
18595
|
);
|
|
18596
|
+
spinner?.start();
|
|
18593
18597
|
}
|
|
18594
18598
|
break;
|
|
18595
18599
|
case "error":
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pwnkit-cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.7",
|
|
5
5
|
"description": "AI-powered agentic security scanner. Scan endpoints, audit packages, review source code. Autonomous agents discover, attack, verify, and report.",
|
|
6
6
|
"bin": {
|
|
7
7
|
"pwnkit": "dist/index.js"
|