SnakeScan 1.3.7__tar.gz → 1.3.8__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.8
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,37 @@ 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
16
- import SnakeScan
15
+ ##SnakeScan##
16
+
17
17
 
18
+ import SnakeScan
19
+ ----------------------------
18
20
  and use module to scan port
19
21
 
20
- For full compatibility, I recommend using python 3.x.x
22
+ #For full compatibility, I recommend using python 3.x.x#
23
+
24
+ #added new check all port search#
25
+
21
26
 
22
- [*]added new check all port search:
23
27
  [$]Port--> --a
24
28
 
25
- [*]added new check all port using thread:
29
+ #added new check all port using thread#
30
+
31
+
26
32
  [$]Port--> --t
27
33
 
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
34
+ #added new dos attack#
35
+
36
+
37
+ [$]Host-->https://example.com --d
38
+
39
+
40
+ #added new check ip#
41
+
42
+
43
+ --l to use need internet connection
44
+
45
+ #added help hint#
36
46
 
37
47
 
48
+ --h
@@ -0,0 +1,34 @@
1
+ ##SnakeScan##
2
+
3
+
4
+ import SnakeScan
5
+ ----------------------------
6
+ and use module to scan port
7
+
8
+ #For full compatibility, I recommend using python 3.x.x#
9
+
10
+ #added new check all port search#
11
+
12
+
13
+ [$]Port--> --a
14
+
15
+ #added new check all port using thread#
16
+
17
+
18
+ [$]Port--> --t
19
+
20
+ #added new dos attack#
21
+
22
+
23
+ [$]Host-->https://example.com --d
24
+
25
+
26
+ #added new check ip#
27
+
28
+
29
+ --l to use need internet connection
30
+
31
+ #added help hint#
32
+
33
+
34
+ --h
@@ -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.8"
3
3
  import socket
4
4
  from art import tprint
5
5
  from datetime import datetime
@@ -69,11 +69,11 @@ 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 "--h" in host:
75
+ print("Host:|--l,host --i,host --d|")
76
+ continue
77
77
  if "--i" in host:
78
78
  host=host.strip("--i").strip()
79
79
  print("".center(60,"-"))
@@ -81,7 +81,7 @@ while Run_now:
81
81
  hostname=socket.gethostbyaddr(host)
82
82
  print(f"Host:{hostname[0]}")
83
83
  except:
84
- hostname="None"
84
+ hostname="Undefined"
85
85
  print(f"Host:{hostname}")
86
86
  try:
87
87
  print(f"IP:{socket.gethostbyname(host)}")
@@ -188,6 +188,12 @@ while Run_now:
188
188
  print(local)
189
189
  continue
190
190
  port_user=input(f"{colored('[$]','green')}Port-->")
191
+ if "--v" in port_user:
192
+ print(f"Build_{__version__}")
193
+ continue
194
+ if "--h" in port_user:
195
+ print("Port:|--s port,--a,--t|")
196
+ continue
191
197
  if port_user == "":
192
198
  while True:
193
199
  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