Rust command line utility for quick asynchronous network hosts scanning.
NOTE: in order to use the tool you may need to increase the maximum allowed open files. E.g.:
bash
ulimit -n 10000
See the CLI tool on crates.io.
qsc
Clone the repository and build qsc
with:
```bash git clone https://github.com/0xor0ne/qscan cd qscan cargo build --release -p qsc
cargo install --path qsc ```
If not installed, qsc
executable can be found in ./target/release/qsc
.
Alternatively, it is possible to install from crates.io:
bash
cargo install qsc
Print the help message using -h
option:
```bash
qsc -h qsc 0.2.1 0xor0ne Quick async network scanner CLI
USAGE:
qsc [OPTIONS] --targets
OPTIONS:
--batch
```
here are a few usage examples:
```bash
qsc --targets "8.8.8.8" --ports "1-1000"
qsc --targets "192.168.1.0/24" --ports "22" --timeout 500
qsc --targets "www.google.com" --ports "80,443"
qsc --targets "/tmp/ips.txt" --ports "1-1024" ```
It's possible to build and use a Docker image configured for running qsc
.
NOTE: currently only Linux has been tested for building the Docker image.
Assuming Docker is installed on your machine and configured to run without sudo (if not, see here and here), proceed by building the image:
bash
./qsc/scripts/docker_build.sh
Then you can use the 0xor0ne/qscan
Docker image for running the scanner:
bash
docker run --rm -it 0xor0ne/qscan --targets "8.8.8.8" --ports "1-1024"
the same thing can be done using the helper script:
bash
./qsc/scripts/docker_run_scan.sh --targets "8.8.8.8" --ports "1-1024"
Alternatively, it is possible to download and run a precompiled image from hub.docker.com:
bash
docker run --rm 0xor0ne/qscan:latest --targets "8.8.8.8" --ports "1-1024"