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.
Files changed (85) hide show
  1. plungerhacker-1.0.0/PKG-INFO +56 -0
  2. plungerhacker-1.0.0/README.md +22 -0
  3. plungerhacker-1.0.0/plunger/__init__.py +10 -0
  4. plungerhacker-1.0.0/plunger/cli.py +830 -0
  5. plungerhacker-1.0.0/plunger/core/__init__.py +7 -0
  6. plungerhacker-1.0.0/plunger/core/exploit.py +156 -0
  7. plungerhacker-1.0.0/plunger/core/network.py +172 -0
  8. plungerhacker-1.0.0/plunger/core/scanner.py +397 -0
  9. plungerhacker-1.0.0/plunger/exploits/__init__.py +3 -0
  10. plungerhacker-1.0.0/plunger/exploits/cve_2018_10933/__init__.py +3 -0
  11. plungerhacker-1.0.0/plunger/exploits/cve_2018_10933/exploit.py +235 -0
  12. plungerhacker-1.0.0/plunger/exploits/cve_2019_6340/__init__.py +3 -0
  13. plungerhacker-1.0.0/plunger/exploits/cve_2019_6340/exploit.py +143 -0
  14. plungerhacker-1.0.0/plunger/exploits/cve_2020_1472/__init__.py +3 -0
  15. plungerhacker-1.0.0/plunger/exploits/cve_2020_1472/exploit.py +367 -0
  16. plungerhacker-1.0.0/plunger/exploits/cve_2021_26855/__init__.py +3 -0
  17. plungerhacker-1.0.0/plunger/exploits/cve_2021_26855/exploit.py +82 -0
  18. plungerhacker-1.0.0/plunger/exploits/cve_2021_41773/__init__.py +3 -0
  19. plungerhacker-1.0.0/plunger/exploits/cve_2021_41773/exploit.py +97 -0
  20. plungerhacker-1.0.0/plunger/exploits/cve_2021_44228/__init__.py +3 -0
  21. plungerhacker-1.0.0/plunger/exploits/cve_2021_44228/exploit.py +116 -0
  22. plungerhacker-1.0.0/plunger/exploits/cve_2022_26134/__init__.py +3 -0
  23. plungerhacker-1.0.0/plunger/exploits/cve_2022_26134/exploit.py +96 -0
  24. plungerhacker-1.0.0/plunger/exploits/cve_2024_1709/__init__.py +3 -0
  25. plungerhacker-1.0.0/plunger/exploits/cve_2024_1709/exploit.py +113 -0
  26. plungerhacker-1.0.0/plunger/exploits/cve_2024_21762/__init__.py +3 -0
  27. plungerhacker-1.0.0/plunger/exploits/cve_2024_21762/exploit.py +75 -0
  28. plungerhacker-1.0.0/plunger/exploits/cve_2024_23897/__init__.py +3 -0
  29. plungerhacker-1.0.0/plunger/exploits/cve_2024_23897/exploit.py +101 -0
  30. plungerhacker-1.0.0/plunger/exploits/cve_2024_27198/__init__.py +3 -0
  31. plungerhacker-1.0.0/plunger/exploits/cve_2024_27198/exploit.py +97 -0
  32. plungerhacker-1.0.0/plunger/exploits/cve_2024_29988/__init__.py +3 -0
  33. plungerhacker-1.0.0/plunger/exploits/cve_2024_29988/exploit.py +155 -0
  34. plungerhacker-1.0.0/plunger/exploits/cve_2024_29988/pe_builder.py +259 -0
  35. plungerhacker-1.0.0/plunger/exploits/cve_2024_29988/shellcode.py +31 -0
  36. plungerhacker-1.0.0/plunger/exploits/cve_2024_3400/__init__.py +3 -0
  37. plungerhacker-1.0.0/plunger/exploits/cve_2024_3400/exploit.py +118 -0
  38. plungerhacker-1.0.0/plunger/exploits/cve_2024_38063/__init__.py +3 -0
  39. plungerhacker-1.0.0/plunger/exploits/cve_2024_38063/exploit.py +73 -0
  40. plungerhacker-1.0.0/plunger/exploits/cve_2024_38193/__init__.py +3 -0
  41. plungerhacker-1.0.0/plunger/exploits/cve_2024_38193/exploit.py +94 -0
  42. plungerhacker-1.0.0/plunger/exploits/cve_2024_38475/__init__.py +3 -0
  43. plungerhacker-1.0.0/plunger/exploits/cve_2024_38475/exploit.py +76 -0
  44. plungerhacker-1.0.0/plunger/exploits/cve_2024_4040/__init__.py +3 -0
  45. plungerhacker-1.0.0/plunger/exploits/cve_2024_4040/exploit.py +88 -0
  46. plungerhacker-1.0.0/plunger/exploits/cve_2024_4577/__init__.py +3 -0
  47. plungerhacker-1.0.0/plunger/exploits/cve_2024_4577/exploit.py +98 -0
  48. plungerhacker-1.0.0/plunger/exploits/cve_2024_55591/__init__.py +3 -0
  49. plungerhacker-1.0.0/plunger/exploits/cve_2024_55591/exploit.py +73 -0
  50. plungerhacker-1.0.0/plunger/exploits/cve_2025_0282/__init__.py +3 -0
  51. plungerhacker-1.0.0/plunger/exploits/cve_2025_0282/exploit.py +71 -0
  52. plungerhacker-1.0.0/plunger/exploits/cve_2025_29927/__init__.py +3 -0
  53. plungerhacker-1.0.0/plunger/exploits/cve_2025_29927/exploit.py +77 -0
  54. plungerhacker-1.0.0/plunger/exploits/cve_2025_31324/__init__.py +3 -0
  55. plungerhacker-1.0.0/plunger/exploits/cve_2025_31324/exploit.py +99 -0
  56. plungerhacker-1.0.0/plunger/exploits/cve_2025_32756/__init__.py +3 -0
  57. plungerhacker-1.0.0/plunger/exploits/cve_2025_32756/exploit.py +94 -0
  58. plungerhacker-1.0.0/plunger/exploits/cve_2025_48924/__init__.py +3 -0
  59. plungerhacker-1.0.0/plunger/exploits/cve_2025_48924/exploit.py +97 -0
  60. plungerhacker-1.0.0/plunger/exploits/cve_2025_49113/__init__.py +3 -0
  61. plungerhacker-1.0.0/plunger/exploits/cve_2025_49113/exploit.py +147 -0
  62. plungerhacker-1.0.0/plunger/exploits/cve_2026_2451/__init__.py +3 -0
  63. plungerhacker-1.0.0/plunger/exploits/cve_2026_2451/exploit.py +90 -0
  64. plungerhacker-1.0.0/plunger/exploits/cve_2026_3588/__init__.py +3 -0
  65. plungerhacker-1.0.0/plunger/exploits/cve_2026_3588/exploit.py +118 -0
  66. plungerhacker-1.0.0/plunger/exploits/cve_2026_3895/__init__.py +3 -0
  67. plungerhacker-1.0.0/plunger/exploits/cve_2026_3895/exploit.py +100 -0
  68. plungerhacker-1.0.0/plunger/exploits/cve_2026_47291/__init__.py +6 -0
  69. plungerhacker-1.0.0/plunger/exploits/cve_2026_47291/exploit.py +273 -0
  70. plungerhacker-1.0.0/plunger/exploits/ssh_brute/__init__.py +2 -0
  71. plungerhacker-1.0.0/plunger/exploits/ssh_brute/exploit.py +161 -0
  72. plungerhacker-1.0.0/plunger/utils/__init__.py +3 -0
  73. plungerhacker-1.0.0/plunger/utils/console.py +81 -0
  74. plungerhacker-1.0.0/plunger/utils/crypto.py +29 -0
  75. plungerhacker-1.0.0/plunger/utils/malfile.py +122 -0
  76. plungerhacker-1.0.0/plungerhacker.egg-info/PKG-INFO +56 -0
  77. plungerhacker-1.0.0/plungerhacker.egg-info/SOURCES.txt +83 -0
  78. plungerhacker-1.0.0/plungerhacker.egg-info/dependency_links.txt +1 -0
  79. plungerhacker-1.0.0/plungerhacker.egg-info/entry_points.txt +3 -0
  80. plungerhacker-1.0.0/plungerhacker.egg-info/requires.txt +6 -0
  81. plungerhacker-1.0.0/plungerhacker.egg-info/top_level.txt +2 -0
  82. plungerhacker-1.0.0/setup.cfg +4 -0
  83. plungerhacker-1.0.0/setup.py +43 -0
  84. plungerhacker-1.0.0/tests/__init__.py +1 -0
  85. 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
+ ```
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env python3
2
+ # PLUNGER Framework
3
+ # For EDUCATIONAL AND RESEARCH PURPOSES ONLY.
4
+
5
+ """
6
+ PLUNGER: Industrial-Grade Exploit Framework
7
+ """
8
+
9
+ __version__ = "1.0.0"
10
+ __author__ = "Security Researcher"