pentesting 0.7.24 → 0.7.25
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
CHANGED
|
@@ -6694,8 +6694,8 @@ var App = ({ autoApprove = false, target }) => {
|
|
|
6694
6694
|
agent.on(AGENT_EVENT.TOOL_CALL, (data) => {
|
|
6695
6695
|
const args = Object.entries(data.input).slice(0, 2).map(([k, v]) => `${k}=${typeof v === "string" ? v.slice(0, 30) : "..."}`).join(" ");
|
|
6696
6696
|
const cmdPreview = data.name === "bash" && data.input.command ? String(data.input.command).slice(0, 50).replace(/\n/g, " ") : data.name;
|
|
6697
|
-
setCurrentStatus(
|
|
6698
|
-
addMessage(MESSAGE_TYPE.TOOL,
|
|
6697
|
+
setCurrentStatus(`Executing: ${cmdPreview}`);
|
|
6698
|
+
addMessage(MESSAGE_TYPE.TOOL, `${data.name} ${args}`);
|
|
6699
6699
|
wireLoggerRef.current?.toolCall(data.id, data.name, data.input);
|
|
6700
6700
|
});
|
|
6701
6701
|
agent.on(AGENT_EVENT.TOOL_RESULT, (data) => {
|
|
@@ -7243,7 +7243,7 @@ ${list}`);
|
|
|
7243
7243
|
return;
|
|
7244
7244
|
case "replay":
|
|
7245
7245
|
try {
|
|
7246
|
-
const { findRecentWireFiles, getReplaySummary, parseWireFile } = await import("./replay-
|
|
7246
|
+
const { findRecentWireFiles, getReplaySummary, parseWireFile } = await import("./replay-ABCV4F64.js");
|
|
7247
7247
|
const wireFiles = findRecentWireFiles(sessionDirRef.current);
|
|
7248
7248
|
if (wireFiles.length === 0) {
|
|
7249
7249
|
addMessage(MESSAGE_TYPE.SYSTEM, "No session recordings found");
|
|
@@ -7425,7 +7425,7 @@ ${list}`);
|
|
|
7425
7425
|
idx === approvalSelectedIndex ? "\u2192 " : " ",
|
|
7426
7426
|
opt.label
|
|
7427
7427
|
] }, opt.decision)) }),
|
|
7428
|
-
/* @__PURE__ */ jsx2(Box2, { marginTop: 1, children: /* @__PURE__ */ jsx2(Text2, { dimColor: true, children: "\u2191\u2193 to select, Enter to confirm
|
|
7428
|
+
/* @__PURE__ */ jsx2(Box2, { marginTop: 1, children: /* @__PURE__ */ jsx2(Text2, { dimColor: true, children: "\u2191\u2193 to select, Enter to confirm" }) })
|
|
7429
7429
|
] }),
|
|
7430
7430
|
isProcessing ? /* @__PURE__ */ jsxs2(Box2, { flexDirection: "column", children: [
|
|
7431
7431
|
/* @__PURE__ */ jsxs2(Box2, { children: [
|
|
@@ -7455,7 +7455,7 @@ ${list}`);
|
|
|
7455
7455
|
"/yolo",
|
|
7456
7456
|
"/clear",
|
|
7457
7457
|
"/exit",
|
|
7458
|
-
|
|
7458
|
+
""
|
|
7459
7459
|
].filter((cmd) => cmd && cmd.toLowerCase().includes(input.toLowerCase().slice(1))).slice(0, 5).join(" \u2502 ") }) }),
|
|
7460
7460
|
/* @__PURE__ */ jsxs2(Box2, { children: [
|
|
7461
7461
|
/* @__PURE__ */ jsx2(Text2, { color: mode === "agent" ? THEME.status.success : "yellow", children: mode === "agent" ? "" : "$ " }),
|
|
@@ -7479,7 +7479,7 @@ ${list}`);
|
|
|
7479
7479
|
state.target.discovered.length > 1 && ` (+${state.target.discovered.length - 1})`,
|
|
7480
7480
|
state.findings.length > 0 && ` \u2502 ${state.findings.length} findings`,
|
|
7481
7481
|
state.credentials.length > 0 && ` \u2502 ${state.credentials.length} creds`,
|
|
7482
|
-
tokenUsage.total > 0 && ` \u2502 ${(tokenUsage.total / 1e3).toFixed(0)}k
|
|
7482
|
+
tokenUsage.total > 0 && ` \u2502 ${(tokenUsage.total / 1e3).toFixed(0)}k tokens`
|
|
7483
7483
|
] }),
|
|
7484
7484
|
/* @__PURE__ */ jsxs2(Text2, { dimColor: true, children: [
|
|
7485
7485
|
isProcessing && currentStatus && `${currentStatus.slice(0, 40)} \u2502 `,
|