wormclaude 1.0.167 → 1.0.168
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/commands.js +16 -0
- package/dist/theme.js +1 -1
- package/package.json +1 -1
package/dist/commands.js
CHANGED
|
@@ -329,6 +329,20 @@ export function summarizeScan(target, findings) {
|
|
|
329
329
|
: `\n➤ Verdict: no high/medium issues; tested surface largely clean. (Stored/DOM/behind-auth out of scope)`);
|
|
330
330
|
return out;
|
|
331
331
|
}
|
|
332
|
+
// Tarama sonucunu MODELİN context'ine ekle → kullanıcı tarama hakkında soru sorabilsin
|
|
333
|
+
// ("türkçe anlat", "neyi önce düzelteyim", "SSRF nedir"). assistant() sadece ekrana basar, geçmişe
|
|
334
|
+
// eklemez; bu yüzden model taramayı bilmiyordu. Özet + yüksek/orta bulgular eklenir (context şişmesin).
|
|
335
|
+
function injectScanContext(ctx, target, findings) {
|
|
336
|
+
if (!findings || !findings.length)
|
|
337
|
+
return;
|
|
338
|
+
const imp = findings.filter((f) => ['critical', 'high', 'medium'].includes(f.severity)).slice(0, 40);
|
|
339
|
+
const note = summarizeScan(target, findings).join('\n') + (imp.length ? '\n' + imp.map(formatFinding).join('\n') : '');
|
|
340
|
+
try {
|
|
341
|
+
ctx.setHistory([...ctx.getHistory(),
|
|
342
|
+
{ role: 'assistant', content: `[${tt('Security scan result', 'Güvenlik tarama sonucu')} — ${target}]\n${note}` }]);
|
|
343
|
+
}
|
|
344
|
+
catch { /* geçmiş güncellenemezse sessiz geç */ }
|
|
345
|
+
}
|
|
332
346
|
// /recon /scan /xss /sqli — ince runner'ı sürer. Zorunlu yetki onayı + trust 3+ teaser.
|
|
333
347
|
// Slash'sız komut tespiti: kullanıcı "recon target.com" (slash'sız) yazınca "/recon target.com" öner.
|
|
334
348
|
// FALSE-POZİTİF guard: ilk kelime tam komut adı + argüman var + soru DEĞİL ("recon nedir?" tetiklemez).
|
|
@@ -416,6 +430,7 @@ async function pentestCmd(tool, arg, ctx) {
|
|
|
416
430
|
lines.push(` … +${f.length - 40} ${tt('more', 'daha')}`);
|
|
417
431
|
}
|
|
418
432
|
ctx.assistant(lines.join('\n'));
|
|
433
|
+
injectScanContext(ctx, rep.target || target, f); // model tarama hakkında soruları yanıtlayabilsin
|
|
419
434
|
}
|
|
420
435
|
// /fullscan — DETERMİNİSTİK tam tarama. Modelin doğaçlamasına (nmap/sqlmap orkestrasyonu →
|
|
421
436
|
// narration/uydurma/PATH derdi) GÜVENMEZ: recon → XSS → SQLi motorunu KOD sırayla, her hedefte
|
|
@@ -497,6 +512,7 @@ async function fullScanCmd(arg, ctx) {
|
|
|
497
512
|
lines.push(` … +${all.length - 60} ${tt('more', 'daha')}`);
|
|
498
513
|
}
|
|
499
514
|
ctx.assistant(lines.join('\n'));
|
|
515
|
+
injectScanContext(ctx, target, all); // model tarama hakkında soruları yanıtlayabilsin
|
|
500
516
|
}
|
|
501
517
|
// /exploit ve /harden — AKTİF tarama DEĞİL, model-üretim görevleri (PoC / YARA-Sigma yazar).
|
|
502
518
|
// Güçlü, yetkili-kapsam çerçevesiyle modele gider (skill gibi). Çıktı kullanıcının dilinde.
|
package/dist/theme.js
CHANGED