Skip to content

satyamkale27/Subdomain-Finder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Passive Subdomain Finder

This script uses web scraping to find subdomains passively. It uses Puppeteer for scraping.

Installation

git clone https://github.com/satyamkale27/Subdomain-Finder.git
cd Subdomain-Finder
npm install
npm run start

API

POST /domains

This endpoint allows you to submit a domain for subdomain finding.

Request

POST /domains HTTP/1.1
Host: localhost:8000
Content-Type: application/json

{
    "domain": "example"
}

Response

A JSON object containing the found subdomains.

[
  {
    "title": "Example Domain",
    "domain": "https://example.com/"
  }
]

Releases

No releases published

Packages

No packages published