SnakeScan 1.5.1__tar.gz → 1.5.2__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.5.
|
|
3
|
+
Version: 1.5.2
|
|
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
|
|
@@ -21,30 +21,9 @@ import SnakeScan
|
|
|
21
21
|
SnakeScan.run()
|
|
22
22
|
```
|
|
23
23
|
## Help
|
|
24
|
-
|
|
25
24
|
- --l need internet to view public ip you device
|
|
26
25
|
- --t threading port search
|
|
27
26
|
- --d dos
|
|
28
27
|
- --s single port search
|
|
29
28
|
- --i information about host
|
|
30
29
|
- --h in host /--h port in host
|
|
31
|
-
|
|
32
|
-
## Added class Watcher:
|
|
33
|
-
```
|
|
34
|
-
for SnakeScan import Watcher
|
|
35
|
-
Watcher(host:str,port:int)
|
|
36
|
-
```
|
|
37
|
-
##Changelog
|
|
38
|
-
**v1.5.1**
|
|
39
|
-
fixed dos and --t mode
|
|
40
|
-
## Added more imformation about host:
|
|
41
|
-
```
|
|
42
|
-
[$]Host-->www.example.com --i
|
|
43
|
-
Type IP: <class 'ipaddress.IPv4Address'>
|
|
44
|
-
Version IP: 4
|
|
45
|
-
Network: 2.21.240.0/24
|
|
46
|
-
Subnet mask: 255.255.255.0
|
|
47
|
-
Host:a2-21-240-137.deploy.static
|
|
48
|
-
akamaitechnologies.com
|
|
49
|
-
IP:2.21.240.137
|
|
50
|
-
```
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# SnakeScan
|
|
2
|
+

|
|
3
|
+

|
|
4
|
+

|
|
5
|
+
```
|
|
6
|
+
import SnakeScan
|
|
7
|
+
SnakeScan.run()
|
|
8
|
+
```
|
|
9
|
+
## Help
|
|
10
|
+
- --l need internet to view public ip you device
|
|
11
|
+
- --t threading port search
|
|
12
|
+
- --d dos
|
|
13
|
+
- --s single port search
|
|
14
|
+
- --i information about host
|
|
15
|
+
- --h in host /--h port in host
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"""Module SnakeScan using to scan port or ports in you device or other devices"""
|
|
2
|
-
__version__="1.5.
|
|
2
|
+
__version__="1.5.2"
|
|
3
3
|
import socket
|
|
4
4
|
import ipaddress
|
|
5
5
|
from art import tprint
|
|
@@ -323,5 +323,4 @@ def run():
|
|
|
323
323
|
portsclosed=0
|
|
324
324
|
print(f"Open{colored('|√|','green')}:{portsopen}")
|
|
325
325
|
portsopen=0
|
|
326
|
-
print("-"*60)
|
|
327
|
-
run()
|
|
326
|
+
print("-"*60)
|
snakescan-1.5.1/README.md
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
# SnakeScan
|
|
2
|
-

|
|
3
|
-

|
|
4
|
-

|
|
5
|
-
```
|
|
6
|
-
import SnakeScan
|
|
7
|
-
SnakeScan.run()
|
|
8
|
-
```
|
|
9
|
-
## Help
|
|
10
|
-
|
|
11
|
-
- --l need internet to view public ip you device
|
|
12
|
-
- --t threading port search
|
|
13
|
-
- --d dos
|
|
14
|
-
- --s single port search
|
|
15
|
-
- --i information about host
|
|
16
|
-
- --h in host /--h port in host
|
|
17
|
-
|
|
18
|
-
## Added class Watcher:
|
|
19
|
-
```
|
|
20
|
-
for SnakeScan import Watcher
|
|
21
|
-
Watcher(host:str,port:int)
|
|
22
|
-
```
|
|
23
|
-
##Changelog
|
|
24
|
-
**v1.5.1**
|
|
25
|
-
fixed dos and --t mode
|
|
26
|
-
## Added more imformation about host:
|
|
27
|
-
```
|
|
28
|
-
[$]Host-->www.example.com --i
|
|
29
|
-
Type IP: <class 'ipaddress.IPv4Address'>
|
|
30
|
-
Version IP: 4
|
|
31
|
-
Network: 2.21.240.0/24
|
|
32
|
-
Subnet mask: 255.255.255.0
|
|
33
|
-
Host:a2-21-240-137.deploy.static
|
|
34
|
-
akamaitechnologies.com
|
|
35
|
-
IP:2.21.240.137
|
|
36
|
-
```
|
|
File without changes
|
|
File without changes
|