SnakeScan 1.8.4__tar.gz → 1.8.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {snakescan-1.8.4 → snakescan-1.8.5}/PKG-INFO +2 -2
- {snakescan-1.8.4 → snakescan-1.8.5}/README.md +1 -1
- {snakescan-1.8.4 → snakescan-1.8.5}/SnakeScan/CLI.py +9 -1
- {snakescan-1.8.4 → snakescan-1.8.5}/SnakeScan/__init__.py +1 -1
- {snakescan-1.8.4 → snakescan-1.8.5}/LICENSE +0 -0
- {snakescan-1.8.4 → snakescan-1.8.5}/SnakeScan/Check_subnet.py +0 -0
- {snakescan-1.8.4 → snakescan-1.8.5}/SnakeScan/Get_ssl.py +0 -0
- {snakescan-1.8.4 → snakescan-1.8.5}/SnakeScan/PoolExecutor.py +0 -0
- {snakescan-1.8.4 → snakescan-1.8.5}/SnakeScan/Pool_UDP_Executor.py +0 -0
- {snakescan-1.8.4 → snakescan-1.8.5}/SnakeScan/config.ini +0 -0
- {snakescan-1.8.4 → snakescan-1.8.5}/pyproject.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: SnakeScan
|
|
3
|
-
Version: 1.8.
|
|
3
|
+
Version: 1.8.5
|
|
4
4
|
Summary: Unlock the potential of your network with this powerful IPv4 address scanner. Easily scan IP address ranges, identify active hosts, and even extract IPv4 addresses from IPv6 environments. Enhance your network monitoring, troubleshooting, and security analysis!
|
|
5
5
|
Author: Den*Ram
|
|
6
6
|
Requires-Python: >=3.7
|
|
@@ -130,7 +130,7 @@ watcher.start() # Start monitoring!
|
|
|
130
130
|
|
|
131
131
|
---
|
|
132
132
|
|
|
133
|
-
**Last updated:** 1.8.
|
|
133
|
+
**Last updated:** 1.8.5 (Minor bug fixes and style changes) *Functionality is present, has narrowly specialized implementations. See details below.*
|
|
134
134
|
|
|
135
135
|
***
|
|
136
136
|
|
|
@@ -117,7 +117,7 @@ watcher.start() # Start monitoring!
|
|
|
117
117
|
|
|
118
118
|
---
|
|
119
119
|
|
|
120
|
-
**Last updated:** 1.8.
|
|
120
|
+
**Last updated:** 1.8.5 (Minor bug fixes and style changes) *Functionality is present, has narrowly specialized implementations. See details below.*
|
|
121
121
|
|
|
122
122
|
***
|
|
123
123
|
|
|
@@ -164,7 +164,7 @@ else:
|
|
|
164
164
|
if __name__ == "__main__":
|
|
165
165
|
main()
|
|
166
166
|
|
|
167
|
-
version = "1.8.
|
|
167
|
+
version = "1.8.5"
|
|
168
168
|
|
|
169
169
|
|
|
170
170
|
def is_port_open(host, port):
|
|
@@ -652,7 +652,9 @@ if SnakeArgs().thread:
|
|
|
652
652
|
for t in threads:
|
|
653
653
|
t.join()
|
|
654
654
|
if SnakeArgs().version:
|
|
655
|
+
print("|Version|".center(60, "—"))
|
|
655
656
|
print(f"SnakeScan_Build_{version}")
|
|
657
|
+
print("".center(60, "—"))
|
|
656
658
|
if SnakeArgs().speed:
|
|
657
659
|
if SnakeArgs().udp:
|
|
658
660
|
try:
|
|
@@ -675,10 +677,16 @@ if SnakeArgs().getssl:
|
|
|
675
677
|
print("".center(60, "—"))
|
|
676
678
|
if SnakeArgs().dictshow:
|
|
677
679
|
if path_tcp:
|
|
680
|
+
print("|Paths|".center(60, "—"))
|
|
678
681
|
print(f"TCP:{path_tcp}")
|
|
682
|
+
print("".center(60, "—"))
|
|
679
683
|
else:
|
|
684
|
+
print("|Paths|".center(60, "—"))
|
|
680
685
|
print("TCP:path not specified")
|
|
686
|
+
print("".center(60, "—"))
|
|
681
687
|
if path_udp:
|
|
682
688
|
print(f"UDP:{path_udp}")
|
|
689
|
+
print("".center(60, "—"))
|
|
683
690
|
else:
|
|
684
691
|
print("UDP:path not specified")
|
|
692
|
+
print("".center(60, "—"))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""Unlock the potential of your network with this powerful IPv4 address scanner. Easily scan IP address ranges, identify active hosts, and even extract IPv4 addresses from IPv6 environments. Enhance your network monitoring, troubleshooting, and security analysis!"""
|
|
2
2
|
|
|
3
|
-
__version__ = "1.8.
|
|
3
|
+
__version__ = "1.8.5"
|
|
4
4
|
import socket
|
|
5
5
|
from time import sleep
|
|
6
6
|
from termcolor import colored
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|