pentesting 0.8.3 → 0.8.5
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 +4 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7910,13 +7910,11 @@ ${list}`);
|
|
|
7910
7910
|
] }),
|
|
7911
7911
|
/* @__PURE__ */ jsxs2(Box2, { marginTop: 1, justifyContent: "space-between", children: [
|
|
7912
7912
|
/* @__PURE__ */ jsxs2(Text2, { dimColor: true, children: [
|
|
7913
|
-
state.target.primary || "
|
|
7914
|
-
state.
|
|
7915
|
-
|
|
7916
|
-
state.credentials.length > 0 && ` \u2502 ${state.credentials.length} creds`,
|
|
7917
|
-
tokenUsage.total > 0 && ` \u2502 ${(tokenUsage.total / 1e3).toFixed(0)}k tokens`
|
|
7913
|
+
state.target.primary || "\u2014",
|
|
7914
|
+
state.findings.length > 0 && ` \u2022 ${state.findings.length}\u2691`,
|
|
7915
|
+
tokenUsage.total > 0 && ` \u2022 ${(tokenUsage.total / 1e3).toFixed(0)}k`
|
|
7918
7916
|
] }),
|
|
7919
|
-
|
|
7917
|
+
pendingApproval && /* @__PURE__ */ jsx2(Text2, { color: "#FFA500", bold: true, children: "\u26A0 APPROVAL" })
|
|
7920
7918
|
] })
|
|
7921
7919
|
] });
|
|
7922
7920
|
};
|
|
@@ -8054,8 +8052,6 @@ ${chalk.hex(THEME.status.warning)("Environment:")}
|
|
|
8054
8052
|
|
|
8055
8053
|
${chalk.hex(THEME.text.accent)("PENTEST_API_KEY")} Required - LLM API key
|
|
8056
8054
|
${chalk.hex(THEME.text.accent)("PENTEST_MODEL")} Optional - Model override
|
|
8057
|
-
|
|
8058
|
-
${chalk.hex(THEME.text.muted)("For ethical hacking and authorized testing only.")}
|
|
8059
8055
|
`);
|
|
8060
8056
|
});
|
|
8061
8057
|
program.parse();
|