Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
qscan — Quick network scanner library. https://crates.io/crates/qscan | Kitploit
Tools/GitHubGitHub/0xor0ne/qscan
ReconnaissanceNetwork MappingPort ScanningInformation GatheringNetwork SecurityPenetration Testing
GitHub0xor0ne/qscan

qscan

Quick network scanner library. https://crates.io/crates/qscan

View Repository
94963 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Quick Network Scanner

Quick Network Scanner project includes:

  • qscan: a rust library for asynchronous network ports scanning (see README).
  • qsc: a command line utility built on top of qscan library for quick network scanning activities (see README).

NOTE: in order to properly use the library and the command line utility provided by this project you may need to increase the maximum allowed open files. E.g.:

root@kitploit:~
ulimit -n 10000

NOTE: also, for using the ping scan functionality, you need root or other proper permission (i.e. CAP_NET_RAW).

qsc CLI Tool: Quick Scan Example

Install qsc with:

root@kitploit:~
cargo install qsc

run the scanner (TCP connect scan):

root@kitploit:~
qsc --targets www.google.com --ports 1-1024

for more details and options see qsc README.

qscan Library

For using qscan library put this dependency in your Cargo.toml:

root@kitploit:~
[dependencies]
qscan = "0.6.0"

for more details and examples see qscan README.

Build from Source

Clone and build with:

root@kitploit:~
git clone https://github.com/0xor0ne/qscan.git
cd qscan
cargo build --release

Related Projects

  • RustScan
Download Tool