-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (34 loc) · 1.45 KB
/
Copy path.env.example
File metadata and controls
39 lines (34 loc) · 1.45 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
# =============================================================================
# go — LLM honeypot persona
# =============================================================================
# An SSH frontend terminates attacker connections and forwards each typed
# command as an ARCP job; an LLM agent hallucinates plausible shell output and
# streams it back. Per-attacker persona state survives reconnects via
# ARCP's session.resume + on-disk job store.
# -----------------------------------------------------------------------------
# --- LLM ---------------------------------------------------------------------
OLLAMA_MODEL=qwen2.5:1.5b-instruct
OLLAMA_URL=http://ollama:11434
OLLAMA_KEEP_ALIVE=5m
OLLAMA_HOST_PORT=11434
# --- ARCP --------------------------------------------------------------------
ARCP_SDK_VERSION=latest
ARCP_RUNTIME_HOST=0.0.0.0
ARCP_RUNTIME_PORT=8080
ARCP_RUNTIME_PATH=/arcp
ARCP_AUTH_TOKEN=dev-token-change-me
ARCP_CLIENT_NAME=honeypot-dashboard
ARCP_CLIENT_VERSION=1.0.0
ARCP_AGENT_NAME=honeypot.shell
# --- Honeypot ----------------------------------------------------------------
HONEYPOT_SSH_PORT=2222
HONEYPOT_HOSTNAME=debian-prod-04
HONEYPOT_PERSONA=ubuntu-22.04-stale
HONEYPOT_IDLE_TTL=24h
# Per-attacker USD budget. 0.00 disables enforcement (do not deploy that way).
HONEYPOT_PER_SESSION_BUDGET_USD=0.10
HONEYPOT_MAX_TOKENS=256
HONEYPOT_DROP_DIR=/loot
# Runtime storage so persona survives resume.
RUNTIME_STORE_DIR=/data
LOG_LEVEL=info