-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
32 lines (25 loc) · 697 Bytes
/
Copy pathenv.example
File metadata and controls
32 lines (25 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Cybersecurity Monitoring and Prevention System - Environment Variables
# Network settings
NETWORK_INTERFACE=auto
PACKET_BUFFER_SIZE=10000
# URL Filter settings
BLOCKLIST_UPDATE_INTERVAL=86400 # 24 hours
URL_FILTER_DB=url_filter.db
# Notification settings
ENABLE_EMAIL_NOTIFICATIONS=false
NOTIFICATION_EMAIL=security@example.com
SMTP_SERVER=smtp.example.com
SMTP_PORT=587
SMTP_USERNAME=user
SMTP_PASSWORD=password
# API keys for external services
# Google Safe Browsing API
# GOOGLE_SAFEBROWSING_API_KEY=your_key_here
# VirusTotal API
# VIRUSTOTAL_API_KEY=your_key_here
# Dashboard settings
DASHBOARD_PORT=5000
DASHBOARD_HOST=0.0.0.0
# Logging
LOG_LEVEL=INFO
LOG_FILE=security_system.log