Search Engine Hacking
Search Engine hacking also known as Google Hacking or Google Dorks; involves using advanced search operators in Google to find specific information or vulnerabilities on websites.
Commands:
intitle: Search for words in the title of a webpage.
inurl: Search for words in the URL.
filetype: Search for a specific file type.
site: Search within a specific site or domain.
Examples:
Search for Specific File Types:
Command:
filetype:
Example:
filetype:pdf site:example.com
(Finds PDF files on the specified site)
Explore Directory Listings:
Command:
intitle:"index of"
Example:
intitle:"index of" /secret
(Finds directories named "secret")
Find Login Pages:
Example:
intitle:"login" site:example.com
(Locates login pages on the specified site)
Search for Vulnerabilities:
Example:
site:example.com ext:php intitle:"Index of" "db"
Locate Exposed Documents:
Example:
filetype:doc site:example.com
(Finds Microsoft Word documents on the specified site)
Search for Backup Files:
Example:
filetype:bkf intitle:"index of" site:example.com
(Finds backup files on the specified site)
Explore Subdomains:
Example:
site:*.example.com
(Lists subdomains of example.com)
Search for Passwords:
Example:
filetype:log inurl:"password.log"
(Looks for log files containing passwords)
Find Apache Default Pages:
Example:
intitle:"Apache2 Debian Default Page"
(Finds Apache default pages on Debian)
Remember to use these commands responsibly and ethically, respecting privacy and legal boundaries. Misuse of Google Dorking can be viewed as hacking in some countries.
Useful resources:
Last updated