Portify
1.0.0
Portify 是一个简单的基于 Go 的端口扫描器,使您能够扫描目标主机上的一系列端口。该工具提供有关开放和关闭端口的信息,并且如果需要,可以从开放端口检索横幅。
要使用 Portify,请按照下列步骤操作:
将此存储库克隆到您的本地计算机:
git clone https://github.com/ni5arga/portify.git
导航到项目目录
cd portify
使用 Go 构建项目
go build portify.go
您现在可以使用portify
二进制文件来扫描端口。
Usage: ./portify [options] < host > < start-port > < end-port >
Options:
-timeout string
Connection timeout duration (default " 3s " )
-parallel int
Number of parallel scans (default 100)
-show-closed
Show closed ports in the output
-show-banners
Show banners from open ports
-show-open
Show open ports in the output
<host>
:要扫描的目标主机。<start-port>
:要扫描的范围内的第一个端口。<end-port>
:要扫描的范围内的最后一个端口。 ./portify -show-open example.com 80 100
./portify -show-banners example.com 20 30
./portify -timeout 5s example.com 50 60
./portify -parallel 50 example.com 2000 2100
./portify -show-open -show-closed example.com 7000 7100
./portify -show-closed example.com 4000 4010