SnakeScan 1.7.1__tar.gz → 1.7.2__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.7.1 → snakescan-1.7.2}/PKG-INFO +7 -7
- {snakescan-1.7.1 → snakescan-1.7.2}/README.md +5 -5
- {snakescan-1.7.1 → snakescan-1.7.2}/SnakeScan/CLI.py +1 -1
- {snakescan-1.7.1 → snakescan-1.7.2}/SnakeScan/PoolExecutor.py +55 -16
- {snakescan-1.7.1 → snakescan-1.7.2}/SnakeScan/__init__.py +2 -2
- {snakescan-1.7.1 → snakescan-1.7.2}/LICENSE +0 -0
- {snakescan-1.7.1 → snakescan-1.7.2}/SnakeScan/Check_subnet.py +0 -0
- {snakescan-1.7.1 → snakescan-1.7.2}/SnakeScan/Get_ssl.py +0 -0
- {snakescan-1.7.1 → snakescan-1.7.2}/pyproject.toml +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: SnakeScan
|
|
3
|
-
Version: 1.7.
|
|
4
|
-
Summary: IPv4 address scanner for collecting address information.
|
|
3
|
+
Version: 1.7.2
|
|
4
|
+
Summary: IPv4 address scanner for collecting address information.Scan or get the IPv4 address from the IPv6 host
|
|
5
5
|
Author: Den*Ram
|
|
6
6
|
Requires-Python: >=3.7
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
@@ -14,7 +14,7 @@ Requires-Dist: termcolor
|
|
|
14
14
|
# SnakeScan
|
|
15
15
|

|
|
16
16
|

|
|
17
|
-

|
|
18
18
|

|
|
19
19
|

|
|
20
20
|
|
|
@@ -63,7 +63,7 @@ snake -l #Shows your public internet IP address. Internet connection required fo
|
|
|
63
63
|
-I:
|
|
64
64
|
snake www.google.com -i #Shows information about the IP address.Can receive information from IPV4 and IPV6
|
|
65
65
|
|
|
66
|
-
#Update in 1.7.
|
|
67
|
-
- Unnecessary functions have been removed and some bugs have been fixed.
|
|
68
|
-
- Now SnakeScan run is deleted and run in code is now impossible.
|
|
69
|
-
-
|
|
66
|
+
#Update in 1.7.2
|
|
67
|
+
- Unnecessary functions have been removed and some bugs have been fixed.
|
|
68
|
+
- Now SnakeScan run is deleted and run in code is now impossible.
|
|
69
|
+
- Fixed Several bugs.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# SnakeScan
|
|
2
2
|

|
|
3
3
|

|
|
4
|
-

|
|
5
5
|

|
|
6
6
|

