Skip to content

Commit 019d51f

Browse files
authored
1.1 Version
1 parent 3fe772b commit 019d51f

6 files changed

+331
-141
lines changed

CHANGELOG.md

+27-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
-sP | Scan defined port
1717
- -d | Discover hosts in the network
1818
- -p | Protocol to use in the scan
19-
- -i | Interface to use in the scan
19+
- -i | Interface to use in the scan
20+
21+
## [1.1] - 2020-05-24
22+
### Added
23+
Improved port scans, now using scapy, and having 3 scan methods, TCP Connect, TCP Stealth, and UDP.
24+
### Modified
25+
I modified the entire script, leaving the functions in a class, better structuring the project, being possible until it was imported and used by another script.
26+
## Arguments
27+
- -sC | Scan common ports
28+
- -p | Protocol to use in the scan
29+
- -i | Interface to use
30+
- -t | Timeout to each request
31+
- -st | Use stealth scan method (TCP)
32+
- -sA | Scan all ports
33+
- -p | Protocol to use in the scan
34+
- -i | Interface to use
35+
- -t | Timeout to each request
36+
- -st | Use stealth scan method (TCP)
37+
- -sP | Scan a range ports
38+
- -p | Protocol to use in the scan
39+
- -i | Interface to use
40+
- -t | Timeout to each request
41+
- -st | Use stealth scan method (TCP)
42+
- -sO | Scan OS of a target
43+
- -d | Discover hosts in the network
44+
- -p | Protocol to use in the scan
45+
- -i | Interface to use

README.md

+17-6
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,28 @@ Clone this repository
3838

3939
## Arguments
4040
- -sC | Scan common ports
41+
- -p | Protocol to use in the scan
42+
- -i | Interface to use
43+
- -t | Timeout to each request
44+
- -st | Use stealth scan method (TCP)
4145
- -sA | Scan all ports
42-
- -sO | Scan OS
43-
- -i | Interface to use in the scan
44-
- -sP | Scan defined port
46+
- -p | Protocol to use in the scan
47+
- -i | Interface to use
48+
- -t | Timeout to each request
49+
- -st | Use stealth scan method (TCP)
50+
- -sP | Scan a range ports
51+
- -p | Protocol to use in the scan
52+
- -i | Interface to use
53+
- -t | Timeout to each request
54+
- -st | Use stealth scan method (TCP)
55+
- -sO | Scan OS of a target
4556
- -d | Discover hosts in the network
4657
- -p | Protocol to use in the scan
47-
- -i | Interface to use in the scan
58+
- -i | Interface to use
4859

4960
## OS Support
50-
- **Windows** :heavy_check_mark:
51-
- **Linux** :heavy_check_mark:
61+
- **Windows** :heavy_check_mark:
62+
- **Linux** :heavy_check_mark:
5263
- **Mac** :question:
5364

5465
## License

0 commit comments

Comments
 (0)