https://github.com/binsarjr/subdofinder
SubdoFinder is a simple tool to collect subdomains of a specific domain.
https://github.com/binsarjr/subdofinder
cybersecurity osint subdomain-enumeration subdomain-finder
Last synced: 12 months ago
JSON representation
SubdoFinder is a simple tool to collect subdomains of a specific domain.
- Host: GitHub
- URL: https://github.com/binsarjr/subdofinder
- Owner: binsarjr
- Created: 2024-12-25T08:42:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-25T08:44:24.000Z (over 1 year ago)
- Last Synced: 2025-07-03T14:03:37.791Z (12 months ago)
- Topics: cybersecurity, osint, subdomain-enumeration, subdomain-finder
- Language: TypeScript
- Homepage:
- Size: 1.47 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Support: support.ts
Awesome Lists containing this project
README
# SubdoFinder
**SubdoFinder** is a simple tool to collect subdomains of a specific domain.

---
## Features
- Dump subdomains of a specific domain
- Support for multiple domains from a file
- Output results to a customizable directory
---
## Installation
1. Ensure you have [Bun](https://bun.sh) installed on your system.
2. Clone the repository:
```bash
$ git clone https://github.com/binsarjr/subdofinder
$ cd subdofinder
```
3. Install dependencies:
```bash
$ bun install
```
4. Link the tool globally (optional):
```bash
$ bun link
```
---
## Usage
```bash
Usage: subdofinder [options]
Dump subdomains of a domain
Options:
-d, --domain Domain to dump
-l, --list List all subdomains files
-o, --output Output directory (default: "./results")
-h, --help Display help for command
```
### Examples
1. Dump subdomains for a single domain:
```bash
$ subdofinder -d example.com
```
2. Dump subdomains for multiple domains from a file:
```bash
$ subdofinder -l domains.txt
```
3. Dump subdomains with output to a specific directory:
```bash
$ subdofinder -d example.com -o ./output_directory
```
---
## Contribution
Contributions are welcome! Please fork this repository and submit a pull request with fixes or new features.