plungerhacker 1.0.0__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.
- plungerhacker-1.0.0/PKG-INFO +56 -0
- plungerhacker-1.0.0/README.md +22 -0
- plungerhacker-1.0.0/plunger/__init__.py +10 -0
- plungerhacker-1.0.0/plunger/cli.py +830 -0
- plungerhacker-1.0.0/plunger/core/__init__.py +7 -0
- plungerhacker-1.0.0/plunger/core/exploit.py +156 -0
- plungerhacker-1.0.0/plunger/core/network.py +172 -0
- plungerhacker-1.0.0/plunger/core/scanner.py +397 -0
- plungerhacker-1.0.0/plunger/exploits/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2018_10933/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2018_10933/exploit.py +235 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2019_6340/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2019_6340/exploit.py +143 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2020_1472/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2020_1472/exploit.py +367 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2021_26855/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2021_26855/exploit.py +82 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2021_41773/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2021_41773/exploit.py +97 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2021_44228/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2021_44228/exploit.py +116 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2022_26134/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2022_26134/exploit.py +96 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_1709/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_1709/exploit.py +113 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_21762/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_21762/exploit.py +75 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_23897/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_23897/exploit.py +101 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_27198/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_27198/exploit.py +97 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_29988/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_29988/exploit.py +155 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_29988/pe_builder.py +259 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_29988/shellcode.py +31 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_3400/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_3400/exploit.py +118 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_38063/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_38063/exploit.py +73 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_38193/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_38193/exploit.py +94 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_38475/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_38475/exploit.py +76 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_4040/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_4040/exploit.py +88 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_4577/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_4577/exploit.py +98 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_55591/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2024_55591/exploit.py +73 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_0282/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_0282/exploit.py +71 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_29927/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_29927/exploit.py +77 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_31324/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_31324/exploit.py +99 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_32756/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_32756/exploit.py +94 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_48924/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_48924/exploit.py +97 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_49113/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2025_49113/exploit.py +147 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2026_2451/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2026_2451/exploit.py +90 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2026_3588/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2026_3588/exploit.py +118 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2026_3895/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2026_3895/exploit.py +100 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2026_47291/__init__.py +6 -0
- plungerhacker-1.0.0/plunger/exploits/cve_2026_47291/exploit.py +273 -0
- plungerhacker-1.0.0/plunger/exploits/ssh_brute/__init__.py +2 -0
- plungerhacker-1.0.0/plunger/exploits/ssh_brute/exploit.py +161 -0
- plungerhacker-1.0.0/plunger/utils/__init__.py +3 -0
- plungerhacker-1.0.0/plunger/utils/console.py +81 -0
- plungerhacker-1.0.0/plunger/utils/crypto.py +29 -0
- plungerhacker-1.0.0/plunger/utils/malfile.py +122 -0
- plungerhacker-1.0.0/plungerhacker.egg-info/PKG-INFO +56 -0
- plungerhacker-1.0.0/plungerhacker.egg-info/SOURCES.txt +83 -0
- plungerhacker-1.0.0/plungerhacker.egg-info/dependency_links.txt +1 -0
- plungerhacker-1.0.0/plungerhacker.egg-info/entry_points.txt +3 -0
- plungerhacker-1.0.0/plungerhacker.egg-info/requires.txt +6 -0
- plungerhacker-1.0.0/plungerhacker.egg-info/top_level.txt +2 -0
- plungerhacker-1.0.0/setup.cfg +4 -0
- plungerhacker-1.0.0/setup.py +43 -0
- plungerhacker-1.0.0/tests/__init__.py +1 -0
- plungerhacker-1.0.0/tests/smoke_test.py +254 -0
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: plungerhacker
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Industrial-Grade Exploit Framework for Security Research
|
|
5
|
+
Home-page: https://github.com/securityresearch/plunger
|
|
6
|
+
Author: Security Researcher
|
|
7
|
+
Author-email: researcher@example.com
|
|
8
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
9
|
+
Classifier: Intended Audience :: Education
|
|
10
|
+
Classifier: Intended Audience :: Information Technology
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Topic :: Security
|
|
17
|
+
Requires-Python: >=3.8
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
Requires-Dist: requests
|
|
20
|
+
Requires-Dist: paramiko
|
|
21
|
+
Requires-Dist: scapy
|
|
22
|
+
Requires-Dist: cryptography
|
|
23
|
+
Requires-Dist: click
|
|
24
|
+
Requires-Dist: colorama
|
|
25
|
+
Dynamic: author
|
|
26
|
+
Dynamic: author-email
|
|
27
|
+
Dynamic: classifier
|
|
28
|
+
Dynamic: description
|
|
29
|
+
Dynamic: description-content-type
|
|
30
|
+
Dynamic: home-page
|
|
31
|
+
Dynamic: requires-dist
|
|
32
|
+
Dynamic: requires-python
|
|
33
|
+
Dynamic: summary
|
|
34
|
+
|
|
35
|
+
# PLUNGER Framework
|
|
36
|
+
|
|
37
|
+
**Industrial-Grade Exploit Framework for Security Research**
|
|
38
|
+
|
|
39
|
+
> **WARNING: For EDUCATIONAL AND RESEARCH PURPOSES ONLY.**
|
|
40
|
+
|
|
41
|
+
## Features
|
|
42
|
+
- **Weaponized exploits** for modern CVEs (2024–2026).
|
|
43
|
+
- **Automated reconnaissance** and exploitation.
|
|
44
|
+
- **Evasion techniques** (sandbox detection, payload encryption).
|
|
45
|
+
|
|
46
|
+
## Installation
|
|
47
|
+
```bash
|
|
48
|
+
pip install -e .
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## Usage
|
|
52
|
+
```bash
|
|
53
|
+
plunger scan <target>
|
|
54
|
+
plunger exploit <CVE> <target>
|
|
55
|
+
plunger plunge <target>
|
|
56
|
+
```
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# PLUNGER Framework
|
|
2
|
+
|
|
3
|
+
**Industrial-Grade Exploit Framework for Security Research**
|
|
4
|
+
|
|
5
|
+
> **WARNING: For EDUCATIONAL AND RESEARCH PURPOSES ONLY.**
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
- **Weaponized exploits** for modern CVEs (2024–2026).
|
|
9
|
+
- **Automated reconnaissance** and exploitation.
|
|
10
|
+
- **Evasion techniques** (sandbox detection, payload encryption).
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
```bash
|
|
14
|
+
pip install -e .
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
```bash
|
|
19
|
+
plunger scan <target>
|
|
20
|
+
plunger exploit <CVE> <target>
|
|
21
|
+
plunger plunge <target>
|
|
22
|
+
```
|