MCPcopy Create free account
hub / github.com/PierreGode/Ragnar / determineConsoleLogType

Function determineConsoleLogType

web/scripts/ragnar_modern.js:12055–12062  ·  view source on GitHub ↗
(logLine)

Source from the content-addressed store, hash-verified

12053 `;
12054 return;
12055 }
12056
12057 let html = '<div class="space-y-4">';
12058
12059 if (currentAttackGroupBy === 'network') {
12060 // --- Group by Network (SSID), then sub-group by IP ---
12061 const logsByNetwork = {};
12062 logs.forEach(log => {
12063 const net = log.network_ssid || 'unknown';
12064 if (!logsByNetwork[net]) logsByNetwork[net] = {};
12065 const ip = log.target_ip || 'Unknown';

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected