SnakeScan 1.3.1__tar.gz → 1.3.3__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.
@@ -1,9 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SnakeScan
3
- Version: 1.3.1
4
- Summary: Module SnakeScan
3
+ Version: 1.3.3
4
+ Summary: Module SnakeScan using to scan port or ports in you device or other devices
5
5
  Author: Den*Ram
6
- Requires-Python: >=3.9
7
6
  Description-Content-Type: text/markdown
8
7
  License-Expression: MIT
9
8
  License-File: LICENSE
@@ -14,24 +13,18 @@ Project-URL: Homepage, https://github.com/Den-Ram/SnakeScan
14
13
  Project-URL: Repository, https://github.com/Den-Ram/SnakeScan
15
14
 
16
15
  Scanner to scan port
17
-
18
16
  import SnakeScan
19
-
20
17
  and use module to scan port
21
-
18
+ For full compatibility, I recommend using python 3.x.x
22
19
  requires=>tqdm,termcolor,art
23
-
24
- added new single search:
25
-
26
- [$]Port--> --s 50
27
-
28
- requires-python=>3.9
29
-
30
- added new check all port search:
20
+ [*]added new check all port search:
31
21
  [$]Port--> --a
32
- added new check all port using thread:
22
+ [*]added new check all port using thread:
33
23
  [$]Port--> --t
34
- added new dos attack:
24
+ [*]added new dos attack:
35
25
  [$]Host-->https://example.com --d
26
+ [*]added new check you ip:
27
+ --l and you need internet connection to use him
28
+ added new help
36
29
 
37
30
 
@@ -0,0 +1,16 @@
1
+ Scanner to scan port
2
+ import SnakeScan
3
+ and use module to scan port
4
+ For full compatibility, I recommend using python 3.x.x
5
+ requires=>tqdm,termcolor,art
6
+ [*]added new check all port search:
7
+ [$]Port--> --a
8
+ [*]added new check all port using thread:
9
+ [$]Port--> --t
10
+ [*]added new dos attack:
11
+ [$]Host-->https://example.com --d
12
+ [*]added new check you ip:
13
+ --l and you need internet connection to use him
14
+ added new help
15
+
16
+
@@ -1,5 +1,5 @@
1
- """Module SnakeScan"""
2
- __version__="1.3.1"
1
+ """Module SnakeScan using to scan port or ports in you device or other devices"""
2
+ __version__="1.3.3"
3
3
  import socket
4
4
  from art import tprint
5
5
  from datetime import datetime
@@ -17,12 +17,12 @@ boolean=0
17
17
  OpenPorts=[]
18
18
  ports = {
19
19
  20: "FTP-DATA", 21: "FTP", 22: "SSH", 23: "Telnet",
20
- 25: "SMTP", 43: "WHOIS", 53: "DNS", 80: "http",
21
- 115: "SFTP", 123: "NTP", 143: "IMAP", 161: "SNMP",
22
- 179: "BGP", 443: "HTTPS", 445: "MICROSOFT-DS",
23
- 514: "SYSLOG", 515: "PRINTER", 993: "IMAPS",
20
+ 25: "SMTP", 43: "WHOIS", 53: "DNS", 67:"DHCP", 68:"DHCP", 69:"TFTP", 80: "http", 110:"POP3",
21
+ 115: "SFTP", 123: "NTP", 139:"NetBios", 143: "IMAP", 161: "SNMP",
22
+ 179: "BGP", 443: "HTTPS", 445: "MICROSOFT-DS", 465:"SSL/TLS",
23
+ 514: "SYSLOG", 515: "PRINTER", 554:"RTSP", 587:"TLS/STARTTLS", 993: "IMAPS",
24
24
  995: "POP3S", 1080: "SOCKS", 1194: "OpenVPN",
25
- 1433: "SQL Server", 1723: "PPTP", 3128: "HTTP",
25
+ 1433: "SQL Server", 1723: "PPTP", 2222:"SSH", 3128: "HTTP",
26
26
  3268: "LDAP", 3306: "MySQL", 3389: "RDP",
27
27
  5432: "PostgreSQL", 5900: "VNC", 8080: "Tomcat", 10000: "Webmin" }
28
28
  def is_port_open(host,port):
@@ -11,7 +11,6 @@ dependencies = [
11
11
  "termcolor",
12
12
  ]
13
13
  readme = "README.md"
14
- requires-python = ">=3.9"
15
14
  license = "MIT"
16
15
  license-files = ["LICENSE"]
17
16
  dynamic = ["version", "description"]
snakescan-1.3.1/README.md DELETED
@@ -1,22 +0,0 @@
1
- Scanner to scan port
2
-
3
- import SnakeScan
4
-
5
- and use module to scan port
6
-
7
- requires=>tqdm,termcolor,art
8
-
9
- added new single search:
10
-
11
- [$]Port--> --s 50
12
-
13
- requires-python=>3.9
14
-
15
- added new check all port search:
16
- [$]Port--> --a
17
- added new check all port using thread:
18
- [$]Port--> --t
19
- added new dos attack:
20
- [$]Host-->https://example.com --d
21
-
22
-
File without changes