└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # GoogleDorks 2 | Note :Combination of these google dorks give enormous power for OSINT.I would keep updating it with time. 3 | 4 | site: Shows results to specific site for john carrier. 5 | Example: site:facebook.com John carrier 6 | 7 | intitle: Restricts results to titles of webpages.This will ask google to show pages that have the term in their html title. 8 | Example: intitle:”Jobs in Defence” 9 | 10 | inurl: Restricts results to the URL of a website.Searches for specified term in the URL. 11 | Example: inurl:register.php , inurl:about 12 | 13 | 14 | allintext: 15 | 16 | filetype: Searches for specific filetypes based on the extensions. 17 | Example: filetype:pdf site:indeed.com 18 | 19 | link: Searches for pages linking to a specified URL. 20 | Note:Google killed this operator in 2017, but it does still show some results—they likely aren’t particularly accurate though 21 | Example: link:www.indeed.com 22 | 23 | cache: Searches for a cached copy of a webpage when it was indexed by Google. 24 | Example: cache:lums.edu.pk 25 | 26 | - sign remove the results from that name(may be site or titles) 27 | jobs -indeed 28 | 29 | Find non-secure pages 30 | Example: site:indeed.com inurl:-https 31 | 32 | Finding subdomains alongwith removal of www results 33 | Example: site:*.indeed.com -www 34 | 35 | Define:Too get defination and meaning of something specific.It would show defination from different websites 36 | Example: define:lattice 37 | 38 | 39 | 40 | ## Real Scenario examples: 41 | 42 | 1-For finding hacked websites or which have hacked in the past(bb) 43 | ```site:*.edu.in Hacked ``` 44 | 45 | 2-Search for open Telegram invites on a topic 46 | ```inurl:"https://t.me" "hacking"``` 47 | 48 | 3-Explore LOG Files For Login Credentials 49 | ```allintext:password filetype:log after:2019``` 50 | ```allintext:username filetype:log``` 51 | 52 | 4-For finding login pages 53 | ```intext:"username" and intext:"password"``` 54 | 55 | 5-For finding people emails respective to your your specific person 56 | ```site:mit.edu "cryptographer|security|hacking" "gmail.com" ``` 57 | 58 | 59 | --------------------------------------------------------------------------------