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
+20
View File
@@ -0,0 +1,20 @@
from core.bus import EventBus, Event
from core.state import StateManager
from core.engine import Engine
from core.capture_bus import CaptureBus
from core.tool_manager import ToolManager
from core.scheduler import Scheduler
from core.resource_monitor import ResourceMonitor
from core.kill_switch import KillSwitch
__all__ = [
"EventBus",
"Event",
"StateManager",
"Engine",
"CaptureBus",
"ToolManager",
"Scheduler",
"ResourceMonitor",
"KillSwitch",
]