Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion opensource/subfinder/running.mdx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
---
title: 'Running'
description: "Learn about running Subfinder with examples including commands and output"

Check warning on line 3 in opensource/subfinder/running.mdx

View check run for this annotation

Mintlify / Mintlify Validation (projectdiscovery) - vale-spellcheck

opensource/subfinder/running.mdx#L3

Did you really mean 'Subfinder'?
sidebarTitle: 'Running'
---

For all of the flags and options available for `Subfinder` be sure to check out the [Usage](/opensource/subfinder/usage) page. On this page we'll share examples running Subfinder with specific flags and goals

Check warning on line 7 in opensource/subfinder/running.mdx

View check run for this annotation

Mintlify / Mintlify Validation (projectdiscovery) - vale-spellcheck

opensource/subfinder/running.mdx#L7

Did you really mean 'Subfinder'?
and the output you can expect from each. *If you have questions, reach out to us through [Help](/help).*

## Basic Usage

To run Subfinder on a specific target use the `-d` flag to specify the domain.

Check warning on line 12 in opensource/subfinder/running.mdx

View check run for this annotation

Mintlify / Mintlify Validation (projectdiscovery) - vale-spellcheck

opensource/subfinder/running.mdx#L12

Did you really mean 'Subfinder'?

```
subfinder -d hackerone.com
Expand Down Expand Up @@ -42,7 +42,6 @@
docs.hackerone.com
mta-sts.forwarding.hackerone.com
gslink.hackerone.com
hackerone.com
info.hackerone.com
mta-sts.managed.hackerone.com
events.hackerone.com
Expand All @@ -52,7 +51,7 @@

## Pipe Results to Other Tools

The subdomains discovered can be piped to other tools. For example, you can pipe the discovered subdomains to httpx which will then find running HTTP servers on the host.

Check warning on line 54 in opensource/subfinder/running.mdx

View check run for this annotation

Mintlify / Mintlify Validation (projectdiscovery) - vale-spellcheck

opensource/subfinder/running.mdx#L54

Did you really mean 'httpx'?

```
echo hackerone.com | subfinder -silent | httpx -silent
Expand All @@ -65,7 +64,7 @@
http://mta-sts.managed.hackerone.com
```

## Subfinder and Docker

Check warning on line 67 in opensource/subfinder/running.mdx

View check run for this annotation

Mintlify / Mintlify Validation (projectdiscovery) - vale-spellcheck

opensource/subfinder/running.mdx#L67

Did you really mean 'Subfinder'?

Pull the latest tagged `subfinder` Docker image using:
```
Expand All @@ -82,5 +81,5 @@
docker run -v $CONFIG/subfinder:/root/.config/subfinder -t projectdiscovery/subfinder -d hackerone.com
```

## Subfinder Go library

Check warning on line 84 in opensource/subfinder/running.mdx

View check run for this annotation

Mintlify / Mintlify Validation (projectdiscovery) - vale-spellcheck

opensource/subfinder/running.mdx#L84

Did you really mean 'Subfinder'?

Expand Down
Loading