Skip to content

Commit

Permalink
add install script
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdln1 committed Jul 9, 2021
1 parent df946df commit 9c60aa1
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 1 deletion.
58 changes: 58 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Dorker

## Better Google Dorking with Dorker :)


## Example usage

```
python3 dorker.py -d 'WHATEVER-DORK' -o output.txt
python3 dorker.py -f 'FILE-WITH-DORKS' -o output.txt
```

> If you dont want banner every time just comment the Line 116
## Usage gif

![Example usage gif](dorker.gif)

# Installation

* Needs Python3
* Install firefox

```bash
chmod +x install.sh
sudo ./install.sh
```
* get the latest geckodriver from [here](https://github.com/mozilla/geckodriver/releases)

## Example tool chain

```
python3 dorker.py -d 'DORK FOR XSS PARAMS' | dalfox
```

## Command-line options

```
-h, --help show this help message and exit
-f DORKFILE, --dorkfile DORKFILE
-d DORK, --dork DORK
-o OUTPUT, --output OUTPUT
-n NOBANNER, --nobanner NOBANNER
```

## Features

```
1) Custom Dork Support
2) Maybe Slow because we tried to bypass Google Captcha therefore more accurate Results
```

> Note: Google Might block You after dorking x amount of times using this tool. Use a vpn
Binary file added dorker.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
apt install firefox
pip3 install -r requirements.txt
chmod +x geckodriver
sudo cp geckodriver /usr/local/bin
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
helium
argparse
argparse
webdriver-manager

0 comments on commit 9c60aa1

Please sign in to comment.