|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="en"> |
3 | | - <head> |
4 | | - <meta charset="utf-8" /> |
5 | | - <link rel="icon" href="/favicon.ico" /> |
6 | | - <meta name="viewport" content="width=device-width, initial-scale=1" /> |
7 | | - <meta name="theme-color" content="#000000" /> |
8 | | - <meta |
9 | | - name="description" |
10 | | - content="Web site created using @vitejs/plugin-react" |
11 | | - /> |
12 | | - <link rel="apple-touch-icon" href="/logo192.png" /> |
13 | | - <!-- |
14 | | - manifest.json provides metadata used when your web app is installed on a |
15 | | - user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ |
16 | | - --> |
17 | | - <link rel="manifest" href="/manifest.json" /> |
18 | | - <title>React App</title> |
19 | | - </head> |
20 | | - <body> |
21 | | - <noscript>You need to enable JavaScript to run this app.</noscript> |
22 | | - <div id="root"></div> |
23 | | - <!-- |
24 | | - This HTML file is a template. |
25 | | - If you open it directly in the browser, you will see an empty page. |
26 | | -
|
27 | | - You can add webfonts, meta tags, or analytics to this file. |
28 | | - The build step will place the bundled scripts into the <body> tag. |
29 | | -
|
30 | | - To begin the development, run `npm start` or `yarn start`. |
31 | | - To create a production bundle, use `npm run build` or `yarn build`. |
32 | | - --> |
33 | | - </body> |
34 | | - <script type="module" src="/src/index.jsx"></script> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Cybersecurity Tools Collection</title> |
| 7 | + <style> |
| 8 | + body { font-family: sans-serif; line-height: 1.6; margin: 2em; } |
| 9 | + h1 { text-align: center; } |
| 10 | + ul { list-style: none; padding: 0; } |
| 11 | + li { background: #f4f4f4; border: 1px solid #ddd; margin-bottom: 1em; padding: 1em; } |
| 12 | + h2 { margin-top: 0; } |
| 13 | + a { text-decoration: none; color: #0366d6; } |
| 14 | + a:hover { text-decoration: underline; } |
| 15 | + </style> |
| 16 | +</head> |
| 17 | +<body> |
| 18 | + <h1>Cybersecurity Tools Collection</h1> |
| 19 | + <p>This repository contains a collection of various security-related tools. Click on a tool's documentation to learn more about its functionality and how to use it.</p> |
| 20 | + <ul> |
| 21 | + <li> |
| 22 | + <h2>Account Pwned Checker</h2> |
| 23 | + <p>A command-line tool to check if an email account has been compromised in a known data breach using the 'Have I Been Pwned?' API.</p> |
| 24 | + <a href="README_pwned_checker.md">View Documentation</a> |
| 25 | + </li> |
| 26 | + <li> |
| 27 | + <h2>Sensitive Data Scanner</h2> |
| 28 | + <p>A tool to recursively scan a directory for files containing sensitive data patterns like API keys, private keys, and credit card numbers.</p> |
| 29 | + <a href="README_sensitive_data_scanner.md">View Documentation</a> |
| 30 | + </li> |
| 31 | + <li> |
| 32 | + <h2>Port Scanner</h2> |
| 33 | + <p>A simple, multi-threaded TCP port scanner to find open ports on a target host.</p> |
| 34 | + <a href="README_port_scanner.md">View Documentation</a> |
| 35 | + </li> |
| 36 | + <li> |
| 37 | + <h2>IoT Simulator</h2> |
| 38 | + <p>A simulator for IoT devices.</p> |
| 39 | + <a href="README_iot_simulator.md">View Documentation</a> |
| 40 | + </li> |
| 41 | + <li> |
| 42 | + <h2>Network Mapper</h2> |
| 43 | + <p>A tool to generate network topology diagrams from a CSV file.</p> |
| 44 | + <a href="README_netmap.md">View Documentation</a> |
| 45 | + </li> |
| 46 | + <li> |
| 47 | + <h2>Scam Detector</h2> |
| 48 | + <p>A tool to detect scams in social media.</p> |
| 49 | + <a href="README_scam_detector.md">View Documentation</a> |
| 50 | + </li> |
| 51 | + <li> |
| 52 | + <h2>Simple Browser</h2> |
| 53 | + <p>A simple web browser.</p> |
| 54 | + <a href="README_simple_browser.md">View Documentation</a> |
| 55 | + </li> |
| 56 | + <li> |
| 57 | + <h2>Wi-Fi Analyzer</h2> |
| 58 | + <p>A tool to analyze Wi-Fi networks on Linux systems.</p> |
| 59 | + <a href="README_wifi_analyzer.md">View Documentation</a> |
| 60 | + </li> |
| 61 | + </ul> |
| 62 | +</body> |
35 | 63 | </html> |
0 commit comments