|
|
7
7
|
|
|
@@ -50,7 +50,7 @@ snake -l #Shows your public internet IP address. Internet connection required fo
|
|
|
50
50
|
-I:
|
|
51
51
|
snake www.google.com -i #Shows information about the IP address.Can receive information from IPV4 and IPV6
|
|
52
52
|
|
|
53
|
-
#Update in 1.7.
|
|
54
|
-
- Unnecessary functions have been removed and some bugs have been fixed.
|
|
55
|
-
- Now SnakeScan run is deleted and run in code is now impossible.
|
|
56
|
-
-
|
|
53
|
+
#Update in 1.7.2
|
|
54
|
+
- Unnecessary functions have been removed and some bugs have been fixed.
|
|
55
|
+
- Now SnakeScan run is deleted and run in code is now impossible.
|
|
56
|
+
- Fixed Several bugs.
|
|
@@ -3,49 +3,88 @@ from termcolor import colored
|
|
|
3
3
|
from concurrent.futures import ProcessPoolExecutor
|
|
4
4
|
|
|
5
5
|
ports = {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
7: "Echo",
|
|
7
|
+
9: "Discard",
|
|
8
|
+
11: "Systat",
|
|
9
|
+
13: "Daytime",
|
|
10
|
+
17: "QOTD",
|
|
11
|
+
18: "MSP",
|
|
12
|
+
19: "Chargen",
|
|
13
|
+
20: "FTP-Data",
|
|
14
|
+
21: "FTP-Control",
|
|
8
15
|
22: "SSH",
|
|
9
16
|
23: "Telnet",
|
|
10
17
|
25: "SMTP",
|
|
11
|
-
|
|
18
|
+
37: "Time",
|
|
19
|
+
42: "WINS",
|
|
20
|
+
43: "Whois",
|
|
21
|
+
49: "TACACS",
|
|
12
22
|
53: "DNS",
|
|
13
|
-
67: "DHCP",
|
|
14
|
-
68: "DHCP",
|
|
23
|
+
67: "DHCP server",
|
|
24
|
+
68: "DHCP client",
|
|
15
25
|
69: "TFTP",
|
|
16
|
-
|
|
26
|
+
70: "Gopher",
|
|
27
|
+
79: "Finger",
|
|
28
|
+
80: "HTTP",
|
|
29
|
+
88: "Kerberos",
|
|
30
|
+
109: "POP2",
|
|
17
31
|
110: "POP3",
|
|
32
|
+
111: "RPCbind",
|
|
33
|
+
113: "ident",
|
|
18
34
|
115: "SFTP",
|
|
35
|
+
118: "SQLServ",
|
|
36
|
+
119: "NNTP",
|
|
19
37
|
123: "NTP",
|
|
20
|
-
|
|
38
|
+
135: "MS-Locator",
|
|
39
|
+
137: "NetBIOS-NS",
|
|
40
|
+
138: "NetBIOS-DGM",
|
|
41
|
+
139: "NetBIOS-SSN",
|
|
21
42
|
143: "IMAP",
|
|
22
43
|
161: "SNMP",
|
|
44
|
+
162: "SNMP-trap",
|
|
23
45
|
179: "BGP",
|
|
46
|
+
194: "IRC",
|
|
47
|
+
201: "AppleTalk routing maintenance",
|
|
48
|
+
220: "IMAP3",
|
|
49
|
+
389: "LDAP",
|
|
24
50
|
443: "HTTPS",
|
|
25
|
-
445: "
|
|
26
|
-
465: "
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
51
|
+
445: "SMB",
|
|
52
|
+
465: "SMTPS",
|
|
53
|
+
500: "ISAKMP",
|
|
54
|
+
514: "Syslog",
|
|
55
|
+
520: "RIP",
|
|
56
|
+
546: "DHCPv6 client",
|
|
57
|
+
547: "DHCPv6 server",
|
|
58
|
+
587: "Submission",
|
|
59
|
+
631: "IPP",
|
|
60
|
+
636: "LDAPS",
|
|
61
|
+
990: "FTPS",
|
|
31
62
|
993: "IMAPS",
|
|
32
63
|
995: "POP3S",
|
|
33
64
|
1080: "SOCKS",
|
|
34
65
|
1194: "OpenVPN",
|
|
35
|
-
1433: "SQL
|
|
66
|
+
1433: "Microsoft SQL server",
|
|
67
|
+
1521: "Oracle",
|
|
36
68
|
1723: "PPTP",
|
|
69
|
+
2049: "NFS",
|
|
37
70
|
2222: "SSH",
|
|
38
71
|
3128: "HTTP",
|
|
39
72
|
3268: "LDAP",
|
|
40
73
|
3306: "MySQL",
|
|
41
74
|
3389: "RDP",
|
|
75
|
+
5060: "SIP",
|
|
76
|
+
5353: "MDNS",
|
|
42
77
|
5432: "PostgreSQL",
|
|
43
78
|
5900: "VNC",
|
|
44
|
-
|
|
45
|
-
|
|
79
|
+
8000: "HTTP alternate",
|
|
80
|
+
8080: "HTTP alternate",
|
|
81
|
+
8443: "HTTPS alternate",
|
|
82
|
+
8888: "HTTP alternate",
|
|
83
|
+
10000: "Webmin"
|
|
46
84
|
}
|
|
47
85
|
|
|
48
86
|
|
|
87
|
+
|
|
49
88
|
def is_port_open_threads(host, port):
|
|
50
89
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
|
51
90
|
try:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
"""IPv4 address scanner for collecting address information.
|
|
1
|
+
"""IPv4 address scanner for collecting address information.Scan or get the IPv4 address from the IPv6 host"""
|
|
2
2
|
|
|
3
|
-
__version__ = "1.7.
|
|
3
|
+
__version__ = "1.7.2"
|
|
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
|