Skip to content

Latest commit

History

20 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Description

A high-performance URL liveness detection tool written in Rust. Designed to be fast, lightweight, and highly concurrent, with full asynchronous support.

中文文档

👉 中文说明

Features

FeatureDescription
Asset Liveness DetectionCheck the availability of assets such as domains, IPs, and URLs
Proxy SupportSupports HTTP, HTTPS, and SOCKS proxies
Status Code FilteringFilter HTTP responses by status code (default: only 200)
Custom PathSupports specifying a custom path (default: /)
Fingerprint DetectionIdentifies website CMS using an open-source fingerprint database
Layered Scan Modealive mode for liveness-only and full mode for fingerprinting
Scan Rate Control--rate controls requests per second to protect targets
High ConcurrencySupports high concurrency and asynchronous execution

Usage

Help

An efficient and fast url survival detection tool
Usage: windfire [OPTIONS]
Options:
An efficient and fast url survival detection tool
Usage: windfire.exe [OPTIONS] <--url <URL>|--file <FILE>>
Options:
-t, --thread <THREAD> Setting the number of threads [default: 50]
-u, --url <URL> Enter a target
-f, --file <FILE> Enter a file path
-s, --timeout <TIMEOUT> The http request timeout [default: 10]
-c, --status-code <STATUS_CODE> Display the specified status code
-p, --path <PATH> Designated path scan [default: ]
-x, --proxy <PROXY> Supported Proxy socks5, http, and https
-o, --output <OUTPUT> Output to CSV or JSON file
--mode <MODE> Scan mode: alive or full [default: full]
--rate <RATE> Max requests per second (0 means unlimited) [default: 0]
-h, --help Print help
-V, --version Print version

Parameter Description

  • -t, --thread Set the number of threads (default: 50)
  • -u, --url Specify a single target. Supports IP, IP range, domain, URL, or host:port. Defaults to scanning ports 80 and 443.
  • -f, --file Specify a file containing targets (one per line)
  • -s, --timeout Set HTTP request timeout (default: 10 seconds)
  • -c, --status-code Filter by specific HTTP status codes. Multiple values can be provided, separated by commas (e.g. 200,403)
  • -p, --path Specify a path to scan (default: empty)
  • -x, --proxy Proxy support (socks5, http, https), e.g. socks5://127.0.0.1:1080
  • -o, --output Export results to a CSV or JSON file, e.g. -o result.csv or -o result.json
  • --mode Scan mode: alive (liveness only) or full (liveness + fingerprint), default full
  • --rate Max requests per second. 0 means unlimited (default)
  • -h, --help Display help information
  • -V, --version Show version information

Usage Examples

  1. Single target
windfire -u https://www.baidu.com
  1. Batch scan from file
windfire -f urls.txt
  1. Scan with a specific path
windfire -f urls.txt -p admin -c 200
  1. Batch scan with output
windfire -f urls.txt > result.txt
  1. Use proxy
windfire -f urls.txt -x socks5://127.0.0.1:1080
  1. Export results to CSV or JSON
windfire -f urls.txt -o result.csv

Default Output Format

https://www.baidu.com [200] [百度一下,你就知道] [BWS/1.1] [414219] ["CMS"]

Output fields include:

  • URL
  • Status Code
  • Page Title
  • Server
  • Response Size
  • Fingerprint Information

Release

v0.5.0

  • Added layered scan mode: --mode alive|full.
  • Added global request rate control: --rate.
  • Kept compatibility with existing output and filtering parameters.

About

Blazing fast, asynchronous URL prober & fingerprinting scanner built in Rust. Optimized for large-scale OSINT, reconnaissance, and bug bounty hunting. | 基于 Rust 的极速异步 URL 测活与指纹识别工具。专为大规模资产收集、OSINT 与红蓝对抗设计。

Topics

Resources

Stars

77 stars

Watchers

1 watching

Forks

Releases

Used by

Contributors

Languages