Credential Access
High
- Category
- Privilege Escalation
- Content
```bash # Check env files for HOST setting for f in .env.local .env.development .env.production .env; do if [ -f "$f" ]; then HOST_VAL=$(grep -E "^(OPENCLAW_HOST|HOST)=" "$f" 2>/dev/null | cut -d= -f2) if [ -n "$HOST_VAL" ]; then- Confidence
- 60% confidence
- Finding
- Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
