Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ It installs as its **own binary** with its **own config directory**, so it runs
## What's different from subfinder

### Faster by default
- **Curated fast sources are the default.** A run uses seven fast, keyless sources (`thc`, `submd`, `crt`, `shodanct`, `rapiddns`, `hackertarget`, `sitedossier`) instead of every source. Use `-all` for the full set, or `-fast=false` for subfinder's original default selection.
- **Curated fast sources are the default.** A run uses eight fast, keyless sources (`thc`, `submd`, `crt`, `scanmalware`, `shodanct`, `rapiddns`, `hackertarget`, `sitedossier`) instead of every source. Use `-all` for the full set, or `-fast=false` for subfinder's original default selection.
- **HTTP keep-alive.** Connections are reused instead of a fresh TCP+TLS handshake per request. Sources that paginate heavily (e.g. `thc`) drop from ~32s to ~11s on large domains.
- **Update check is off by default.** subfinder makes a blocking network call to its update registry on every startup (~1s). subfaster skips it, so startup is ~30ms. Re-enable with `-duc=false`.
- **Lower default timeout** (10s, was 30s) and **Cloudflare-only resolvers** (`1.1.1.1`, `1.0.0.1`) for `-active`, instead of a long list that includes slow resolvers.
Expand Down
2 changes: 1 addition & 1 deletion pkg/runner/initialize.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

// FastSources is the curated set of fast, productive keyless sources used by -fast.
var FastSources = []string{"thc", "submd", "crt", "shodanct", "rapiddns", "hackertarget", "sitedossier"}
var FastSources = []string{"thc", "submd", "crt", "scanmalware", "shodanct", "rapiddns", "hackertarget", "sitedossier"}

// initializePassiveEngine creates the passive engine and loads sources etc
func (r *Runner) initializePassiveEngine() {
Expand Down