Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-25T08:44:24.000Z (about 1 month ago)
- Last Synced: 2024-12-25T09:27:58.812Z (about 1 month ago)
- Topics: cybersecurity, osint, subdomain-enumeration, subdomain-finder
- Language: TypeScript
- Homepage:
- Size: 0 Bytes
- Stars: 0
- 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.
![subdofinder](./subdofinder.png)
---
## 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.