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.
Files changed (2) hide show
  1. package/dist/index.js +4 -8
  2. 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 || "No target",
7914
- state.target.discovered.length > 1 && ` (+${state.target.discovered.length - 1})`,
7915
- state.findings.length > 0 && ` \u2502 ${state.findings.length} findings`,
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
- /* @__PURE__ */ jsx2(Box2, { children: pendingApproval ? /* @__PURE__ */ jsx2(Text2, { color: "#FFA500", bold: true, children: "\u26A0 WAITING APPROVAL" }) : isProcessing ? /* @__PURE__ */ jsx2(Text2, { color: THEME.text.muted, children: "\u25CF" }) : /* @__PURE__ */ jsx2(Text2, { color: THEME.text.muted, children: "\u25CB READY" }) })
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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pentesting",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "description": "Autonomous Penetration Testing AI Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",