Google Dorking: A Passive Reconnaissance Technique for Footprinting
You are a penetration tester hired to perform a security assessment for a medium-sized e-commerce company, "ShopSmart". The company hosts its website on a shared hosting environment and uses a third-party payment gateway. Your goal is to gather as much information as possible without triggering any alarms. During the initial footprinting, you discover that the company's domain "shopsmart.com" was registered five years ago and the WHOIS record shows the registrant's name, address, phone number, and email. The email address is "admin@shopsmart.com". You also find a job posting on LinkedIn that mentions they are looking for a "Senior PHP Developer with experience in Laravel and MySQL". Additionally, by using the Wayback Machine, you find an old version of the site that includes a comment in the HTML source: "<!-- TODO: Remove debug page before launch: /dev/test.php -->". You attempt to access /dev/test.php but receive a 404 error. What should you do NEXT to maximize information gain while remaining passive?
Quick Answer
The answer is to use Google dorking with `site:shopsmart.com filetype:php` to find cached or indexed pages. This is correct because Google dorking is a quintessential passive reconnaissance technique that leverages search engine caches to uncover files that may no longer be live on the server, such as the old `/dev/test.php` page. Even though the server returns a 404, Google’s cached snapshot of that page could still contain sensitive information, maximizing data gain without sending any direct traffic to the target and thus avoiding alarms. On the Certified Ethical Hacker CEH exam, this question tests your understanding of footprinting through search engines and the distinction between passive and active reconnaissance—a common trap is to attempt direct access to the discovered path, which would be active and noisy. Remember the mnemonic “Cache before Contact”: always check cached or indexed content first when performing passive reconnaissance.
⚠ Common exam trap
EC-Council often tests the distinction between passive and active reconnaissance; the trap here is that candidates may choose an active option like DNS brute force or file extension guessing because it seems more direct, but the question explicitly requires remaining passive to avoid triggering alarms.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
Use Google dorking with site:shopsmart.com and filetype:php to find cached or indexed pages
Google dorking with `site:shopsmart.com filetype:php` is a passive reconnaissance technique that leverages cached or indexed pages in Google’s search engine. This can reveal the old `/dev/test.php` page or other PHP files that may still be accessible via cached content, even if the live server returns a 404. It maximizes information gain without sending any direct traffic to the target, thus avoiding alarms.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Use Google dorking with site:shopsmart.com and filetype:php to find cached or indexed pages
Why this is correct
Passive search via search engine.
- ✗
Run a whois lookup on the IP address of the shared host
Why it's wrong here
IP whois may not help find the debug page.
- ✗
Try common file extensions for the debug page: test.asp, test.aspx, test.jsp
Why it's wrong here
Active probing may trigger IDS.
- ✗
Perform a DNS brute force to find subdomains
Why it's wrong here
DNS queries are active and may be logged.
Go deeper
Related to this question
About these practice questions
This CEH question is part of Courseiva's 870-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
Same concept, more angles
2 more ways this is tested on CEH
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. During a penetration test, you discover that the target organization uses a cloud-based email service. Which technique would allow you to gather employee email addresses and potentially infer internal organizational structure?
hard- A.Perform a WHOIS lookup on the domain
- B.Attempt a DNS zone transfer
- C.Run an nmap scan against the mail server
- ✓ D.Use Google dorking to find publicly exposed email lists
Why D: Google dorking (advanced search operators) can uncover publicly exposed documents, such as PDFs or spreadsheets, that contain employee email addresses. These documents are often indexed by search engines and can reveal email patterns (e.g., first.last@company.com) and departmental groupings, allowing inference of the internal organizational structure without interacting directly with the target's infrastructure.
Variation 2. An ethical hacker wants to discover subdomains of a target domain using only public information. Which of the following techniques is MOST effective?
easy- A.Run a traceroute to the main domain
- B.Check the WHOIS record for the domain
- ✓ C.Use the site: operator in search engines
- D.Perform a reverse DNS lookup on the target IP range
Why C: The `site:` operator in search engines (e.g., Google) allows an ethical hacker to enumerate publicly indexed subdomains of a target domain by querying `site:*.targetdomain.com`. This technique leverages the search engine's crawl data to discover subdomains that are publicly accessible but may not be linked from the main site, making it the most effective method for passive, public-information-only reconnaissance.
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This CEH practice question is part of Courseiva's free EC-Council certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CEH exam.