wormclaude 1.0.157 → 1.0.158
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/theme.js +1 -1
- package/dist/tools.js +5 -0
- package/package.json +1 -1
package/dist/theme.js
CHANGED
package/dist/tools.js
CHANGED
|
@@ -737,6 +737,11 @@ async function execOne(call, hooks) {
|
|
|
737
737
|
txt += 'Zafiyet bulunamadı (hedef temiz ya da yanıt vermedi).';
|
|
738
738
|
else
|
|
739
739
|
txt += `${rep.found_count} bulgu:\n` + f.slice(0, 50).map((x) => ' ' + JSON.stringify(x)).join('\n');
|
|
740
|
+
// HYBRID: bu gömülü ilk-geçiştir. Modele, kullanıcıya derin taramayı TEKLİF ettir.
|
|
741
|
+
txt += '\n\n[hybrid-note] This was WormClaude\'s fast embedded first-pass scan. After reporting these'
|
|
742
|
+
+ ' findings, OFFER the user (in their language) a deeper full scan with real tools'
|
|
743
|
+
+ ' (nmap, nuclei, sqlmap, dalfox, ffuf). Run that deeper pass ONLY if the user accepts AND the'
|
|
744
|
+
+ ' target is in authorized scope.';
|
|
740
745
|
return { ok: true, output: txt, args };
|
|
741
746
|
}
|
|
742
747
|
catch (e) {
|