SnakeScan 1.3.5__tar.gz → 1.3.7__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SnakeScan
3
- Version: 1.3.5
3
+ Version: 1.3.7
4
4
  Summary: Module SnakeScan using to scan port or ports in you device or other devices
5
5
  Author: Den*Ram
6
6
  Description-Content-Type: text/markdown
@@ -14,17 +14,24 @@ Project-URL: Repository, https://github.com/Den-Ram/SnakeScan
14
14
 
15
15
  Scanner to scan port
16
16
  import SnakeScan
17
+
17
18
  and use module to scan port
19
+
18
20
  For full compatibility, I recommend using python 3.x.x
19
- requires=>tqdm,termcolor,art
21
+
20
22
  [*]added new check all port search:
21
23
  [$]Port--> --a
24
+
22
25
  [*]added new check all port using thread:
23
26
  [$]Port--> --t
27
+
24
28
  [*]added new dos attack:
29
+
25
30
  [$]Host-->https://example.com --d
26
31
  [*]added new check you ip:
32
+
27
33
  --l and you need internet connection to use him
28
- added new help
34
+
35
+ added new help information
29
36
 
30
37
 
@@ -1,16 +1,23 @@
1
1
  Scanner to scan port
2
2
  import SnakeScan
3
+
3
4
  and use module to scan port
5
+
4
6
  For full compatibility, I recommend using python 3.x.x
5
- requires=>tqdm,termcolor,art
7
+
6
8
  [*]added new check all port search:
7
9
  [$]Port--> --a
10
+
8
11
  [*]added new check all port using thread:
9
12
  [$]Port--> --t
13
+
10
14
  [*]added new dos attack:
15
+
11
16
  [$]Host-->https://example.com --d
12
17
  [*]added new check you ip:
18
+
13
19
  --l and you need internet connection to use him
14
- added new help
20
+
21
+ added new help information
15
22
 
16
23
 
@@ -1,5 +1,5 @@
1
1
  """Module SnakeScan using to scan port or ports in you device or other devices"""
2
- __version__="1.3.5"
2
+ __version__="1.3.7"
3
3
  import socket
4
4
  from art import tprint
5
5
  from datetime import datetime
@@ -19,7 +19,7 @@ ports = {
19
19
  20: "FTP-DATA", 21: "FTP", 22: "SSH", 23: "Telnet",
20
20
  25: "SMTP", 43: "WHOIS", 53: "DNS", 67:"DHCP", 68:"DHCP", 69:"TFTP", 80: "http", 110:"POP3",
21
21
  115: "SFTP", 123: "NTP", 139:"NetBios", 143: "IMAP", 161: "SNMP",
22
- 179: "BGP", 389:"LDAP", 443: "HTTPS", 445: "MICROSOFT-DS", 465:"SSL/TLS",
22
+ 179: "BGP", 443: "HTTPS", 445: "MICROSOFT-DS", 465:"SSL/TLS",
23
23
  514: "SYSLOG", 515: "PRINTER", 554:"RTSP", 587:"TLS/STARTTLS", 993: "IMAPS",
24
24
  995: "POP3S", 1080: "SOCKS", 1194: "OpenVPN",
25
25
  1433: "SQL Server", 1723: "PPTP", 2222:"SSH", 3128: "HTTP",
@@ -70,8 +70,8 @@ print("–"*60)
70
70
  tprint("SnakeScan")
71
71
  print("–"*60)
72
72
  print(f"{__version__}".rjust(60))
73
+ print("Host:|--l,host --i,host --d| Port:|--s port,--a,--t|")
73
74
  print(f"Skip{colored('|*|','blue')}Error: {colored('Host','green')}{colored('[X]:Error','red')} {colored('|$|','green')} {colored('Port','green')}{colored('[X]:Error','red')}")
74
- print("Host:[--l,host --i,host --d] Port:[--s port,--a,--t]")
75
75
  while Run_now:
76
76
  host=input(f"{colored('[$]','green')}Host-->")
77
77
  if "--i" in host:
@@ -219,13 +219,10 @@ while Run_now:
219
219
  print(f"Closed{colored('|X|','red')}-->|{all}|")
220
220
  continue
221
221
  if "--s" in str(port_user):
222
- port_user=port_single.strip().strip("--s")[1:len(port_user)]
223
- for i in range(len(port_user)):
224
- if port_user[i] == " ":
225
- port_user=port_user[0:i]
226
- break
222
+ port_user=port_single.strip("--s")
223
+ port_user=port_user.split()
227
224
  try:
228
- port_user=int(port_user)
225
+ port_user=int(port_user[0])
229
226
  except:
230
227
  port_user="None"
231
228
  for singel in range(1):
@@ -2,18 +2,19 @@
2
2
  requires = ["flit_core >=3.11,<4"]
3
3
  build-backend = "flit_core.buildapi"
4
4
 
5
+
5
6
  [project]
6
7
  name = "SnakeScan"
7
8
  authors = [{name = "Den*Ram"}]
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ license-files = ["LICENSE"]
12
+ dynamic = ["version", "description"]
8
13
  dependencies = [
9
14
  "art",
10
15
  "tqdm",
11
16
  "termcolor",
12
17
  ]
13
- readme = "README.md"
14
- license = "MIT"
15
- license-files = ["LICENSE"]
16
- dynamic = ["version", "description"]
17
18
  [project.urls]
18
19
  Homepage = "https://github.com/Den-Ram/SnakeScan"
19
20
  Repository = "https://github.com/Den-Ram/SnakeScan"
File without changes