pentesting 0.8.6 → 0.8.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.
Files changed (2) hide show
  1. package/dist/index.js +11 -59
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6505,17 +6505,17 @@ var THEME = {
6505
6505
  input: "#0d0d0d"
6506
6506
  // Input background
6507
6507
  },
6508
- // Text colors (white to gray)
6508
+ // Text colors (grayish white tones)
6509
6509
  text: {
6510
- primary: "#ffffff",
6511
- // White
6510
+ primary: "#e0e0e0",
6511
+ // Grayish white (not pure white)
6512
6512
  secondary: "#a0a0a0",
6513
6513
  // Light gray
6514
6514
  muted: "#666666",
6515
6515
  // Medium gray
6516
6516
  accent: "#cccccc",
6517
- // Bright gray (was pink)
6518
- highlight: "#e0e0e0"
6517
+ // Bright gray
6518
+ highlight: "#d0d0d0"
6519
6519
  // Near white
6520
6520
  },
6521
6521
  // Status colors (grayscale)
@@ -6593,7 +6593,10 @@ var THEME = {
6593
6593
  danger: ["#555555", "#777777"],
6594
6594
  success: ["#888888", "#aaaaaa"],
6595
6595
  gold: ["#999999", "#cccccc"]
6596
- }
6596
+ },
6597
+ // Spinner color (warm pastel yellow)
6598
+ spinner: "#F5D76E"
6599
+ // Pastel warm yellow
6597
6600
  };
6598
6601
  var ASCII_BANNER = `
6599
6602
  \u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2588\u2557 \u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2557\u2588\u2588\u2588\u2557 \u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2588\u2588\u2557
@@ -6912,58 +6915,7 @@ var App = ({ autoApprove = false, target }) => {
6912
6915
  const [wasInterrupted, setWasInterrupted] = useState(false);
6913
6916
  const [spinnerHue, setSpinnerHue] = useState(0);
6914
6917
  const [, forceUpdate] = useState(0);
6915
- const SPINNER_COLORS = [
6916
- // Reds
6917
- "#FF0000",
6918
- "#FF3333",
6919
- "#FF6B6B",
6920
- "#FF4444",
6921
- // Oranges
6922
- "#FF6600",
6923
- "#FF8C00",
6924
- "#FF8E53",
6925
- "#FFA500",
6926
- // Yellows
6927
- "#FFD700",
6928
- "#FFFF00",
6929
- "#FFC107",
6930
- "#FFE135",
6931
- // Greens
6932
- "#00FF00",
6933
- "#32CD32",
6934
- "#4CAF50",
6935
- "#00FF7F",
6936
- // Cyans
6937
- "#00FFFF",
6938
- "#00CED1",
6939
- "#00BCD4",
6940
- "#20B2AA",
6941
- // Blues
6942
- "#0000FF",
6943
- "#1E90FF",
6944
- "#2196F3",
6945
- "#4169E1",
6946
- // Purples
6947
- "#8A2BE2",
6948
- "#9400D3",
6949
- "#9C27B0",
6950
- "#BA55D3",
6951
- // Pinks
6952
- "#FF00FF",
6953
- "#FF1493",
6954
- "#E91E63",
6955
- "#FF69B4",
6956
- // Whites & Grays
6957
- "#FFFFFF",
6958
- "#F0F0F0",
6959
- "#E0E0E0",
6960
- "#D3D3D3",
6961
- // Special
6962
- "#7FFFD4",
6963
- "#F0E68C",
6964
- "#DDA0DD",
6965
- "#98FB98"
6966
- ];
6918
+ const spinnerColor = THEME.spinner;
6967
6919
  const [agent] = useState(() => new AutonomousHackingAgent(void 0, { autoApprove }));
6968
6920
  const sessionManager2 = getSessionManager();
6969
6921
  const approvalManager2 = getApprovalManager({ yoloMode: autoApprove });
@@ -7864,7 +7816,7 @@ ${list}`);
7864
7816
  ] }),
7865
7817
  isProcessing ? /* @__PURE__ */ jsxs2(Box2, { flexDirection: "column", children: [
7866
7818
  /* @__PURE__ */ jsxs2(Box2, { children: [
7867
- /* @__PURE__ */ jsx2(Text2, { color: SPINNER_COLORS[Math.floor(spinnerHue / 9) % SPINNER_COLORS.length], children: /* @__PURE__ */ jsx2(Spinner, { type: "dots" }) }),
7819
+ /* @__PURE__ */ jsx2(Text2, { color: spinnerColor, children: /* @__PURE__ */ jsx2(Spinner, { type: "dots" }) }),
7868
7820
  /* @__PURE__ */ jsxs2(Text2, { color: THEME.text.muted, children: [
7869
7821
  " ",
7870
7822
  currentStatus,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pentesting",
3
- "version": "0.8.6",
3
+ "version": "0.8.7",
4
4
  "description": "Autonomous Penetration Testing AI Agent",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",