mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-23 17:08:25 +00:00
Add Kittysploit
This commit is contained in:
parent
01a51bbca6
commit
89ef0b4b2e
3 changed files with 19 additions and 0 deletions
1
kittysploit-framework
Submodule
1
kittysploit-framework
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit e15307f458b75d9100de6043935e8b19f3b2b100
|
||||
|
|
@ -51,12 +51,29 @@ class Commix(HackingTool):
|
|||
super().__init__(runnable=False)
|
||||
|
||||
|
||||
class KittySploitFramework(HackingTool):
|
||||
TITLE = "KittySploit Framework"
|
||||
DESCRIPTION = (
|
||||
"Open-source exploitation framework for red teams — modular Python engine, "
|
||||
"optional AI-assisted planning with local LLMs, KittyProxy for HTTP/API/WebSocket "
|
||||
"reconnaissance, Zig-based payloads, Tor routing, collaborative editing, and a "
|
||||
"community module marketplace."
|
||||
)
|
||||
INSTALL_COMMANDS = [
|
||||
"git clone https://github.com/SIA-IOTechnology/kittysploit-framework.git",
|
||||
"cd kittysploit-framework && chmod +x install/install.sh && ./install/install.sh",
|
||||
]
|
||||
RUN_COMMANDS = ["cd kittysploit-framework && ./start_kittysploit.sh"]
|
||||
PROJECT_URL = "https://github.com/SIA-IOTechnology/Kittysploit-framework"
|
||||
|
||||
|
||||
class ExploitFrameworkTools(HackingToolsCollection):
|
||||
TITLE = "Exploit framework"
|
||||
TOOLS = [
|
||||
RouterSploit(),
|
||||
WebSploit(),
|
||||
Commix(),
|
||||
KittySploitFramework(),
|
||||
Web2Attack()
|
||||
]
|
||||
|
||||
|
|
|
|||
1
web2attack
Submodule
1
web2attack
Submodule
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 44b6e481a3d56cf0d98073ae0fb69833dda563d9
|
||||
Loading…
Reference in a new issue