SnakeScan 1.3.7__tar.gz → 1.3.9__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.7
3
+ Version: 1.3.9
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
@@ -12,26 +12,18 @@ Requires-Dist: termcolor
12
12
  Project-URL: Homepage, https://github.com/Den-Ram/SnakeScan
13
13
  Project-URL: Repository, https://github.com/Den-Ram/SnakeScan
14
14
 
15
- Scanner to scan port
15
+ ##SnakeScan##
16
16
  import SnakeScan
17
17
 
18
18
  and use module to scan port
19
19
 
20
20
  For full compatibility, I recommend using python 3.x.x
21
21
 
22
- [*]added new check all port search:
23
- [$]Port--> --a
24
-
25
- [*]added new check all port using thread:
26
- [$]Port--> --t
27
-
28
- [*]added new dos attack:
29
-
30
- [$]Host-->https://example.com --d
31
- [*]added new check you ip:
32
-
33
- --l and you need internet connection to use him
34
-
35
- added new help information
36
-
22
+ --l need internet connection
23
+ --h help
24
+ --a All search port
25
+ --t All search port threading
26
+ --d dos
27
+ --s single port search
28
+ --i information about host
37
29
 
@@ -0,0 +1,15 @@
1
+ ##SnakeScan##
2
+ import SnakeScan
3
+
4
+ and use module to scan port
5
+
6
+ For full compatibility, I recommend using python 3.x.x
7
+
8
+ --l need internet connection
9
+ --h help
10
+ --a All search port
11
+ --t All search port threading
12
+ --d dos
13
+ --s single port search
14
+ --i information about host
15
+
@@ -1,5 +1,5 @@
1
1
  """Module SnakeScan using to scan port or ports in you device or other devices"""
2
- __version__="1.3.7"
2
+ __version__="1.3.9"
3
3
  import socket
4
4
  from art import tprint
5
5
  from datetime import datetime
@@ -69,11 +69,14 @@ def is_port_open_threads(host,port):
69
69
  print("–"*60)
70
70
  tprint("SnakeScan")
71
71
  print("–"*60)
72
- print(f"{__version__}".rjust(60))
73
- print("Host:|--l,host --i,host --d| Port:|--s port,--a,--t|")
74
- print(f"Skip{colored('|*|','blue')}Error: {colored('Host','green')}{colored('[X]:Error','red')} {colored('|$|','green')} {colored('Port','green')}{colored('[X]:Error','red')}")
75
72
  while Run_now:
76
73
  host=input(f"{colored('[$]','green')}Host-->")
74
+ if "--v" in host:
75
+ print(f"Build_{__version__}")
76
+ continue
77
+ if "--h" in host:
78
+ print("Host:|--l,host --i,host --d|")
79
+ continue
77
80
  if "--i" in host:
78
81
  host=host.strip("--i").strip()
79
82
  print("".center(60,"-"))
@@ -81,7 +84,7 @@ while Run_now:
81
84
  hostname=socket.gethostbyaddr(host)
82
85
  print(f"Host:{hostname[0]}")
83
86
  except:
84
- hostname="None"
87
+ hostname="Undefined"
85
88
  print(f"Host:{hostname}")
86
89
  try:
87
90
  print(f"IP:{socket.gethostbyname(host)}")
@@ -188,6 +191,12 @@ while Run_now:
188
191
  print(local)
189
192
  continue
190
193
  port_user=input(f"{colored('[$]','green')}Port-->")
194
+ if "--v" in port_user:
195
+ print(f"Build_{__version__}")
196
+ continue
197
+ if "--h" in port_user:
198
+ print("Port:|--s port,--a,--t|")
199
+ continue
191
200
  if port_user == "":
192
201
  while True:
193
202
  print(f"{colored('Port','green')}{colored('[X]:Empty value','red')}")
snakescan-1.3.7/README.md DELETED
@@ -1,23 +0,0 @@
1
- Scanner to scan port
2
- import SnakeScan
3
-
4
- and use module to scan port
5
-
6
- For full compatibility, I recommend using python 3.x.x
7
-
8
- [*]added new check all port search:
9
- [$]Port--> --a
10
-
11
- [*]added new check all port using thread:
12
- [$]Port--> --t
13
-
14
- [*]added new dos attack:
15
-
16
- [$]Host-->https://example.com --d
17
- [*]added new check you ip:
18
-
19
- --l and you need internet connection to use him
20
-
21
- added new help information
22
-
23
-
File without changes
File without changes