Configure advanced AI-powered threat detection to identify sophisticated attacks
sent1nels uses machine learning models trained on billions of security events to detect threats that traditional signature-based systems miss.
Identify malicious software including:
Detect network-based attacks:
Monitor for malicious insider activity:
# Enable AI-powered detection sent1nels config set ai.detection.enabled true # Set detection sensitivity (low, medium, high) sent1nels config set ai.detection.sensitivity high # Enable specific detection modules sent1nels config set ai.modules.malware true sent1nels config set ai.modules.network true sent1nels config set ai.modules.insider true
Create custom rules for your environment:
{
"name": "Suspicious Process Execution",
"description": "Detect unusual process execution patterns",
"severity": "high",
"conditions": {
"process_name": ["powershell.exe", "cmd.exe"],
"parent_process": "winword.exe",
"network_connection": true
},
"actions": ["alert", "isolate_host"]
}Optimize detection accuracy for your environment: