ccc6b729de
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.
24 lines
800 B
Python
24 lines
800 B
Python
"""SystemMonitor intelligence modules — on-device analysis and data aggregation."""
|
|
|
|
from modules.intel.credential_db import CredentialDB
|
|
from modules.intel.topology_mapper import TopologyMapper
|
|
from modules.intel.net_intel import NetIntel
|
|
from modules.intel.user_timeline import UserTimeline
|
|
from modules.intel.supply_chain_detect import SupplyChainDetect
|
|
from modules.intel.change_detector import ChangeDetector
|
|
from modules.intel.security_posture import SecurityPosture
|
|
from modules.intel.operator_audit import OperatorAudit
|
|
from modules.intel.tool_output_parser import ToolOutputParser
|
|
|
|
__all__ = [
|
|
"CredentialDB",
|
|
"TopologyMapper",
|
|
"NetIntel",
|
|
"UserTimeline",
|
|
"SupplyChainDetect",
|
|
"ChangeDetector",
|
|
"SecurityPosture",
|
|
"OperatorAudit",
|
|
"ToolOutputParser",
|
|
]
|