학사 나부랭이
Network - Ping sweep scaner 본문
ICMP Echo Request를 이용해 IP 범위를 쓸고 지나가며 존재하는 호스트를 찾아내는 것을 Ping Sweep Scan이라고 해요.
from pythonping import ping
from time import time
def icmp_scan():
for i in range(40, 50, 1):
ip_address = "***.***.***"
ip_address += "." + str(i)
print(f"Ping target -> {ip_address}")
ping(ip_address, timeout=1, count=1, verbose=True)
if __name__ == "__main__":
begin = time()
icmp_scan()
end = time()
print(f"걸린 시간: {end-begin}")
학교 고정 IP 중 공유 프린터만 응답하네요.
연관 있는 문서
https://p1atinum.tistory.com/80
https://p1atinum.tistory.com/50
'自習 > Network' 카테고리의 다른 글
Network - Web (0) | 2021.07.30 |
---|---|
Network - TCP/UDP (0) | 2021.07.13 |
Network - Internet Control Message Protocol (0) | 2021.07.01 |
Network - Internet Protocol (0) | 2021.07.01 |
Network - IDS, IPS, Snort, UTM (0) | 2021.05.23 |
Comments