https://github.com/bells307/qwatro
qwatro is a simple network tool which can scan tcp ports
https://github.com/bells307/qwatro
golang port-scanner
Last synced: 2 months ago
JSON representation
qwatro is a simple network tool which can scan tcp ports
- Host: GitHub
- URL: https://github.com/bells307/qwatro
- Owner: bells307
- Created: 2023-03-05T08:29:36.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T12:26:56.000Z (about 2 years ago)
- Last Synced: 2025-01-22T21:19:30.318Z (4 months ago)
- Topics: golang, port-scanner
- Language: Go
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# qwatro
qwatro is a simple network tool which can scan tcp ports
# Usage
Use `--help` to see all application arguments.To run tcp port scanning use the command:
```
qwatro scan [flags]
````qwatro scan` flags:
```
-h, --help help for scan
-p, --port-range string Port range (default "1-65535")
--tcp-timeout duration Maximum response time for tcp scanning (default 300ms)
-t, --timeout duration General scan timeout
-w, --workers int Workers for scanning (default 200)
```## Example
Run port scannig on range 7000-10000:
```
qwatro scan 127.0.0.1 -p 7000-10000
```### Output
```
PS C:\dev\go\qwatro> qwatro scan 127.0.0.1 -p 7000-10000
127.0.0.1:7680
127.0.0.1:8082
```