Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
voidsec-proxy — Multi-Modul-Offensive-Security-Toolkit für SOCKS5-Proxy-Chaining, Port-Scanning, DNS-Enumeration, Hash-Cracking, Reverse-Shell-Generierung, Steganografie und Anonymisierung. | Kitploit
Tools/GitHubGitHub/voidsecsoftwares/voidsec-proxy
Passwort-CrackingAufklärungVerschlüsselungs-/EntschlüsselungstoolsPort-ScanningDNS- und Subdomain-EnumerationDatenexfiltrationWebsicherheitSteganografieDigitale Forensik

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen
Penetrationstests
Shellcode-Generierung
GitHubvoidsecsoftwares/voidsec-proxy

voidsec-proxy

Multi-Modul-Offensive-Security-Toolkit für SOCKS5-Proxy-Chaining, Port-Scanning, DNS-Enumeration, Hash-Cracking, Reverse-Shell-Generierung, Steganografie und Anonymisierung.

Repository anzeigen
31vor 2 TagenNoch nicht geprüft

voidsec-proxy


root@kitploit:~
 ██╗   ██╗ ██████╗ ██╗██████╗ ███████╗███████╗ ██████╗
 ██║   ██║██╔═══██╗██║██╔══██╗██╔════╝██╔════╝██╔════╝
 ██║   ██║██║   ██║██║██║  ██║███████╗█████╗  ██║     
 ╚██╗ ██╔╝██║   ██║██║██║  ██║╚════██║██╔══╝  ██║     
  ╚████╔╝ ╚██████╔╝██║██████╔╝███████║███████╗╚██████╗
   ╚═══╝   ╚═════╝ ╚═╝╚═════╝ ╚══════╝╚══════╝ ╚═════╝

v3.0.0 | 18 Module | 50+ Befehle | keine Abhängigkeiten

License: MIT Python: 3.8+ Platform: Linux Version: 3.0.0


Kein weiteres Script-Kiddie-Tool. Dieses hier macht tatsächlich etwas.



Inhaltsverzeichnis

  • Installation
  • Schnellstart
  • Befehlsreferenz
    • proxy — SOCKS5-Kettenrotation
    • scan — Portscanner
    • dns — DNS-Toolkit
    • crack — Hash-Cracking
    • password — Passwortgenerator
    • mutate — Wortlisten-Mutator
    • recon — Netzwerkaufklärung
    • web — Web-Fingerprinting
    • exfil — Verdeckte Kanäle & Kodierung
    • encrypt — AES-GCM-Dateiverschlüsselung
    • shred — Sicheres Löschen von Dateien
    • stego — Steganographie
    • shell — Reverse-Shell-Generator
    • forensic — Dateianalyse
    • anon — Anonymisierung
    • plugin — Plugin-Verwaltung
    • config — Konfiguration
  • Format der Proxies-Datei
  • Plugin-API
  • Lizenz

Installation

root@kitploit:~
# Clone the repository
git clone https://github.com/VoidSecSoftwares/voidsec-proxy.git

# Enter the directory
cd voidsec-proxy

# Install (basic)
pip install -e .

# Install with crypto support (AES-GCM, ChaCha20, steganography)
pip install -e ".[crypto]"

Voraussetzungen: Python 3.8+ | Keine zwingenden Abhängigkeiten


Schnellstart

root@kitploit:~
# Start a SOCKS5 proxy chain
voidsec-proxy proxy -f proxies.txt

# Scan a target
voidsec-proxy scan -t 10.0.0.1

# Resolve DNS
voidsec-proxy dns example.com

# Generate a password
voidsec-proxy password -l 20 -c 5

# Full recon on a target
voidsec-proxy recon -t 10.0.0.1

Befehlsreferenz


proxy

SOCKS5-Proxy-Kette mit automatischer Rotation.

root@kitploit:~
# Basic usage
voidsec-proxy proxy -f proxies.txt

# Custom listen address and port
voidsec-proxy proxy -f proxies.txt -l 0.0.0.0 -p 1080

