mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-23 08:58:22 +00:00
- Replace setup.py install → pip install --user . (explo, takeover, reconspider, infoga) - Mark Blazy as ARCHIVED: Python 2 only (pip2.7/python2.7) - Replace sudo git clone → git clone everywhere (no root needed for user tools dir) - Replace sudo pip install → pip install --user everywhere - Fix dalfox: git clone + cd approach → go install github.com/hahwul/dalfox/v2@latest - Add apt -y flag to ReconSpider apt install
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
from core import HackingTool, HackingToolsCollection, console
|
|
|
|
from rich.panel import Panel
|
|
from rich.prompt import Prompt
|
|
from rich import box
|
|
|
|
|
|
class DebInject(HackingTool):
|
|
TITLE = "Debinject"
|
|
DESCRIPTION = "Debinject is a tool that inject malicious code into *.debs"
|
|
INSTALL_COMMANDS = [
|
|
"git clone https://github.com/UndeadSec/Debinject.git"]
|
|
RUN_COMMANDS = ["cd Debinject;python debinject.py"]
|
|
PROJECT_URL = "https://github.com/UndeadSec/Debinject"
|
|
|
|
|
|
class Pixload(HackingTool):
|
|
TITLE = "Pixload"
|
|
DESCRIPTION = "Pixload -- Image Payload Creating tools \n " \
|
|
"Pixload is Set of tools for creating/injecting payload into images."
|
|
INSTALL_COMMANDS = [
|
|
"sudo apt install libgd-perl libimage-exiftool-perl libstring-crc32-perl",
|
|
"git clone https://github.com/chinarulezzz/pixload.git"
|
|
]
|
|
PROJECT_URL = "https://github.com/chinarulezzz/pixload"
|
|
|
|
def __init__(self):
|
|
super().__init__(runnable = False)
|
|
|
|
|
|
class PayloadInjectorTools(HackingToolsCollection):
|
|
TITLE = "Payload Injector"
|
|
TOOLS = [
|
|
DebInject(),
|
|
Pixload()
|
|
]
|
|
|
|
if __name__ == "__main__":
|
|
tools = PayloadInjectorTools()
|
|
tools.show_options()
|