This script uses web scraping to find subdomains passively. It uses Puppeteer for scraping.
git clone https://github.com/satyamkale27/Subdomain-Finder.git
cd Subdomain-Finder
npm install
npm run start
This endpoint allows you to submit a domain for subdomain finding.
POST /domains HTTP/1.1
Host: localhost:8000
Content-Type: application/json
{
"domain": "example"
}
A JSON object containing the found subdomains.
[
{
"title": "Example Domain",
"domain": "https://example.com/"
}
]