Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sj14/portscan
🔌 a simple portscanner written in go
https://github.com/sj14/portscan
go port-scanning
Last synced: 2 months ago
JSON representation
🔌 a simple portscanner written in go
- Host: GitHub
- URL: https://github.com/sj14/portscan
- Owner: sj14
- License: gpl-3.0
- Created: 2015-03-25T14:42:24.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-09-29T07:51:10.000Z (over 6 years ago)
- Last Synced: 2024-04-17T18:19:21.131Z (9 months ago)
- Topics: go, port-scanning
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# portscan
a simple portscanner written in go# examples
```
$ ./portscan -host=google.de
open 80
scan finished
``````
$ ./portscan -start=1656 -end=1740 -timeout=250ms
open 1656
open 1660
open 1657
scan finished in 109.437457ms
```# arguments
```
$ ./portscan -h
Usage of ./portscan:
-closed=false: list closed ports (true/false)
-end=-1: the upper end to scan
-host="localhost": the host to scan
-pause="1ms": pause after each port scan (e.g. 5ms)
-start=80: the lower end to scan
-timeout="1000ms": timeout (e.g. 50ms or 1s)
```