-
Notifications
You must be signed in to change notification settings - Fork 0
/
overview.html
40 lines (36 loc) · 2.95 KB
/
overview.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DorkScan</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="https://github.com/balwantyadav1" target="_blank">GitHub</a></li>
<li><a href="overview.html">Overview</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</header>
<main>
<section id="overview-section">
<h1>Overview</h1>
<p>The application provides a platform for generating Google Dorks tailored to Bug Bounty hunters and students. Users select their role from a dropdown menu, which dynamically updates available dork types. Bug Bounty hunters can access a range of security-related dorks for vulnerability searches, while students are offered dorks related to academic resources. After choosing a role and dork type, users input search terms to generate and display specific Google Dork queries. The results appear in a terminal-style output, with the option to open the first result directly in a new tab. This functionality enables efficient and targeted search query creation based on user needs.</p>
<h2>Functionality Overview:</h2>
<ul>
<li><strong>Role Selection:</strong> Users can select their role from a dropdown menu, which updates another dropdown menu with relevant dork options. For Bug Bounty hunters, a comprehensive list of dork types related to security testing is available, including searches for vulnerabilities such as XSS, SQL Injection, and open redirects. Students, on the other hand, have options for academic resources like free courses, research papers, and dissertations.</li>
<li><strong>Dork Generation:</strong> Once a role and dork type are selected, users can enter a search term, and the application generates Google Dork queries based on their inputs. The generated dorks are displayed in a terminal-like output area, where each dork is a clickable link that opens a Google search for the term.</li>
<li><strong>Search Functionality:</strong> The search button triggers the generation and display of dorks. Additionally, the first generated dork is set to open in a new tab automatically.</li>
<li><strong>Dynamic Updates:</strong> The terminal box updates dynamically as users interact with the dropdown menus and input fields, providing real-time feedback and query generation.</li>
</ul>
<div id="dork-file-structure">
<!-- File structure will be dynamically updated here -->
</div>
</section>
</body>
</html>