hyper-scan

Crates.iohyper-scan
lib.rshyper-scan
version0.1.1
sourcesrc
created_at2022-08-08 02:38:12.201914
updated_at2022-08-13 16:46:14.676991
descriptionScan for services running on the open ports of a given host
homepage
repositoryhttps://github.com/iTranscend/hyper-scan
max_upload_size
id640528
size1,129,966
Femi Bankole (iTranscend)

documentation

README

hyper-scan

A multi-threaded port scanner and service detection utility.

Demo

ASCII Demo

Installation

  • Install Rust (Installs cargo)
  • Install hyper-scan via cargo
      cargo install hyper-scan
    

Usage

hs [-h host] [-s startPort] [-e endPort] [-j threads] [-v verbose] [-t timeout]

See full help information with the --help flag.

Examples

  • Scan all ports on your localhost 127.0.0.1:

    hs
    
  • Scan all open ports on 128.2.3.5:

    hs 128.2.3.5
    
  • Scan all ports on 128.2.3.5 between 200 and 50300:

    hs 128.2.3.5 -s 200 -e 50300
    
  • Scan all ports on 128.2.3.5 between 200 and 50300 using 8 threads:

    hs 128.2.3.5 -s 200 -e 50300 -j 8
    

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as below, without any additional terms or conditions.

License

Licensed under either of

at your option.

Commit count: 29

cargo fmt