Acquisitions recon
TL;DR: Mine corporate filings, press releases, and funding databases to discover sibling brands and acquired companies that frequently inherit the parent’s bug-bounty scope.
What it is
Large programs that say “any asset owned or operated by $COMPANY” implicitly include every subsidiary the legal entity controls. Most hunters stop at the apex domain and never enumerate the corporate tree. Acquisitions recon flips that — you map M&A history to product names to apex domains, then run normal subdomain workflows on each.
Preconditions / where it applies
- Program scope explicitly includes “subsidiaries”, “acquired companies”, or a wildcard on
*.parent.tldplus owned brands - Parent is a public company, a well-funded private one, or a serial acquirer (fintech, big tech, ad-tech)
- You have time to invest in horizontal recon before competing on the crowded primary domain
Technique
- Build a corporate tree from primary sources before searching domains.
1
2
# US-listed parents — pull Exhibit 21 (subsidiaries) from the latest 10-K
https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=<cik>&type=10-K
- Cross-reference with funding / M&A databases:
- Crunchbase
/acquisitionstab on the parent https://www.cbinsights.com/,https://pitchbook.com/(paid, but free tier surfaces names)- Wikipedia infobox + “List of mergers and acquisitions by X” pages
- Crunchbase
- For each subsidiary name, find its primary domain:
- Google
"<sub> acquired by <parent>"and<sub> site:linkedin.com/company - Reverse-WHOIS lookups on the parent’s known org name and registrant email (see reverse-whois)
- Favicon / analytics-tag pivots from the parent (see analytics-tag-correlation)
- Google
- Push each apex through your normal pipeline — CT logs, ASN, perm wordlists (certificate-transparency, asn-enumeration, subdomain-permutation).
- Tag every host with the subsidiary it belongs to. When you find a bug on
legacy-startup.com, the report needs to prove ownership — link the SEC filing or press release in the repro.
1
2
# whoxy reverse-whois by org (free credits)
curl "https://api.whoxy.com/?key=$K&reverse=whois&company=ParentCorp"
Detection and defence
- Parent security teams rarely have an asset inventory that covers post-acquisition infra; the acquired brand’s old CI / staging is the soft underbelly
- Defenders should subscribe their VDP to a feed of newly registered / transferred domains under the corporate org and force every M&A integration through a security review
- Watch for hunters submitting bugs on hosts the team doesn’t recognise — that’s a sign your asset inventory is stale
References
- SEC EDGAR full-text search — Exhibit 21 lists every subsidiary
- HackTricks — External Recon Methodology — acquisitions + reverse-whois pivots
- zseano methodology — horizontal scope expansion in practice