# Shuffle proxy order on start
voidsec-proxy proxy -f proxies.txt -s

scan

Multithreaded TCP-Portscanner mit Banner-Grabbing.

root@kitploit:~
# Scan common ports
voidsec-proxy scan -t 10.0.0.1

# Scan specific ports
voidsec-proxy scan -t 10.0.0.1 -p 22,80,443,3389

# Scan port range, export to JSON
voidsec-proxy scan -t 10.0.0.1 -r 1-1000 -o results.json -f json

dns

DNS-Auflösung, Reverse-Lookups und Subdomain-Enumeration.

root@kitploit:~
# Resolve A records
voidsec-proxy dns example.com

# Multiple record types
voidsec-proxy dns example.com -t A -t MX -t TXT

# Reverse DNS lookup
voidsec-proxy dns 8.8.8.8 -r

# Subdomain enumeration
voidsec-proxy dns example.com -e -w wordlist.txt

crack

Hash-Cracking mit Wortlisten-Unterstützung.

root@kitploit:~
# Crack MD5 hash
voidsec-proxy crack --hash 5f4dcc3b5aa765d61d8327deb882cf99 -t md5 -w rockyou.txt

# Hash text with SHA256
voidsec-proxy crack --hash-text "hello" -t sha256

# Hash file
voidsec-proxy crack --hash-file secret.bin -t sha512

password

Passwortgenerator mit Stärke-Auditierung.

root@kitploit:~
# Generate 5 passwords, 20 chars each
voidsec-proxy password -l 20 -c 5

# Audit a password
voidsec-proxy password -a "MyP@ssw0rd"

# Generate 6-word passphrase
voidsec-proxy password --passphrase -l 6

mutate

Wortlisten-Mutations-Engine.

root@kitploit:~
# Apply all mutations
voidsec-proxy mutate -w wordlist.txt -o mutated.txt -m leet,upper,append_num,dups

# Leet speak + numbers
voidsec-proxy mutate -w wordlist.txt -o out.txt -m leet,append_num

recon

Vollständige Netzwerkaufklärung.

root@kitploit:~
# Full recon (IP, geo, ASN, open ports)
voidsec-proxy recon -t 10.0.0.1

# WHOIS lookup
voidsec-proxy recon --whois example.com

# IP geolocation
voidsec-proxy recon --geo 8.8.8.8

# ASN lookup
voidsec-proxy recon --asn 8.8.8.8

# Traceroute
voidsec-proxy recon --traceroute 8.8.8.8

web

Webanwendungs-Fingerprinting und Verzeichnis-Brute-Force.

root@kitploit:~
# Full fingerprint
voidsec-proxy web -u https://target.com

# Header analysis
voidsec-proxy web --headers https://target.com

# Directory brute-force
voidsec-proxy web --dirbust https://target.com -w wordlist.txt

exfil

Verdeckte Kanäle und Datenkodierung.

root@kitploit:~
# Encode data
voidsec-proxy exfil --encode "secret data" -m base64
voidsec-proxy exfil --encode "secret data" -m morse
voidsec-proxy exfil --encode "secret data" -m dns

# Decode data
voidsec-proxy exfil --decode "dGVzdA==" -m base64

# Vigenere cipher
voidsec-proxy exfil --vigenere "encrypted" --key "secret"

encrypt

AES-GCM-Dateiverschlüsselung.

root@kitploit:~
# Encrypt a file
voidsec-proxy encrypt -i secret.txt -o secret.enc -p "mypassword"

# Decrypt a file
voidsec-proxy encrypt -i secret.enc -o secret.txt -p "mypassword" -d
FlagBeschreibung
-i, --inputEingabedatei (erforderlich)
-o, --outputAusgabedatei (erforderlich)

shred

Sicheres Löschen von Dateien mit mehreren Durchgängen.

root@kitploit:~
# Shred file with 5 passes
voidsec-proxy shred -f file.txt -n 5
FlagBeschreibungStandard
-f, --fileZu vernichtende Datei (erforderlich)—
-n, --passesAnzahl der Überschreibungsdurchgänge3

