1+ #lokesh kumar
2+ #github.com/trmxvibs
13<!DOCTYPE html>
24< html lang ="en ">
35< head >
46 < meta charset ="UTF-8 ">
5- < title > Net-Sentry v23.0 | GOD MODE </ title >
7+ < title > Net-Sentry v23.0 </ title >
68
79 < script src ="https://cdn.jsdelivr.net/npm/chart.js "> </ script >
810 < script type ="text/javascript " src ="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js "> </ script >
1113 < link href ="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&display=swap " rel ="stylesheet ">
1214
1315 < style >
14- /* --- HACKER THEME --- */
16+ /* --- THEME --- */
1517 : root {
1618 --bg : # 050505 ;
1719 --panel : # 0a0f14 ;
3436 background-size : 20px 20px ;
3537 }
3638
37- /* --- MAIN LAYOUT (GRID) --- */
39+ /* --- MAIN LAYOUT --- */
3840 .main-layout {
3941 display : grid;
4042 grid-template-columns : 45% 1fr ; /* Left (Terminal) | Right (Maps & Info) */
@@ -313,14 +315,23 @@ <h3 class="txt-green">SECURITY SETTINGS</h3>
313315
314316 // 1. INTERNAL COMMANDS (Net-Sentry Specific)
315317 if ( cmd === 'help' ) {
316- printHTML ( `<div style="color:#888">
317- <span class="txt-gold">scan <target></span> ... Start Scan<br>
318- <span class="txt-gold">exec <cmd></span> ...... Run System Command (e.g., exec ping 8.8.8.8)<br>
319- <span class="txt-gold">man <tool></span> ...... Cheat Sheets<br>
320- <span class="txt-gold">reset</span> ............. Wipe DB<br>
321- <span class="txt-gold">clear</span> ............. Clear Screen
322- </div>` ) ;
323- }
318+ printHTML ( `
319+ <table class="help-tbl" style="width:100%; color:#aaa;">
320+ <tr><td colspan="2" class="txt-blue" style="padding-bottom:5px; font-weight:bold;">SCANNING MODES:</td></tr>
321+ <tr><td class="txt-gold">scan <target></td><td>Basic Scan (Fast, Top 100 Ports)</td></tr>
322+ <tr><td class="txt-gold">scan <target> medium</td><td>Standard (Versions, 1000 Ports)</td></tr>
323+ <tr><td class="txt-gold">scan <target> advance</td><td>Full Power (Vulns, Fuzzing, Spider)</td></tr>
324+ <tr><td class="txt-gold">scan <target> custom "flags"</td><td>Manual Nmap Flags</td></tr>
325+
326+ <tr><td colspan="2" class="txt-blue" style="padding-top:10px; padding-bottom:5px; font-weight:bold;">TOOLS:</td></tr>
327+ <tr><td class="txt-gold">man <tool></td><td>Cheat Sheets (nmap, hydra, sqlmap)</td></tr>
328+ <tr><td class="txt-gold">exec <cmd></td><td>Run System Command (ping, whois)</td></tr>
329+
330+ <tr><td colspan="2" class="txt-blue" style="padding-top:10px; padding-bottom:5px; font-weight:bold;">SYSTEM:</td></tr>
331+ <tr><td class="txt-gold">reset</td><td>Wipe Database</td></tr>
332+ <tr><td class="txt-gold">clear</td><td>Clear Screen</td></tr>
333+ </table>` ) ;
334+ }
324335 else if ( cmd === 'scan' ) {
325336 if ( ! parts [ 1 ] ) return printLine ( "Error: Target required." , 'txt-red' ) ;
326337 let mode = parts [ 2 ] || "basic" ;
@@ -506,4 +517,4 @@ <h3 class="txt-green">SECURITY SETTINGS</h3>
506517 setInterval ( poll , 3000 ) ;
507518 </ script >
508519</ body >
509- </ html >
520+ </ html >
0 commit comments