https://github.com/8gudbits/dork-operators-current
A list of validated Google dork operators updated on October 2025.
https://github.com/8gudbits/dork-operators-current
advanced-search advanced-search-filters cheatsheet community-driven dork-list dork-parser google-dorks google-dorks-list google-hacking google-indexing markdown search-operators search-syntax
Last synced: 8 months ago
JSON representation
A list of validated Google dork operators updated on October 2025.
- Host: GitHub
- URL: https://github.com/8gudbits/dork-operators-current
- Owner: 8gudbits
- Created: 2025-10-02T13:51:54.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-10-02T13:55:27.000Z (8 months ago)
- Last Synced: 2025-10-02T15:29:26.758Z (8 months ago)
- Topics: advanced-search, advanced-search-filters, cheatsheet, community-driven, dork-list, dork-parser, google-dorks, google-dorks-list, google-hacking, google-indexing, markdown, search-operators, search-syntax
- Homepage:
- Size: 1.95 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dork-operators-current
A list of validated Google dork operators updated on October 2025.
**Found a working operator not listed here, or noticed one that no longer works? _Open an issue or submit a pull request_ to help keep this list accurate and up to date.**
## Scope-Restricting Dorks
| Operator | Description | Syntax | Example |
| ---------- | ------------------------------------------------------------ | --------------------- | --------------------------------- |
| site | Search within a domain or TLD | site: | site:google.com |
| inurl | Keyword must be in document URL | inurl: | inurl:sheet |
| allinurl | Like inurl but allows multiple keywords separated by space | allinurl: | allinurl:search com |
| intitle | Keyword must be in document title | intitle: | intitle:money |
| allintitle | Like intitle but allows multiple keywords separated by space | allintitle: | allintitle:dog cat |
| intext | Keyword must be in document text | intext: | intext:news |
| allintext | Like intext but allows multiple keywords separated by space | allintext: | allintext:math science university |
| inanchor | Search keyword in anchor text | inanchor: | inanchor:security |
## Filetype & Download Dorks
| Operator | Description | Syntax | Example |
| -------- | --------------------------------------------------- | --------------- | ------------------- |
| filetype | Search for a specific filetype | filetype: | filetype:pdf |
| ext | Same as filetype | ext: | ext:pdf |
| index of | Search for direct downloads (not a formal operator) | index of: | index of:mp4 videos |
For a full list of officially indexable file types supported by Google Search, see [Google's documentation](https://developers.google.com/search/docs/crawling-indexing/indexable-file-types).
## Date & Range Dorks
| Operator | Description | Syntax | Example |
| -------- | ------------------------------------------------------------ | ------------------- | ----------------- |
| after | Search for documents published/indexed after the given date | after: | after:2020-06-03 |
| before | Search for documents published/indexed before the given date | before: | before:2020-06-03 |
| m .. n | Search for a range of numbers | .. | 1 .. 100 |
## Informational & Metadata Dorks
| Operator | Description | Syntax | Example |
| -------- | ------------------------------------------------- | ---------------- | ------------------ |
| info | Search for info about a website | info: | info:google.com |
| related | Search for docs related to a website | related: | related:google.com |
| cache | Search cached version of a site via Google | cache: | cache:google.com |
| define | Search for definition of a word | define: | define:funny |
| source | Search on a specific news site (Google News only) | source: | source:theguardian |
## Specialized Dorks
| Operator | Description | Syntax | Example |
| -------- | ----------------------------------- | ------------------ | ------------- |
| stock | Search for market stock info | stock: | stock:dax |
| weather | Search for weather info by location | weather: | weather:Miami |
## Logical & Structural Operators
| Operator | Description | Syntax | Example |
| -------- | ---------------------------------------- | ------------------------- | ---------------------- |
| () | Group multiple terms or operators | ( OR ) | inurl:(html \| php) |
| "" | Exact match (case-insensitive) | "" | "google" |
| - | Exclude results (NOT operator) | - | -site:youtube.com |
| OR | Same as \| | OR | "google" \| "yahoo" |
| AROUND | Finds words within n words of each other | AROUND(n) | google AROUND(10) good |
## Vertical & Contextual Dorks
| Operator | Description | Syntax | Example |
| -------- | ----------------------------------------------- | -------------------------- | ------------------------- |
| in | Converts units or currencies directly in search | in | 100 USD in BDT |
| map | Opens Google Maps for a location or query | map: | map:coffee shops in Dhaka |
| movie | Searches for movie info or showtimes | movie: | movie:Oppenheimer Dhaka |
| book | Searches for books related to a keyword | book: | book:cybersecurity |
| blogurl | Finds blogs with a specific keyword in the URL | blogurl: | blogurl:startup |
---