-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
53 lines (40 loc) · 1.44 KB
/
.env.example
File metadata and controls
53 lines (40 loc) · 1.44 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# ----------------------------
# Suricata configuration
# ----------------------------
# Linux developers: specify the real network interface to sniff
# Example: enp0s3, eth0, ens33
# Verify with: ip link show | grep -E '^[0-9]+:'
SURICATA_COMMAND="-i enp0s3"
# Windows developers: use PCAP mode instead of live interface
# Uncomment and set path to a sample PCAP file for development
# SURICATA_COMMAND="-r /pcap/sample.pcap"
# Optional: network mode, set to host by default on docker compose
# For PCAP mode or Windows, you can leave it blank or omit
# SURICATA_NETWORK_MODE=host
# IMPORTANT LOG PATH
# HOST_SYSLOG=/var/log/syslog #UBUNTU
# NOTE: Journald export is used instead of direct syslog mounting
HOST_SYSLOG=/var/log/messages #FEDORA
# ----------------------------
# Makefile / runtime configuration (example values)
# ----------------------------
# Command prefix for elevated privileges, if needed.
SUDO=sudo
# IP address of the target machine used by test scripts and scans.
TARGET_IP=127.0.0.1
# Network range used for Nmap scans (CIDR notation).
NETWORK=172.17.0.0/24
# Base URLs for services used by the Makefile and scripts
# Backend API
API_URL=http://localhost
# Elasticsearch
ES_URL=http://localhost:9200
# Kibana
KIBANA_URL=http://localhost/kibana
# MailHog
MAIL_URL=http://localhost/mail/
# Credentials (example placeholders). Replace in a private `.env` before use.
ADMIN_USER=admin
ADMIN_WRONG_PASS=wrong
VALID_USER=user
VALID_PASS=pass