pentesting 0.7.35 → 0.7.36

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 +11 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6634,6 +6634,16 @@ var App = ({ autoApprove = false, target }) => {
6634
6634
  const [wasInterrupted, setWasInterrupted] = useState(false);
6635
6635
  const [spinnerHue, setSpinnerHue] = useState(0);
6636
6636
  const [, forceUpdate] = useState(0);
6637
+ const SPINNER_COLORS = [
6638
+ "#FF6B6B",
6639
+ "#FF8E53",
6640
+ "#FFC107",
6641
+ "#4CAF50",
6642
+ "#00BCD4",
6643
+ "#2196F3",
6644
+ "#9C27B0",
6645
+ "#E91E63"
6646
+ ];
6637
6647
  const [agent] = useState(() => new AutonomousHackingAgent(void 0, { autoApprove }));
6638
6648
  const sessionManager2 = getSessionManager();
6639
6649
  const approvalManager2 = getApprovalManager({ yoloMode: autoApprove });
@@ -7534,7 +7544,7 @@ ${list}`);
7534
7544
  ] }),
7535
7545
  isProcessing ? /* @__PURE__ */ jsxs2(Box2, { flexDirection: "column", children: [
7536
7546
  /* @__PURE__ */ jsxs2(Box2, { children: [
7537
- /* @__PURE__ */ jsx2(Text2, { color: `hsl(${spinnerHue}, 70%, 60%)`, children: /* @__PURE__ */ jsx2(Spinner, { type: "dots" }) }),
7547
+ /* @__PURE__ */ jsx2(Text2, { color: SPINNER_COLORS[Math.floor(spinnerHue / 45) % SPINNER_COLORS.length], children: /* @__PURE__ */ jsx2(Spinner, { type: "dots" }) }),
7538
7548
  /* @__PURE__ */ jsxs2(Text2, { color: THEME.text.muted, children: [
7539
7549
  " ",
7540
7550
  currentStatus,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pentesting",
3
- "version": "0.7.35",
3
+ "version": "0.7.36",
4
4
  "description": "Autonomous Penetration Testing AI Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",