nmaping 1.7__tar.gz → 1.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.
nmaping-1.9/PKG-INFO ADDED
@@ -0,0 +1,105 @@
1
+ Metadata-Version: 2.4
2
+ Name: nmaping
3
+ Version: 1.9
4
+ Summary: An automation and network scanning utility tool.
5
+ Author-email: "Mr. Tan" <mrtanvai@gmail.com>
6
+ License: Custom License
7
+ Project-URL: Homepage, https://github.com/Mr74nX/nmaping
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: POSIX :: Linux
10
+ Requires-Python: >=3.13
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: requests
13
+
14
+ # 🚀 Nmaping - Python Nmap Automation Tool
15
+
16
+ A powerful, safe-by-default **Nmap scanning toolkit** built with Python for network reconnaissance, port scanning, and security auditing.
17
+
18
+ Developed by **Mr Tan**, this tool wraps complex Nmap commands into a simple, interactive, colorful CLI — built for ethical hackers, penetration testers, and cybersecurity learners working on systems they own or are authorized to test.
19
+
20
+ ---
21
+
22
+ ## ⚡ Key Features
23
+
24
+ - 🧠 **20+ Automated Nmap Scan Modes** — SYN, TCP connect, version, OS, vuln, firewall, Xmas, FIN, Null, and more
25
+ - ⚡ **Timing Control** (`-T0` to `-T5`) for stealth vs. speed
26
+ - 🚀 **Parallel Batch Scanning** — scan multiple targets concurrently (up to 10 workers) with `--min-rate` tuning for speed
27
+ - 🗂️ **Scan History Log** — every scan is recorded (target, type, timestamp, output file) for later review
28
+ - 🔁 **Scan Comparison / Diff** — compare two saved scans to see exactly what changed between runs
29
+ - 🧩 **Custom NSE Script Runner** — run any Nmap script by name (e.g. `http-title`, `ssl-cert`) with input validation
30
+ - 🌐 **CIDR Subnet Discovery** — quick host-discovery sweep across a whole subnet
31
+ - 🧠 **Smart Result Caching** — warns before re-scanning a target scanned in the last 30 minutes
32
+ - 🔐 **Authorization Gate** — requires explicit confirmation of ownership/permission before every scan
33
+ - 🛡️ **Hardened Execution** — targets and ports are validated and scans run via `subprocess` (no shell injection risk)
34
+ - 🎨 Interactive colorful CLI interface
35
+ - 🔄 Auto Update Checker (GitHub Sync)
36
+ - 🌐 Cross-platform (Linux & Windows)
37
+
38
+ ---
39
+
40
+ ## 🔍 Supported Scan Types
41
+
42
+ - SYN Scan
43
+ - TCP Connect Scan
44
+ - Version Detection
45
+ - OS Detection
46
+ - Aggressive Scan
47
+ - Vulnerability Scan (`--script vuln`)
48
+ - Custom NSE Script Scan
49
+ - Firewall Detection / ACK Scan
50
+ - Xmas / FIN / Null Scans
51
+ - Ping / No-Ping Scans
52
+ - Traceroute
53
+ - Top 1000 Ports / All Ports / Specific Port / UDP Ports
54
+ - Batch Scan (multiple targets, parallel)
55
+ - CIDR Subnet Host Discovery
56
+ - Full Combined Scan
57
+
58
+ ---
59
+
60
+ ## ⏱️ Timing Levels
61
+
62
+ | Mode | Flag | Description |
63
+ |------|------|-------------|
64
+ | Paranoid | `-T0` | Maximum stealth |
65
+ | Sneaky | `-T1` | Low detection risk |
66
+ | Polite | `-T2` | Light usage |
67
+ | Normal | `-T3` | Default mode |
68
+ | Aggressive | `-T4` | Fast scanning |
69
+ | Insane | `-T5` | Very fast (lab only) |
70
+
71
+ ---
72
+
73
+ ## ⚙️ Requirements
74
+
75
+ - Python 3.8+
76
+ - [Nmap](https://nmap.org/download.html) installed and available on your system `PATH`
77
+ - `requests` (for update checks)
78
+
79
+ ```bash
80
+ pip install nmaping
81
+ ```
82
+
83
+ ---
84
+
85
+ ## 🖥️ Usage
86
+
87
+ ```bash
88
+ python3 -m nmaping
89
+ ```
90
+
91
+ Follow the on-screen menu to pick a scan type, enter your target, confirm authorization, and choose a timing template. Results are saved automatically to `scan_results/`.
92
+
93
+ ---
94
+
95
+ ## ⚠️ Legal & Ethical Use
96
+
97
+ This tool is intended **strictly for authorized security testing** — scanning systems you own, or systems you have **explicit written permission** to test (e.g. a client engagement, CTF, or personal lab). Unauthorized scanning of networks or systems you don't control may violate computer-crime laws (such as the U.S. CFAA, UK Computer Misuse Act, or equivalent local laws) even when no exploit is used.
98
+
99
+ Nmaping includes a built-in authorization confirmation step before every scan, but that step relies on the user acting in good faith. **You are solely responsible for ensuring you have permission before scanning any target.**
100
+
101
+ ---
102
+
103
+ ## 📜 License
104
+
105
+ Educational and ethical use only. See `LICENSE` for details.
nmaping-1.9/README.md ADDED
@@ -0,0 +1,92 @@
1
+ # 🚀 Nmaping - Python Nmap Automation Tool
2
+
3
+ A powerful, safe-by-default **Nmap scanning toolkit** built with Python for network reconnaissance, port scanning, and security auditing.
4
+
5
+ Developed by **Mr Tan**, this tool wraps complex Nmap commands into a simple, interactive, colorful CLI — built for ethical hackers, penetration testers, and cybersecurity learners working on systems they own or are authorized to test.
6
+
7
+ ---
8
+
9
+ ## ⚡ Key Features
10
+
11
+ - 🧠 **20+ Automated Nmap Scan Modes** — SYN, TCP connect, version, OS, vuln, firewall, Xmas, FIN, Null, and more
12
+ - ⚡ **Timing Control** (`-T0` to `-T5`) for stealth vs. speed
13
+ - 🚀 **Parallel Batch Scanning** — scan multiple targets concurrently (up to 10 workers) with `--min-rate` tuning for speed
14
+ - 🗂️ **Scan History Log** — every scan is recorded (target, type, timestamp, output file) for later review
15
+ - 🔁 **Scan Comparison / Diff** — compare two saved scans to see exactly what changed between runs
16
+ - 🧩 **Custom NSE Script Runner** — run any Nmap script by name (e.g. `http-title`, `ssl-cert`) with input validation
17
+ - 🌐 **CIDR Subnet Discovery** — quick host-discovery sweep across a whole subnet
18
+ - 🧠 **Smart Result Caching** — warns before re-scanning a target scanned in the last 30 minutes
19
+ - 🔐 **Authorization Gate** — requires explicit confirmation of ownership/permission before every scan
20
+ - 🛡️ **Hardened Execution** — targets and ports are validated and scans run via `subprocess` (no shell injection risk)
21
+ - 🎨 Interactive colorful CLI interface
22
+ - 🔄 Auto Update Checker (GitHub Sync)
23
+ - 🌐 Cross-platform (Linux & Windows)
24
+
25
+ ---
26
+
27
+ ## 🔍 Supported Scan Types
28
+
29
+ - SYN Scan
30
+ - TCP Connect Scan
31
+ - Version Detection
32
+ - OS Detection
33
+ - Aggressive Scan
34
+ - Vulnerability Scan (`--script vuln`)
35
+ - Custom NSE Script Scan
36
+ - Firewall Detection / ACK Scan
37
+ - Xmas / FIN / Null Scans
38
+ - Ping / No-Ping Scans
39
+ - Traceroute
40
+ - Top 1000 Ports / All Ports / Specific Port / UDP Ports
41
+ - Batch Scan (multiple targets, parallel)
42
+ - CIDR Subnet Host Discovery
43
+ - Full Combined Scan
44
+
45
+ ---
46
+
47
+ ## ⏱️ Timing Levels
48
+
49
+ | Mode | Flag | Description |
50
+ |------|------|-------------|
51
+ | Paranoid | `-T0` | Maximum stealth |
52
+ | Sneaky | `-T1` | Low detection risk |
53
+ | Polite | `-T2` | Light usage |
54
+ | Normal | `-T3` | Default mode |
55
+ | Aggressive | `-T4` | Fast scanning |
56
+ | Insane | `-T5` | Very fast (lab only) |
57
+
58
+ ---
59
+
60
+ ## ⚙️ Requirements
61
+
62
+ - Python 3.8+
63
+ - [Nmap](https://nmap.org/download.html) installed and available on your system `PATH`
64
+ - `requests` (for update checks)
65
+
66
+ ```bash
67
+ pip install nmaping
68
+ ```
69
+
70
+ ---
71
+
72
+ ## 🖥️ Usage
73
+
74
+ ```bash
75
+ python3 -m nmaping
76
+ ```
77
+
78
+ Follow the on-screen menu to pick a scan type, enter your target, confirm authorization, and choose a timing template. Results are saved automatically to `scan_results/`.
79
+
80
+ ---
81
+
82
+ ## ⚠️ Legal & Ethical Use
83
+
84
+ This tool is intended **strictly for authorized security testing** — scanning systems you own, or systems you have **explicit written permission** to test (e.g. a client engagement, CTF, or personal lab). Unauthorized scanning of networks or systems you don't control may violate computer-crime laws (such as the U.S. CFAA, UK Computer Misuse Act, or equivalent local laws) even when no exploit is used.
85
+
86
+ Nmaping includes a built-in authorization confirmation step before every scan, but that step relies on the user acting in good faith. **You are solely responsible for ensuring you have permission before scanning any target.**
87
+
88
+ ---
89
+
90
+ ## 📜 License
91
+
92
+ Educational and ethical use only. See `LICENSE` for details.
@@ -0,0 +1,105 @@
1
+ Metadata-Version: 2.4
2
+ Name: nmaping
3
+ Version: 1.9
4
+ Summary: An automation and network scanning utility tool.
5
+ Author-email: "Mr. Tan" <mrtanvai@gmail.com>
6
+ License: Custom License
7
+ Project-URL: Homepage, https://github.com/Mr74nX/nmaping
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: POSIX :: Linux
10
+ Requires-Python: >=3.13
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: requests
13
+
14
+ # 🚀 Nmaping - Python Nmap Automation Tool
15
+
16
+ A powerful, safe-by-default **Nmap scanning toolkit** built with Python for network reconnaissance, port scanning, and security auditing.
17
+
18
+ Developed by **Mr Tan**, this tool wraps complex Nmap commands into a simple, interactive, colorful CLI — built for ethical hackers, penetration testers, and cybersecurity learners working on systems they own or are authorized to test.
19
+
20
+ ---
21
+
22
+ ## ⚡ Key Features
23
+
24
+ - 🧠 **20+ Automated Nmap Scan Modes** — SYN, TCP connect, version, OS, vuln, firewall, Xmas, FIN, Null, and more
25
+ - ⚡ **Timing Control** (`-T0` to `-T5`) for stealth vs. speed
26
+ - 🚀 **Parallel Batch Scanning** — scan multiple targets concurrently (up to 10 workers) with `--min-rate` tuning for speed
27
+ - 🗂️ **Scan History Log** — every scan is recorded (target, type, timestamp, output file) for later review
28
+ - 🔁 **Scan Comparison / Diff** — compare two saved scans to see exactly what changed between runs
29
+ - 🧩 **Custom NSE Script Runner** — run any Nmap script by name (e.g. `http-title`, `ssl-cert`) with input validation
30
+ - 🌐 **CIDR Subnet Discovery** — quick host-discovery sweep across a whole subnet
31
+ - 🧠 **Smart Result Caching** — warns before re-scanning a target scanned in the last 30 minutes
32
+ - 🔐 **Authorization Gate** — requires explicit confirmation of ownership/permission before every scan
33
+ - 🛡️ **Hardened Execution** — targets and ports are validated and scans run via `subprocess` (no shell injection risk)
34
+ - 🎨 Interactive colorful CLI interface
35
+ - 🔄 Auto Update Checker (GitHub Sync)
36
+ - 🌐 Cross-platform (Linux & Windows)
37
+
38
+ ---
39
+
40
+ ## 🔍 Supported Scan Types
41
+
42
+ - SYN Scan
43
+ - TCP Connect Scan
44
+ - Version Detection
45
+ - OS Detection
46
+ - Aggressive Scan
47
+ - Vulnerability Scan (`--script vuln`)
48
+ - Custom NSE Script Scan
49
+ - Firewall Detection / ACK Scan
50
+ - Xmas / FIN / Null Scans
51
+ - Ping / No-Ping Scans
52
+ - Traceroute
53
+ - Top 1000 Ports / All Ports / Specific Port / UDP Ports
54
+ - Batch Scan (multiple targets, parallel)
55
+ - CIDR Subnet Host Discovery
56
+ - Full Combined Scan
57
+
58
+ ---
59
+
60
+ ## ⏱️ Timing Levels
61
+
62
+ | Mode | Flag | Description |
63
+ |------|------|-------------|
64
+ | Paranoid | `-T0` | Maximum stealth |
65
+ | Sneaky | `-T1` | Low detection risk |
66
+ | Polite | `-T2` | Light usage |
67
+ | Normal | `-T3` | Default mode |
68
+ | Aggressive | `-T4` | Fast scanning |
69
+ | Insane | `-T5` | Very fast (lab only) |
70
+
71
+ ---
72
+
73
+ ## ⚙️ Requirements
74
+
75
+ - Python 3.8+
76
+ - [Nmap](https://nmap.org/download.html) installed and available on your system `PATH`
77
+ - `requests` (for update checks)
78
+
79
+ ```bash
80
+ pip install nmaping
81
+ ```
82
+
83
+ ---
84
+
85
+ ## 🖥️ Usage
86
+
87
+ ```bash
88
+ python3 -m nmaping
89
+ ```
90
+
91
+ Follow the on-screen menu to pick a scan type, enter your target, confirm authorization, and choose a timing template. Results are saved automatically to `scan_results/`.
92
+
93
+ ---
94
+
95
+ ## ⚠️ Legal & Ethical Use
96
+
97
+ This tool is intended **strictly for authorized security testing** — scanning systems you own, or systems you have **explicit written permission** to test (e.g. a client engagement, CTF, or personal lab). Unauthorized scanning of networks or systems you don't control may violate computer-crime laws (such as the U.S. CFAA, UK Computer Misuse Act, or equivalent local laws) even when no exploit is used.
98
+
99
+ Nmaping includes a built-in authorization confirmation step before every scan, but that step relies on the user acting in good faith. **You are solely responsible for ensuring you have permission before scanning any target.**
100
+
101
+ ---
102
+
103
+ ## 📜 License
104
+
105
+ Educational and ethical use only. See `LICENSE` for details.
@@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "nmaping"
7
- version = "1.7"
7
+ version = "1.9"
8
8
  authors = [
9
- { name="Abu Tanim", email="mrtanvai@gmail.com" },
9
+ { name="Mr. Tan", email="mrtanvai@gmail.com" },
10
10
  ]
11
11
  description = "An automation and network scanning utility tool."
12
12
  readme = "README.md"
@@ -22,7 +22,7 @@ classifiers = [
22
22
  ]
23
23
 
24
24
  [project.urls]
25
- Homepage = "https://github.com/mrtan-official/Nmap-scaning"
25
+ Homepage = "https://github.com/Mr74nX/nmaping"
26
26
 
27
27
  [tool.setuptools.packages.find]
28
28
  where = ["."]
nmaping-1.7/PKG-INFO DELETED
@@ -1,84 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: nmaping
3
- Version: 1.7
4
- Summary: An automation and network scanning utility tool.
5
- Author-email: Abu Tanim <mrtanvai@gmail.com>
6
- License: Custom License
7
- Project-URL: Homepage, https://github.com/mrtan-official/Nmap-scaning
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Operating System :: POSIX :: Linux
10
- Requires-Python: >=3.13
11
- Description-Content-Type: text/markdown
12
- Requires-Dist: requests
13
-
14
- # 🚀 Nmaping - Python Nmap Automation Tool
15
-
16
- A powerful and automated **Nmap scanning toolkit** built with Python for network reconnaissance, port scanning, and security auditing.
17
-
18
- Developed by **Mr Tan**, this tool converts complex Nmap commands into a simple interactive CLI interface for ethical hackers, penetration testers, and cybersecurity learners.
19
-
20
- ---
21
-
22
- ## ⚡ Key Features
23
-
24
- - 🧠 16+ Automated Nmap Scan Modes
25
- - ⚡ Timing Control (`-T0` to `-T5`) for stealth & speed
26
- - 🎨 Interactive Colorful CLI Interface
27
- - 🔄 Auto Update Checker (GitHub Sync)
28
- - 🌐 Cross-platform (Linux & Windows)
29
- - 🛡️ Security & penetration testing tool
30
-
31
- ---
32
-
33
- ## 🔍 Supported Scan Types
34
-
35
- - SYN Scan
36
- - TCP Connect Scan
37
- - Version Detection
38
- - OS Detection
39
- - Aggressive Scan
40
- - Vulnerability Scan (`--script vuln`)
41
- - Firewall / IDS Evasion
42
- - Fast Scan Modes
43
-
44
- ---
45
-
46
- ## ⏱️ Timing Levels
47
-
48
- | Mode | Flag | Description |
49
- |------|------|-------------|
50
- | Paranoid | `-T0` | Maximum stealth |
51
- | Sneaky | `-T1` | Low detection risk |
52
- | Polite | `-T2` | Light usage |
53
- | Normal | `-T3` | Default mode |
54
- | Aggressive | `-T4` | Fast scanning |
55
- | Insane | `-T5` | Very fast (lab only) |
56
-
57
- ---
58
-
59
- ## ⚙️ Requirements
60
-
61
- - Python 3.x
62
- - Nmaping installed
63
- ```bash
64
- pipx install nmaping
65
- ```
66
-
67
- ---
68
-
69
- # 🚀 2. PyPI DESCRIPTION (paste this in setup / PyPI long description)
70
-
71
- txt id="pypi_desc"
72
- Nmaping is a powerful Python-based Nmap automation toolkit designed for network scanning, port analysis, and security auditing.
73
-
74
- It simplifies complex Nmap commands into an interactive CLI interface, making it easier for ethical hackers, penetration testers, and cybersecurity learners to perform advanced scans.
75
-
76
- Features:
77
- - 20+ automated scan modes
78
- - Nmap timing control (-T0 to -T5)
79
- - Vulnerability scanning support
80
- - OS and service detection
81
- - Fast and aggressive scan options
82
- - Cross-platform support (Linux & Windows)
83
-
84
- This project is intended for educational and ethical use only.
nmaping-1.7/README.md DELETED
@@ -1,71 +0,0 @@
1
- # 🚀 Nmaping - Python Nmap Automation Tool
2
-
3
- A powerful and automated **Nmap scanning toolkit** built with Python for network reconnaissance, port scanning, and security auditing.
4
-
5
- Developed by **Mr Tan**, this tool converts complex Nmap commands into a simple interactive CLI interface for ethical hackers, penetration testers, and cybersecurity learners.
6
-
7
- ---
8
-
9
- ## ⚡ Key Features
10
-
11
- - 🧠 16+ Automated Nmap Scan Modes
12
- - ⚡ Timing Control (`-T0` to `-T5`) for stealth & speed
13
- - 🎨 Interactive Colorful CLI Interface
14
- - 🔄 Auto Update Checker (GitHub Sync)
15
- - 🌐 Cross-platform (Linux & Windows)
16
- - 🛡️ Security & penetration testing tool
17
-
18
- ---
19
-
20
- ## 🔍 Supported Scan Types
21
-
22
- - SYN Scan
23
- - TCP Connect Scan
24
- - Version Detection
25
- - OS Detection
26
- - Aggressive Scan
27
- - Vulnerability Scan (`--script vuln`)
28
- - Firewall / IDS Evasion
29
- - Fast Scan Modes
30
-
31
- ---
32
-
33
- ## ⏱️ Timing Levels
34
-
35
- | Mode | Flag | Description |
36
- |------|------|-------------|
37
- | Paranoid | `-T0` | Maximum stealth |
38
- | Sneaky | `-T1` | Low detection risk |
39
- | Polite | `-T2` | Light usage |
40
- | Normal | `-T3` | Default mode |
41
- | Aggressive | `-T4` | Fast scanning |
42
- | Insane | `-T5` | Very fast (lab only) |
43
-
44
- ---
45
-
46
- ## ⚙️ Requirements
47
-
48
- - Python 3.x
49
- - Nmaping installed
50
- ```bash
51
- pipx install nmaping
52
- ```
53
-
54
- ---
55
-
56
- # 🚀 2. PyPI DESCRIPTION (paste this in setup / PyPI long description)
57
-
58
- txt id="pypi_desc"
59
- Nmaping is a powerful Python-based Nmap automation toolkit designed for network scanning, port analysis, and security auditing.
60
-
61
- It simplifies complex Nmap commands into an interactive CLI interface, making it easier for ethical hackers, penetration testers, and cybersecurity learners to perform advanced scans.
62
-
63
- Features:
64
- - 20+ automated scan modes
65
- - Nmap timing control (-T0 to -T5)
66
- - Vulnerability scanning support
67
- - OS and service detection
68
- - Fast and aggressive scan options
69
- - Cross-platform support (Linux & Windows)
70
-
71
- This project is intended for educational and ethical use only.
@@ -1,84 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: nmaping
3
- Version: 1.7
4
- Summary: An automation and network scanning utility tool.
5
- Author-email: Abu Tanim <mrtanvai@gmail.com>
6
- License: Custom License
7
- Project-URL: Homepage, https://github.com/mrtan-official/Nmap-scaning
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: Operating System :: POSIX :: Linux
10
- Requires-Python: >=3.13
11
- Description-Content-Type: text/markdown
12
- Requires-Dist: requests
13
-
14
- # 🚀 Nmaping - Python Nmap Automation Tool
15
-
16
- A powerful and automated **Nmap scanning toolkit** built with Python for network reconnaissance, port scanning, and security auditing.
17
-
18
- Developed by **Mr Tan**, this tool converts complex Nmap commands into a simple interactive CLI interface for ethical hackers, penetration testers, and cybersecurity learners.
19
-
20
- ---
21
-
22
- ## ⚡ Key Features
23
-
24
- - 🧠 16+ Automated Nmap Scan Modes
25
- - ⚡ Timing Control (`-T0` to `-T5`) for stealth & speed
26
- - 🎨 Interactive Colorful CLI Interface
27
- - 🔄 Auto Update Checker (GitHub Sync)
28
- - 🌐 Cross-platform (Linux & Windows)
29
- - 🛡️ Security & penetration testing tool
30
-
31
- ---
32
-
33
- ## 🔍 Supported Scan Types
34
-
35
- - SYN Scan
36
- - TCP Connect Scan
37
- - Version Detection
38
- - OS Detection
39
- - Aggressive Scan
40
- - Vulnerability Scan (`--script vuln`)
41
- - Firewall / IDS Evasion
42
- - Fast Scan Modes
43
-
44
- ---
45
-
46
- ## ⏱️ Timing Levels
47
-
48
- | Mode | Flag | Description |
49
- |------|------|-------------|
50
- | Paranoid | `-T0` | Maximum stealth |
51
- | Sneaky | `-T1` | Low detection risk |
52
- | Polite | `-T2` | Light usage |
53
- | Normal | `-T3` | Default mode |
54
- | Aggressive | `-T4` | Fast scanning |
55
- | Insane | `-T5` | Very fast (lab only) |
56
-
57
- ---
58
-
59
- ## ⚙️ Requirements
60
-
61
- - Python 3.x
62
- - Nmaping installed
63
- ```bash
64
- pipx install nmaping
65
- ```
66
-
67
- ---
68
-
69
- # 🚀 2. PyPI DESCRIPTION (paste this in setup / PyPI long description)
70
-
71
- txt id="pypi_desc"
72
- Nmaping is a powerful Python-based Nmap automation toolkit designed for network scanning, port analysis, and security auditing.
73
-
74
- It simplifies complex Nmap commands into an interactive CLI interface, making it easier for ethical hackers, penetration testers, and cybersecurity learners to perform advanced scans.
75
-
76
- Features:
77
- - 20+ automated scan modes
78
- - Nmap timing control (-T0 to -T5)
79
- - Vulnerability scanning support
80
- - OS and service detection
81
- - Fast and aggressive scan options
82
- - Cross-platform support (Linux & Windows)
83
-
84
- This project is intended for educational and ethical use only.
File without changes
File without changes