commit ac6fe6b66d7e40baac3f0c7597c9488e080e5afa Author: Aaron Riedel Date: Tue Jul 18 09:04:33 2023 +0200 initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..5218ea0 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +smol test project for https://ssi.place/timr/ \ No newline at end of file diff --git a/pingplace.py b/pingplace.py new file mode 100644 index 0000000..0081f46 --- /dev/null +++ b/pingplace.py @@ -0,0 +1,53 @@ +from icmplib import * +from time import sleep + +def one_ping(socket, address): + request = ICMPRequest( + destination=address, + id=1, + sequence=1) + try: + print("sending packet to %s" % address) + socket.send(request) + return + except TimeoutExceeded as err: + # The timeout has been reached + print(err) + except DestinationUnreachable as err: + # The reply indicates that the destination host is unreachable + print(err) + except TimeExceeded as err: + # The reply indicates that the time to live exceeded in transit + print(err) + except ICMPLibError as err: + # All other errors + print(err) + +# settings +x=1 +y=1 +width=512 +hight=512 +r=0xff +g=0xff +b=0xff +prefix="2a01:4f8:c012:f8e6:1" + +# open socket +sock = ICMPv6Socket() + +# generate IP list +ips=[] +for w in range(width): + for h in range(hight): + xcoord=x+w + xcoord=f"{xcoord:#05x}".split('x')[-1] + ycoord=hex(y+h).split('x')[-1] + colorr=f"{r:#04x}".split('x')[-1] + colorg=f"{g:#04x}".split('x')[-1] + colorb=f"{b:#04x}".split('x')[-1] + ip=prefix+xcoord+":"+ycoord+":"+colorr+":"+colorg+colorb + ips.append(ip) +for ip in ips: + one_ping(sock, ip) +print("done with %s ips" % len(ips)) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..5708a32 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +icmplib \ No newline at end of file