Save time on dork research and result scraping with reusable lists, bulk search tabs, and one-click imports.
FastDork is built to speed up repetitive dork research and scraping workflows. Instead of rebuilding queries, opening result pages one by one, and copying links manually, you can prepare reusable lists, launch searches in batches, and import matching results into clean result lists.
You can:
FastDork stores its data locally in your browser using Chrome extension storage.
chrome://extensions/.manifest.json.Optional: enable Auto-Import Results before launching if you want FastDork to scrape supported result pages and save the data into a result list.


FastDork uses two kinds of lists.
| Type | What it is for |
|---|---|
| Dork List | Dorks, search queries, payloads, or targets used by the FastDork tab. |
| Result List | Imported URLs, domains, JS paths, or extracted text. |
Use a Dork List when you want to run searches. Use a Result List when you want to store collected data.
This is the main tab for launching searches.
One Domain
Use this when you have one target and many dorks.
In this mode, the selected Dork List should contain dork templates that use $target or $t.
Example:
example.comsite:$target ext:pdfsite:example.com ext:pdfOne Dork
Use this when you have one dork template and many targets. In this mode, the selected Dork List should contain domains, companies, keywords, or other targets.
Example:
site:$target intitle:"index of"example.comsite:example.com intitle:"index of"You can use $target or $t as the placeholder.
Quick rule:
$target or $t.$target or $t, choose a list of domains or targets.After clicking Open X tabs with dorks, FastDork shows a confirmation window.
You can choose:
The status line tells you what is happening, for example:
Ready · 14 queries · BingMissing · Choose target, engine, and dork listUse this tab to edit list contents and import data.
You can:
Dork: or Result: list;When FastDork detects a supported page, an Import from... button appears.
Example:
If imported items are already in the list, FastDork avoids duplicates.
Use this tab to manage lists and site configurations.
Enable Keep FastDork Open to open FastDork in Chrome's side panel.
This is useful during manual imports because the side panel can stay visible while the current page changes. FastDork remembers this switch the next time you open the extension. If the side panel content looks cropped, drag the panel edge wider.
You can:
Site configurations tell FastDork how to extract data from a website.
Each configuration can define:
| Field | Purpose |
|---|---|
| Domain | The site key, for example bing.com. |
| Use as Search Engine | Makes the site available in the FastDork tab. |
| Base URL | Search URL prefix, for example https://www.bing.com/search?q=. |
| Default Params | Extra URL parameters added after the query. |
| Link Selectors | CSS selectors used to extract links or text. |
| Next Page Selectors | CSS selectors used to move to the next results page. |
| Data Type | href for links, innerText for visible text. |
| Match Patterns | URL snippets used to decide when the import button should appear. |
| CAPTCHA URL Patterns | URL snippets that indicate a CAPTCHA page. |
| CAPTCHA Text Patterns | Visible text that indicates a CAPTCHA or human check. |
| CAPTCHA Selectors | CSS selectors that indicate CAPTCHA elements. |
Default configs include Google, Bing, DuckDuckGo, GitHub, HackerOne, Bugcrowd, Intigriti, and Exploit-DB.
Example Google configuration:

Example Shodan search engine configuration:
You can also add another search engine, for example shodan.io.
| Field | Example |
|---|---|
| Domain | shodan.io |
| Use as Search Engine | enabled |
| Base URL | https://www.shodan.io/search?query= |
| Default Params | leave empty unless you need extra URL parameters |
| Link Selectors | start with a[href*="/host/"], then adjust with DevTools if Shodan changes its markup |
| Next Page Selectors | start with a[rel="next"], then adjust with DevTools if needed |
| Data Type | href |
| Match Patterns | shodan.io/search |
Then add Shodan to host_permissions in manifest.json:
"*://*.shodan.io/*"
If you add a site that is not already covered by FastDork, also add its domain to host_permissions in manifest.json.
In this project, that section starts around line 44.
After editing manifest.json, reload the extension in chrome://extensions/.
Example:
"host_permissions": [
"*://*.example.com/*"
]
Auto-import can scrape multiple result pages.
FastDork will:
If a CAPTCHA is detected, FastDork pauses the affected import tab. If other import tabs can continue, they continue. If all remaining imports are blocked by CAPTCHA, FastDork shows a message so you can solve the challenge.
$target in your dorks.Example dork:
"$target" filename:.env
How many tabs can FastDork open?
The default limit is 20 tabs.
Can I add a custom search engine?
Yes. Go to Settings -> Configure Sites -> Add New, enable Use as Search Engine, then add the base URL and selectors.
If the site uses a domain that is not already in FastDork, add it to host_permissions in manifest.json too, then reload the extension.
Can I import data from any website?
Usually yes, if you create a site configuration with the right CSS selectors and match patterns.
What is the difference between a Dork List and a Result List?
A Dork List is used to run searches. A Result List is used to store imported or collected data.
Does FastDork sync my data across devices?
No. Data is stored locally in your browser using Chrome extension storage. FastDork does not send it to any server.
Code released under the MIT License.
Import functionality was inspired by TomNomNom's webpaste tool.
$ claude mcp add FastDork \
-- python -m otcore.mcp_server <graph>