Portify
1.0.0
Portify เป็นเครื่องสแกนพอร์ต Go-based ธรรมดาที่ช่วยให้คุณสามารถสแกนพอร์ตต่างๆ บนโฮสต์เป้าหมายได้ เครื่องมือนี้ให้ข้อมูลเกี่ยวกับพอร์ตที่เปิดและปิด และสามารถดึงแบนเนอร์จากพอร์ตที่เปิดอยู่ได้ หากต้องการ
หากต้องการใช้ 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