Skip to main content

Overview

External reconnaissance is the process of discovering everything a company owns that is publicly accessible on the internet — before touching any target system. The goal is to build a complete picture of the attack surface.

Asset Discovery

Acquisitions

Start by finding all companies owned by the main company (subsidiaries expand scope):
  • Crunchbase — search company → click “acquisitions”
  • Wikipedia — search the company’s page for acquisition history
  • SEC/EDGAR filings and investor relations pages (for public companies)
  • OpenCorporates and the GLEIF LEI database

ASNs (IP Ranges)

An Autonomous System Number (ASN) identifies an organization’s IP ranges. Find them by company name, IP, or domain:

Domains

Reverse DNS

Reverse Whois

Search for other assets linked to the same organization name, address, or email:

Trackers & Favicon Hashes

Find related domains by sharing the same Google Analytics ID, Adsense ID, or favicon hash:

Certificate Transparency

Discover domains via CT logs:

Subdomains

OSINT Tools

DNS Brute Force

Permutation Generation

Generate subdomain mutations to find more targets:

Virtual Host Brute Force

Fuzz the Host header to find hidden vhosts:

IPs, Web Servers, and Cloud Assets

1

Collect All IPs

Gather IPs from discovered ranges, domains, and subdomains. Check SecurityTrails for historical IP records to find CloudFlare bypass IPs.
2

Port Scan Non-CDN IPs

Run port scans against IPs not belonging to CDNs to find running services. Check each service against this book’s guides.
3

Screenshot All Web Servers

Take screenshots to get a quick visual overview of discovered web apps.Tools: EyeWitness, Gowitness, Aquatone
4

Search Cloud Assets

Use company keywords and wordlists to find open S3 buckets, cloud functions, and storage:Tools: cloud_enum, CloudScraper, S3Scanner

Emails, Credential Leaks, and Secret Leaks

Email Discovery

Credential Leaks

GitHub Leaks

Search public repos of the company and its developers for exposed credentials and API keys.

Google Dorks

Use the Google Hacking Database or tools like Gorks to automate dork searches.

Full Recon Automation Tools

Checklist Summary

By the end of external recon you should have:
  1. All companies inside the scope
  2. All assets belonging to those companies (with basic vuln scans if in scope)
  3. All domains belonging to the companies
  4. All subdomains (check for subdomain takeovers!)
  5. All IPs from CDN and non-CDN sources
  6. All web servers with screenshots (anything weird?)
  7. Potential public cloud assets
  8. Emails, credential leaks, and secret leaks

References