nmaping 1.5__tar.gz → 1.7__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.7/PKG-INFO +84 -0
- nmaping-1.7/README.md +71 -0
- nmaping-1.7/nmaping.egg-info/PKG-INFO +84 -0
- {nmaping-1.5 → nmaping-1.7}/pyproject.toml +1 -2
- nmaping-1.5/PKG-INFO +0 -54
- nmaping-1.5/README.md +0 -41
- nmaping-1.5/nmaping.egg-info/PKG-INFO +0 -54
- {nmaping-1.5 → nmaping-1.7}/nmaping/__init__.py +0 -0
- {nmaping-1.5 → nmaping-1.7}/nmaping/nmap.cpython-313-x86_64-linux-gnu.so +0 -0
- {nmaping-1.5 → nmaping-1.7}/nmaping.egg-info/SOURCES.txt +0 -0
- {nmaping-1.5 → nmaping-1.7}/nmaping.egg-info/dependency_links.txt +0 -0
- {nmaping-1.5 → nmaping-1.7}/nmaping.egg-info/entry_points.txt +0 -0
- {nmaping-1.5 → nmaping-1.7}/nmaping.egg-info/requires.txt +0 -0
- {nmaping-1.5 → nmaping-1.7}/nmaping.egg-info/top_level.txt +0 -0
- {nmaping-1.5 → nmaping-1.7}/setup.cfg +0 -0
nmaping-1.7/PKG-INFO
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
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
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
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.
|
|
@@ -0,0 +1,84 @@
|
|
|
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.
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "nmaping"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.7"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="Abu Tanim", email="mrtanvai@gmail.com" },
|
|
10
10
|
]
|
|
@@ -33,4 +33,3 @@ nmaping = ["*.so"]
|
|
|
33
33
|
|
|
34
34
|
[project.scripts]
|
|
35
35
|
nmaping = "nmaping.nmap:menu"
|
|
36
|
-
|
nmaping-1.5/PKG-INFO
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: nmaping
|
|
3
|
-
Version: 1.5
|
|
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
|
-
# Nmap-scaning
|
|
15
|
-
This code write by Mr Tan.
|
|
16
|
-
|
|
17
|
-
An interactive and custom-built Nmap automation tool, completely designed and coded by me in Python to streamline network scanning and security assessments.
|
|
18
|
-
|
|
19
|
-
A powerful, interactive, and automated network scanning toolkit built with Python and Nmap. This tool simplifies complex network security auditing, vulnerability scanning, and port mapping, offering advanced speed control features for ethical hackers and penetration testers.
|
|
20
|
-
|
|
21
|
-
---
|
|
22
|
-
|
|
23
|
-
## 🛠️ Key Features
|
|
24
|
-
|
|
25
|
-
- **Comprehensive Scanning Modes**: Supports 16 different scan types including SYN, Version Detection, Vulnerability Assessment (`--script vuln`), OS Detection, Aggressive Scans, Firewall/IDS Detection, and more.
|
|
26
|
-
- **Advanced Timing Controls**: Integrated with Nmap Timing Templates (`-T0` to `-T5`) allowing you to balance speed and stealth (Bypassing firewalls or performing rapid audits).
|
|
27
|
-
- **Interactive Multi-Color CLI**: Beautiful, clean, and color-coded user interface designed for readability and professional output.
|
|
28
|
-
- **Live Version Checker**: Automatically synchronizes and checks for updates with the GitHub source file.
|
|
29
|
-
- **Cross-Platform Compatibility**: Fully optimized for Linux (Kali, Ubuntu) and Windows environments.
|
|
30
|
-
|
|
31
|
-
---
|
|
32
|
-
|
|
33
|
-
## 🚀 Timing Templates Guide
|
|
34
|
-
|
|
35
|
-
This toolkit allows you to choose your scan intensity before every scan, giving you full control over performance and stealth:
|
|
36
|
-
|
|
37
|
-
| Mode | Template | Description |
|
|
38
|
-
| :--- | :---: | :--- |
|
|
39
|
-
| **Paranoid** | `-T0` | Very slow, minimal noise, best for bypassing strict IDS/Firewalls. |
|
|
40
|
-
| **Sneaky** | `-T1` | Slow, used to avoid detection during active monitoring. |
|
|
41
|
-
| **Polite** | `-T2` | Moderate speed, consumes very low bandwidth. |
|
|
42
|
-
| **Normal** | `-T3` | **Default Speed** - Balanced performance for standard networks. |
|
|
43
|
-
| **Aggressive**| `-T4` | Fast and highly recommended for faster security auditing. |
|
|
44
|
-
| **Insane** | `-T5` | Extremely fast, best for local lab testing (might drop packets). |
|
|
45
|
-
|
|
46
|
-
---
|
|
47
|
-
|
|
48
|
-
## 📋 Prerequisites
|
|
49
|
-
|
|
50
|
-
Make sure you have **Nmap** installed on your system before running this toolkit.
|
|
51
|
-
|
|
52
|
-
### For Linux (Kali/Ubuntu):
|
|
53
|
-
```bash
|
|
54
|
-
sudo apt update && sudo apt install nmap -y
|
nmaping-1.5/README.md
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
# Nmap-scaning
|
|
2
|
-
This code write by Mr Tan.
|
|
3
|
-
|
|
4
|
-
An interactive and custom-built Nmap automation tool, completely designed and coded by me in Python to streamline network scanning and security assessments.
|
|
5
|
-
|
|
6
|
-
A powerful, interactive, and automated network scanning toolkit built with Python and Nmap. This tool simplifies complex network security auditing, vulnerability scanning, and port mapping, offering advanced speed control features for ethical hackers and penetration testers.
|
|
7
|
-
|
|
8
|
-
---
|
|
9
|
-
|
|
10
|
-
## 🛠️ Key Features
|
|
11
|
-
|
|
12
|
-
- **Comprehensive Scanning Modes**: Supports 16 different scan types including SYN, Version Detection, Vulnerability Assessment (`--script vuln`), OS Detection, Aggressive Scans, Firewall/IDS Detection, and more.
|
|
13
|
-
- **Advanced Timing Controls**: Integrated with Nmap Timing Templates (`-T0` to `-T5`) allowing you to balance speed and stealth (Bypassing firewalls or performing rapid audits).
|
|
14
|
-
- **Interactive Multi-Color CLI**: Beautiful, clean, and color-coded user interface designed for readability and professional output.
|
|
15
|
-
- **Live Version Checker**: Automatically synchronizes and checks for updates with the GitHub source file.
|
|
16
|
-
- **Cross-Platform Compatibility**: Fully optimized for Linux (Kali, Ubuntu) and Windows environments.
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
## 🚀 Timing Templates Guide
|
|
21
|
-
|
|
22
|
-
This toolkit allows you to choose your scan intensity before every scan, giving you full control over performance and stealth:
|
|
23
|
-
|
|
24
|
-
| Mode | Template | Description |
|
|
25
|
-
| :--- | :---: | :--- |
|
|
26
|
-
| **Paranoid** | `-T0` | Very slow, minimal noise, best for bypassing strict IDS/Firewalls. |
|
|
27
|
-
| **Sneaky** | `-T1` | Slow, used to avoid detection during active monitoring. |
|
|
28
|
-
| **Polite** | `-T2` | Moderate speed, consumes very low bandwidth. |
|
|
29
|
-
| **Normal** | `-T3` | **Default Speed** - Balanced performance for standard networks. |
|
|
30
|
-
| **Aggressive**| `-T4` | Fast and highly recommended for faster security auditing. |
|
|
31
|
-
| **Insane** | `-T5` | Extremely fast, best for local lab testing (might drop packets). |
|
|
32
|
-
|
|
33
|
-
---
|
|
34
|
-
|
|
35
|
-
## 📋 Prerequisites
|
|
36
|
-
|
|
37
|
-
Make sure you have **Nmap** installed on your system before running this toolkit.
|
|
38
|
-
|
|
39
|
-
### For Linux (Kali/Ubuntu):
|
|
40
|
-
```bash
|
|
41
|
-
sudo apt update && sudo apt install nmap -y
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: nmaping
|
|
3
|
-
Version: 1.5
|
|
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
|
-
# Nmap-scaning
|
|
15
|
-
This code write by Mr Tan.
|
|
16
|
-
|
|
17
|
-
An interactive and custom-built Nmap automation tool, completely designed and coded by me in Python to streamline network scanning and security assessments.
|
|
18
|
-
|
|
19
|
-
A powerful, interactive, and automated network scanning toolkit built with Python and Nmap. This tool simplifies complex network security auditing, vulnerability scanning, and port mapping, offering advanced speed control features for ethical hackers and penetration testers.
|
|
20
|
-
|
|
21
|
-
---
|
|
22
|
-
|
|
23
|
-
## 🛠️ Key Features
|
|
24
|
-
|
|
25
|
-
- **Comprehensive Scanning Modes**: Supports 16 different scan types including SYN, Version Detection, Vulnerability Assessment (`--script vuln`), OS Detection, Aggressive Scans, Firewall/IDS Detection, and more.
|
|
26
|
-
- **Advanced Timing Controls**: Integrated with Nmap Timing Templates (`-T0` to `-T5`) allowing you to balance speed and stealth (Bypassing firewalls or performing rapid audits).
|
|
27
|
-
- **Interactive Multi-Color CLI**: Beautiful, clean, and color-coded user interface designed for readability and professional output.
|
|
28
|
-
- **Live Version Checker**: Automatically synchronizes and checks for updates with the GitHub source file.
|
|
29
|
-
- **Cross-Platform Compatibility**: Fully optimized for Linux (Kali, Ubuntu) and Windows environments.
|
|
30
|
-
|
|
31
|
-
---
|
|
32
|
-
|
|
33
|
-
## 🚀 Timing Templates Guide
|
|
34
|
-
|
|
35
|
-
This toolkit allows you to choose your scan intensity before every scan, giving you full control over performance and stealth:
|
|
36
|
-
|
|
37
|
-
| Mode | Template | Description |
|
|
38
|
-
| :--- | :---: | :--- |
|
|
39
|
-
| **Paranoid** | `-T0` | Very slow, minimal noise, best for bypassing strict IDS/Firewalls. |
|
|
40
|
-
| **Sneaky** | `-T1` | Slow, used to avoid detection during active monitoring. |
|
|
41
|
-
| **Polite** | `-T2` | Moderate speed, consumes very low bandwidth. |
|
|
42
|
-
| **Normal** | `-T3` | **Default Speed** - Balanced performance for standard networks. |
|
|
43
|
-
| **Aggressive**| `-T4` | Fast and highly recommended for faster security auditing. |
|
|
44
|
-
| **Insane** | `-T5` | Extremely fast, best for local lab testing (might drop packets). |
|
|
45
|
-
|
|
46
|
-
---
|
|
47
|
-
|
|
48
|
-
## 📋 Prerequisites
|
|
49
|
-
|
|
50
|
-
Make sure you have **Nmap** installed on your system before running this toolkit.
|
|
51
|
-
|
|
52
|
-
### For Linux (Kali/Ubuntu):
|
|
53
|
-
```bash
|
|
54
|
-
sudo apt update && sudo apt install nmap -y
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|