check host
v1.2
Check-Host는 웹 사이트를 모니터링하고 호스트, DNS 레코드 및 IP 주소의 가용성을 확인하는 유틸리티입니다. API를 기반으로 작성 : https://check-host.net/about/api
__ __ __ __
____/ / ___ ____/ /______/ / ___ ___ / /_
/ __/ _ / -_) __/ '_/___/ _ / _ (_-</ __/
__/_//_/__/__/_/_ /_//_/___/___/__/ v1.2 / https://github.com/diasnull
ــــــــﮩ٨ـﮩﮩ٨ـﮩ٨ـﮩﮩ٨ــــ
iplook: website location search
usage:
| python3 check-host.py --iplook -t <target>
examples:
| python3 check-host.py --iplook -t 1.1.1.1
| python3 check-host.py --iplook -t example.com
only for domain, IP address!
ping: testing the integrity and quality of connections
usage:
| python3 check-host.py --ping -t <target>
examples:
| python3 check-host.py --ping -t 1.1.1.1
| python3 check-host.py --ping -t http://example.com
| python3 check-host.py --ping -t https://example.com
| python3 check-host.py --ping -t example.com
http: testing website availability and performance
usage:
| python3 check-host.py --http -t <target>:<port> <-- automatically port 80
examples:
| python3 check-host.py --http -t https://1.1.1.1:443
| python3 check-host.py --http -t http://example.com
| python3 check-host.py --http -t https://example.com
| python3 check-host.py --http -t example.com:80
tcp: testing TCP connection
usage:
| python3 check-host.py --tcp -t <target>:<port> <-- automatically port 80
examples:
| python3 check-host.py --tcp -t 1.1.1.1:53
| python3 check-host.py --tcp -t http://example.com
| python3 check-host.py --tcp -t ssmtp://smtp.gmail.com
udp: testing UDP connection
usage:
| python3 check-host.py --udp -t <target>:<port> <-- automatically port 80
examples:
| python3 check-host.py --udp -t 1.1.1.1:53
| python3 check-host.py --udp -t http://example.com
| python3 check-host.py --udp -t example.com:4444
dns: website domain monitoring
usage:
| python3 check-host.py --dns -t <target>
examples:
| python3 check-host.py --dns -t 1.1.1.1
| python3 check-host.py --dns -t http://example.com
| python3 check-host.py --dns -t https://example.com
| python3 check-host.py --dns -t example.com
iplook : 웹 사이트 위치 검색, IP 주소
핑 : 무결성과 연결 품질 테스트
HTTP : 웹 사이트 가용성 및 성능 테스트
TCP : TCP 연결 테스트
UDP : UDP 연결 테스트
DNS : 웹 사이트 도메인 모니터링
pip3 install requests
pip3 install prettytable
git clone https://github.com/diasnull/check-host.git
cd check-host/
python3 check-host.py -h