SnakeScan 1.3.8__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.
|
|
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
|
|
@@ -13,36 +13,17 @@ Project-URL: Homepage, https://github.com/Den-Ram/SnakeScan
|
|
|
13
13
|
Project-URL: Repository, https://github.com/Den-Ram/SnakeScan
|
|
14
14
|
|
|
15
15
|
##SnakeScan##
|
|
16
|
-
|
|
17
|
-
|
|
18
16
|
import SnakeScan
|
|
19
|
-
----------------------------
|
|
20
|
-
and use module to scan port
|
|
21
17
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
#added new check all port search#
|
|
18
|
+
and use module to scan port
|
|
25
19
|
|
|
20
|
+
For full compatibility, I recommend using python 3.x.x
|
|
26
21
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
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#
|
|
46
|
-
|
|
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
|
|
47
29
|
|
|
48
|
-
--h
|
|
@@ -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.
|
|
2
|
+
__version__="1.3.9"
|
|
3
3
|
import socket
|
|
4
4
|
from art import tprint
|
|
5
5
|
from datetime import datetime
|
|
@@ -71,6 +71,9 @@ tprint("SnakeScan")
|
|
|
71
71
|
print("–"*60)
|
|
72
72
|
while Run_now:
|
|
73
73
|
host=input(f"{colored('[$]','green')}Host-->")
|
|
74
|
+
if "--v" in host:
|
|
75
|
+
print(f"Build_{__version__}")
|
|
76
|
+
continue
|
|
74
77
|
if "--h" in host:
|
|
75
78
|
print("Host:|--l,host --i,host --d|")
|
|
76
79
|
continue
|
snakescan-1.3.8/README.md
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
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
|
|
File without changes
|
|
File without changes
|