-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3ed75a2
Showing
8 changed files
with
883 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 Balwant | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!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> | ||
|
||
<!-- About Section --> | ||
<section id="about-section" class="about-section"> | ||
<div class="about-content"> | ||
<h1>About DorkScan</h1> | ||
<p>This web application is designed to provide an interactive and efficient way for users to explore Google Dork queries, particularly useful for bug bounty hunters and students. The tool features a role-based selection system, allowing users to choose between two predefined roles: "Bug Bounty & Red Team" and "Student." Depending on the chosen role, the application generates relevant Google Dork queries tailored to the user's needs. For bug bounty hunters, these queries focus on uncovering vulnerabilities like XSS, SQL injection, and open redirects, while students receive queries related to free educational resources and research materials.</p> | ||
<p>The application offers a customizable search experience, where users can combine predefined dorks with their own search terms, making it easy to gather information or exploit vulnerabilities. A simulated terminal displays the generated dorks in real-time, allowing users to easily copy or execute them directly via a clickable link. Additionally, the tool features a search bar for personalized input, dynamically generating Google Dork queries based on the user's selections.</p> | ||
<p>Designed with a clean, responsive interface, the application works seamlessly across various devices, ensuring an optimal user experience. The minimalist layout, featuring a transparent header and modern typography, keeps the focus on functionality while maintaining an intuitive design. Overall, this web tool simplifies the process of using Google Dorks for web reconnaissance, research, and ethical hacking, offering an accessible solution for both security professionals and learners.</p> | ||
</div> | ||
</section> | ||
|
||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!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="#">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> | ||
|
||
<div class="middle-section"> | ||
<div class="typing-text">> Exploit internet..</div> | ||
</div> | ||
|
||
<!-- Option Bars Section --> | ||
<div class="option-bars"> | ||
<div class="option-bar left"> | ||
<select id="role-select"> | ||
<option selected disabled>Select your Role</option> | ||
<option value="BugBounty">Bug Bounty & Red Team</option> | ||
<option value="Student">Student</option> | ||
</select> | ||
</div> | ||
|
||
<div class="option-bar right"> | ||
<select id="dork-select" disabled> | ||
<option selected disabled>Select the Dork</option> | ||
</select> | ||
</div> | ||
</div> | ||
|
||
<!-- Search Bar Section --> | ||
<div class="search-bar" id="search-bar"> | ||
<input type="text" id="search-input" placeholder="Enter search term..."> | ||
<button id="search-btn">Search</button> | ||
</div> | ||
|
||
<!-- Terminal Box Section --> | ||
<div class="terminal-box" id="terminal-box"> | ||
<pre id="terminal-output">Home@Dorks---.</pre> | ||
</div> | ||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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> |
Oops, something went wrong.