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