-
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
Showing
6 changed files
with
151 additions
and
26 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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 [Your Name or Organization] | ||
|
||
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 |
---|---|---|
@@ -1,36 +1,128 @@ | ||
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). | ||
|
||
## Getting Started | ||
|
||
First, run the development server: | ||
# Dorku - Google Dorks | ||
|
||
```bash | ||
npm run dev | ||
# or | ||
yarn dev | ||
# or | ||
pnpm dev | ||
# or | ||
bun dev | ||
``` | ||
Dorku is a web application designed to help bug bounty hunters and security researchers by providing a collection of useful and critical Google Dorks. The platform allows users to explore and search for various types of dorks categorized based on common web vulnerabilities and misconfigurations. | ||
|
||
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. | ||
The main goal of this website is to provide an easy-to-use tool that can help security professionals find vulnerable web pages, databases, and sensitive files through simple search queries. | ||
|
||
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. | ||
--- | ||
|
||
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. | ||
## Features | ||
|
||
## Learn More | ||
- **Comprehensive Collection of Google Dorks**: Organized into categories such as `directoryLeaks`, `sensitiveFiles`, `exposedDatabases`, `misconfigurations`, and more. | ||
- **Search Functionality**: Easily search for specific domains to quickly apply dorks and find potential vulnerabilities. | ||
- **Categorized Dorks**: Dorks are grouped into categories based on their type, such as sensitive files, login pages, exposed APIs, and more. | ||
- **Intuitive UI**: A clean and user-friendly interface that allows you to select categories, search domains, and view the relevant dorks. | ||
|
||
To learn more about Next.js, take a look at the following resources: | ||
--- | ||
|
||
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. | ||
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. | ||
## Categories of Dorks | ||
|
||
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! | ||
The Google Dorks provided on Dorku are grouped into the following categories: | ||
|
||
## Deploy on Vercel | ||
1. **Directory Leaks**: Dorks that help find open directories on web servers. | ||
2. **Sensitive Files**: Dorks that locate sensitive files like `.env`, `config.php`, and other critical configurations. | ||
3. **Exposed Databases**: Find exposed database backups, SQL dumps, and admin interfaces. | ||
4. **Login Pages**: Discover login forms or admin panels for potential brute-force or credential stuffing attacks. | ||
5. **Misconfigurations**: Find misconfigurations in web servers, git repositories, and other vulnerable points. | ||
6. **Vulnerable Endpoints**: Search for potentially vulnerable API endpoints or admin areas. | ||
7. **Sensitive Information**: Dorks to find leaked sensitive data like passwords, keys, and API tokens. | ||
8. **Cloud Misconfigurations**: Dorks to find misconfigured cloud resources like AWS S3, Azure Blob Storage, and others. | ||
9. **Open Source Code**: Find exposed open-source repositories and source code with potential vulnerabilities. | ||
10. **Admin Interfaces**: Find exposed admin panels and dashboards that could be targeted for exploitation. | ||
11. **Vulnerable Files**: Dorks to locate backup files or other vulnerable files on a server. | ||
12. **Exposed APIs**: Find exposed APIs that may leak sensitive data or have insecure endpoints. | ||
|
||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. | ||
--- | ||
|
||
## Demo | ||
|
||
You can visit the live demo of the Dorku web application here: | ||
[Dorku - Google Dorks for Bug Bounty](https://dorku.vercel.app/) | ||
|
||
--- | ||
|
||
## Installation | ||
|
||
To run this project locally on your machine: | ||
|
||
### Prerequisites | ||
|
||
- [Node.js](https://nodejs.org/) (>=v14.0.0) | ||
- [npm](https://www.npmjs.com/) (or [Yarn](https://yarnpkg.com/)) | ||
|
||
### Steps | ||
|
||
1. Clone this repository: | ||
```bash | ||
git clone https://github.com/<your-github-username>/dorku.git | ||
``` | ||
|
||
2. Navigate to the project directory: | ||
```bash | ||
cd dorku | ||
``` | ||
|
||
3. Install dependencies: | ||
```bash | ||
npm install | ||
``` | ||
or | ||
```bash | ||
yarn install | ||
``` | ||
|
||
4. Run the development server: | ||
```bash | ||
npm run dev | ||
``` | ||
or | ||
```bash | ||
yarn dev | ||
``` | ||
|
||
5. Open the app in your browser by visiting `http://localhost:3000`. | ||
|
||
--- | ||
|
||
## Technologies Used | ||
|
||
- **Next.js**: The framework for building the React application. | ||
- **React**: For building the interactive components and state management. | ||
- **Tailwind CSS**: For styling the application with a utility-first CSS framework. | ||
- **Vercel**: The platform used to deploy and host the application. | ||
|
||
--- | ||
|
||
## Contributing | ||
|
||
If you'd like to contribute to the development of this project, feel free to fork the repository and make changes. Pull requests are welcome! | ||
1. Fork the repository. | ||
2. Create a new branch (`git checkout -b feature-branch`). | ||
3. Make your changes and commit them (`git commit -m 'Add new feature'`). | ||
4. Push to the branch (`git push origin feature-branch`). | ||
5. Open a pull request to the `main` branch. | ||
--- | ||
## License | ||
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. | ||
--- | ||
## Disclaimer | ||
This website is for educational purposes only. The use of Google Dorks and other security techniques should be conducted in accordance with the law and ethical guidelines. Always obtain permission before testing any website or system for vulnerabilities. | ||
--- | ||
## Contact | ||
For any inquiries or feedback, feel free to reach out: | ||
- LinkedIn: [https://www.linkedin.com/in/aswin-krishna-344064202/](LinkedIn) | ||
- GitHub: [https://github.com/jr-boney](https://github.com/jr-boney) | ||
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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