Initial public release

Full BigBrother network implant - passive SOC + active exploitation.
Personal identifiers removed; all capabilities intact.
See README.md for setup and docs/deployment.md for detailed deployment.
This commit is contained in:
n0mad1k
2026-06-26 09:52:50 -04:00
commit ccc6b729de
175 changed files with 47941 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
"""SystemMonitor active modules — MITM, spoofing, and interception."""
from modules.active.bettercap_mgr import BettercapManager
from modules.active.arp_spoof import ARPSpoof
from modules.active.dns_poison import DNSPoison
from modules.active.dhcp_spoof import DHCPSpoof
from modules.active.evil_twin import EvilTwin
from modules.active.ipv6_slaac import IPv6SLAAC
from modules.active.responder_mgr import ResponderManager
from modules.active.mitmproxy_mgr import MitmproxyManager
from modules.active.ntlm_relay import NTLMRelay
__all__ = [
"BettercapManager",
"ARPSpoof",
"DNSPoison",
"DHCPSpoof",
"EvilTwin",
"IPv6SLAAC",
"ResponderManager",
"MitmproxyManager",
"NTLMRelay",
]