stego

PNG-Steganographie — Daten in Bildern verstecken und extrahieren.

root@kitploit:~
# Hide data in image
voidsec-proxy stego -i image.png -f secret.txt -o stego.png

# Extract hidden data
voidsec-proxy stego -i stego.png -e -o extracted.txt
FlagBeschreibung
-i, --imagePNG-Bilddatei
-f, --secretZu versteckende geheime Datei
-o, --output

shell

Reverse-Shell-Generator mit Payload-Kodierung.

root@kitploit:~
# Python reverse shell
voidsec-proxy shell --lhost 10.0.0.1 --lport 4444 -t python

# Bash with base64 encoding
voidsec-proxy shell --lhost 10.0.0.1 --lport 4444 -t bash -e base64

# PowerShell reverse shell
voidsec-proxy shell --lhost 10.0.0.1 --lport 4444 -t powershell

forensic

Dateianalyse und Forensik.

root@kitploit:~
# Full file metadata
voidsec-proxy forensic -f suspicious.exe

# Entropy analysis
voidsec-proxy forensic --entropy unknown_file

# Extract strings
voidsec-proxy forensic --strings binary.bin

# Hexdump
voidsec-proxy forensic --hexdump file.bin

# Compare two files
voidsec-proxy forensic --compare file1.txt --file2 file2.txt

anon

Anonymisierungswerkzeuge.

root@kitploit:~
# Spoof MAC address
voidsec-proxy anon --spoof-mac eth0

# Set random hostname
voidsec-proxy anon --hostname

# Start TOR proxy
voidsec-proxy anon --tor --start --port 9050

# Clear system tracks
voidsec-proxy anon --clear

# Full anonymization
voidsec-proxy anon --interface eth0

plugin

Plugin-Verwaltung.

root@kitploit:~
# List installed plugins
voidsec-proxy plugin list

# Create example plugin
voidsec-proxy plugin create -n myplugin

# Execute a plugin
voidsec-proxy plugin execute -n myplugin

config

Konfigurationsverwaltung.

root@kitploit:~
# Show all config
voidsec-proxy config show

# Set a value
voidsec-proxy config set -k scanner.threads 200

# Get a value
voidsec-proxy config get -k listen

# Reset to defaults
voidsec-proxy config reset
FlagBeschreibung
action

Format der Proxies-Datei

root@kitploit:~
# One proxy per line
# Format: host:port

10.0.0.1:1080
proxy.example.com:9050

# With authentication: user:pass:host:port

admin:secret:192.168.1.5:9050

Plugin-API

Erstelle eine Python-Datei in ~/.voidsec/plugins/:

root@kitploit:~
PLUGIN_NAME = "myplugin"
PLUGIN_DESC = "My custom plugin"
PLUGIN_VERSION = "1.0"

def run(*args, **kwargs):
    print("Hello from my plugin!")
    return "Success"

Dann ausführen:

root@kitploit:~
voidsec-proxy plugin execute -n myplugin

Windows-Arsenal

Auf der Suche nach Windows-Tools? Wir haben ein separates Repository mit 8 PowerShell-GUI-Tools:

→ VoidSec Windows Arsenal


Lizenz

MIT-Lizenz — siehe LICENSE für Details.

