Portify
1.0.0
Portify ist ein einfacher Go-basierter Portscanner, mit dem Sie eine Reihe von Ports auf einem Zielhost scannen können. Dieses Tool liefert Informationen über offene und geschlossene Ports und kann auf Wunsch Banner von offenen Ports abrufen.
Um Portify zu verwenden, befolgen Sie diese Schritte:
Klonen Sie dieses Repository auf Ihren lokalen Computer:
git clone https://github.com/ni5arga/portify.git
Navigieren Sie zum Projektverzeichnis
cd portify
Erstellen Sie das Projekt mit Go
go build portify.go
Sie können jetzt die portify
Binärdatei verwenden, um Ports zu scannen.
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>
: Der Zielhost, den Sie scannen möchten.<start-port>
: Der erste Port im Bereich, den Sie scannen möchten.<end-port>
: Der letzte Port im Bereich, den Sie scannen möchten. ./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