pentesting 0.8.2 → 0.8.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/index.js +4 -9
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7910,16 +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
|
-
|
|
7920
|
-
"\u25CF PROCESSING ",
|
|
7921
|
-
currentStatus && `(${currentStatus.slice(0, 20)}...)`
|
|
7922
|
-
] }) : /* @__PURE__ */ jsx2(Text2, { color: "#888888", children: "\u25CB READY" }) })
|
|
7917
|
+
pendingApproval && /* @__PURE__ */ jsx2(Text2, { color: "#FFA500", bold: true, children: "\u26A0 APPROVAL" })
|
|
7923
7918
|
] })
|
|
7924
7919
|
] });
|
|
7925
7920
|
};
|