Tool herunterladen
FlagBeschreibungStandard
-f, --fileProxies-Datei (erforderlich)—
-l, --listenListen-Adresse127.0.0.1
-p, --portListen-Port9050
-s, --shuffleProxy-Reihenfolge mischenfalse
FlagBeschreibungStandard
-t, --targetZielhost (erforderlich)—
-p, --portsKommagetrennte Portsgängige Ports
-r, --port-rangePortbereich (z. B. 1-1000)—
-o, --outputAusgabedateistdout
-f, --formatAusgabeformat (text, json, csv)text
FlagBeschreibungStandard
domainZieldomain (erforderlich)—
-t, --typeRecord-Typ (wiederholbar)A
-r, --reverseReverse-DNS-Lookupfalse
-e, --enumerateSubdomain-Enumerationfalse
-w, --wordlistWortliste für Enumeration—
FlagBeschreibungStandard
--hashZu knackender Hash—
--hash-textZu hashender Text—
--hash-fileZu hashende Datei—
-t, --typeHash-Typ (md5, sha1, sha256, sha512)md5
-w, --wordlistWortliste zum Knacken—
FlagBeschreibungStandard
-l, --lengthPasswortlänge / Wortanzahl16
-c, --countAnzahl der zu generierenden Passwörter5
-a, --auditPasswortstärke auditieren—
--passphraseStattdessen Passphrase generierenfalse
--separatorTrennzeichen für Passphrase-Wörter-
--no-upperGroßbuchstaben ausschließenfalse
--no-lowerKleinbuchstaben ausschließenfalse
--no-digitsZiffern ausschließenfalse
--no-symbolsSymbole ausschließenfalse
FlagBeschreibungStandard
-w, --wordlistEingabe-Wortliste (erforderlich)—
-o, --outputAusgabedatei (erforderlich)—
-m, --mutationsKommagetrennt: leet, upper, append_num, prepend_num, dups, reverse, append_symalle
FlagBeschreibung
-t, --targetZielhost für vollständige Aufklärung
--whoisWHOIS-Lookup
--geoIP-Geolokalisierung
--asnASN-Lookup
--tracerouteTraceroute zum Ziel
FlagBeschreibung
-u, --urlZiel-URL
--headersHeader abrufen und analysieren
--fingerprintTechnologie-Fingerprint
--dirbustVerzeichnis-Brute-Force
-w, --wordlistWortliste für Brute-Force
FlagBeschreibung
--encodeZu kodierender Text
--decodeZu dekodierender Text
-m, --methodbase32, base64, hex, morse, binary, rot13, caesar, dns
-s, --shiftCaesar-Chiffre-Verschiebung
--vigenereVigenere-Chiffre-Text
--keyChiffre-Schlüssel
--decryptEntschlüsseln statt verschlüsseln
-p, --passwordVerschlüsselungspasswort (erforderlich)
-d, --decryptEntschlüsseln statt verschlüsseln
Ausgabedatei
-e, --extractExtrahieren statt verstecken
FlagBeschreibungStandard
--lhostListener-Host (erforderlich)—
--lportListener-Port (erforderlich)—
-t, --typeShell-Typ: python, bash, perl, php, ruby, java, powershell, netcat, socat, lua, cpython
-e, --encodingPayload-Kodierung: base64, hex, url, double_base64, base64_bash, base64_python, rot13—
FlagBeschreibung
-f, --fileZieldatei
--entropyEntropie berechnen
--compareMit --file2 vergleichen
--stringsDruckbare Zeichenketten extrahieren
--hexdumpHexdump der ersten N Bytes
--min-lengthMinimale Zeichenkettenlänge
FlagBeschreibung
--spoof-macSchnittstelle zum MAC-Spoofing
--new-macSpezifische MAC-Adresse (zufällig, wenn weggelassen)
--hostnameZufälligen Hostnamen setzen
--torTOR-Operationen
--startTOR starten
--stopTOR stoppen
--portTOR-SOCKS-Port
--clearBash/zsh-Verlauf, Logs, /tmp löschen
--random-hostnameZufälligen Hostnamen ausgeben
--interfaceNetzwerkschnittstelle für vollständige Anonymisierung
show, set, get, reset
-k, --keyKonfigurationsschlüssel (Punktnotation unterstützt)
--valueZu setzender Wert
ToolBeschreibung
VoidCryptAES-256-GCM-Dateiverschlüsselung
GhostProcessProzess-Viewer & Manipulator
NetPhantomNetzwerkaufklärung
RegGhostRegistry-Analysator
StealthLogSystemspuren-Bereiniger
HashVaultPasswort- & Hash-Toolkit
SysPhantomSystemaufklärung
AntiForensicsBeweisvernichtung