We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 860683e commit ad36d8dCopy full SHA for ad36d8d
sender.py
@@ -65,7 +65,7 @@ def ip_analyze(ip: str) -> list[str]:
65
ip32 &= (0xFFFFFFFF >> (32 - mask)) << (32 - mask)
66
return [
67
f"{(i >> 24) & 0xFF}.{(i >> 16) & 0xFF}.{(i >> 8) & 0xFF}.{i & 0xFF}"
68
- for i in range(ip32, ip32 + (1 << (32 - mask)))
+ for i in range(ip32 + 1, ip32 | ((1 << (32 - mask)) - 1))
69
]
70
if "-" in ip:
71
ip_range_tuple = ip.split(".")
0 commit comments