Files
Cobra 1eb35c9050 Fix #211: Remove tool identity strings from deployed artifacts
- Replace BigBrother -> SystemMonitor in display names and docstrings
- Replace logger names: bb.* -> sensor.*
- Replace process names: bb-* -> sensor-*
- Replace home directory: ~/.bigbrother -> ~/.implant
- Replace LUKS device: /dev/mapper/bb-* -> /dev/mapper/sensor-*
- Updated 76 Python files across all modules
- Improves OPSEC by removing obvious tool fingerprints from logs and runtime
2026-04-06 11:39:48 -04:00

24 lines
719 B
Python

"""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",
]