├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.js ├── image ├── advanceanalysis.png ├── monitorservice.png ├── networkdiscovery.png ├── networktopology.png ├── portscan.png ├── securitycenter.png ├── systems.png ├── traffic.png └── welcome.png ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.tsx ├── components │ └── Layout.tsx ├── index.css ├── main.tsx ├── pages │ ├── AlertManager.tsx │ ├── Analytics.tsx │ ├── Dashboard.tsx │ ├── Logs.tsx │ ├── NetworkDiscovery.tsx │ ├── PortScanner.tsx │ ├── SecurityCenter.tsx │ ├── ServiceMonitor.tsx │ ├── Settings.tsx │ ├── TopologyMap.tsx │ ├── TrafficAnalysis.tsx │ └── UserManagement.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: odaysec 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/eslint.config.js -------------------------------------------------------------------------------- /image/advanceanalysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/image/advanceanalysis.png -------------------------------------------------------------------------------- /image/monitorservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/image/monitorservice.png -------------------------------------------------------------------------------- /image/networkdiscovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/image/networkdiscovery.png -------------------------------------------------------------------------------- /image/networktopology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/image/networktopology.png -------------------------------------------------------------------------------- /image/portscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/image/portscan.png -------------------------------------------------------------------------------- /image/securitycenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/image/securitycenter.png -------------------------------------------------------------------------------- /image/systems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/image/systems.png -------------------------------------------------------------------------------- /image/traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/image/traffic.png -------------------------------------------------------------------------------- /image/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/image/welcome.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/components/Layout.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/AlertManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/AlertManager.tsx -------------------------------------------------------------------------------- /src/pages/Analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/Analytics.tsx -------------------------------------------------------------------------------- /src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /src/pages/Logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/Logs.tsx -------------------------------------------------------------------------------- /src/pages/NetworkDiscovery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/NetworkDiscovery.tsx -------------------------------------------------------------------------------- /src/pages/PortScanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/PortScanner.tsx -------------------------------------------------------------------------------- /src/pages/SecurityCenter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/SecurityCenter.tsx -------------------------------------------------------------------------------- /src/pages/ServiceMonitor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/ServiceMonitor.tsx -------------------------------------------------------------------------------- /src/pages/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/Settings.tsx -------------------------------------------------------------------------------- /src/pages/TopologyMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/TopologyMap.tsx -------------------------------------------------------------------------------- /src/pages/TrafficAnalysis.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/TrafficAnalysis.tsx -------------------------------------------------------------------------------- /src/pages/UserManagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/src/pages/UserManagement.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odaysec/NetWatch/HEAD/vite.config.ts --------------------------------------------------------------------------------