mcp-based linux cybersecurity tool
2.3K

AI-powered Linux security auditing tool with anomaly detection and real-time alerting.
docker pull steuuu/chihuaudit:latest
# Run single audit
docker run --rm -v /:/host:ro steuuu/chihuaudit:latest audit
# Start monitoring (60s interval)
docker run -d --name chihuaudit-monitor \
-v /:/host:ro \
-e WEBHOOK_URL=https://discord.com/api/webhooks/YOUR_WEBHOOK \
steuuu/chihuaudit:latest monitor --interval 60
Docker Compose:
services:
chihuaudit:
image: steuuu/chihuaudit:latest
volumes:
- /:/host:ro
- ./chihuaudit-data:/data
command: server --port 8080
ports:
- "8080:8080"
Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"chihuaudit": {
"command": "docker",
"args": ["run", "--rm", "-v", "/:/host:ro", "steuuu/chihuaudit:latest", "server", "--stdio"]
}
}
}
Full documentation: GitHub Repositoryā
Docker Hub: steuuu/chihuaudit:latest
GitHub Registry: ghcr.io/girste/chihuaudit:latest
Multi-architecture: linux/amd64, linux/arm64
Signed with: Cosign (SLSA Level 3)
Dual Licensed:
Contact: [email protected]ā
Full license: LICENSEā
š GitHub: https://github.com/girste/CHIHUAUDITā
š§ Contact: [email protected]ā
š Website: https://girste.comā
Content type
Image
Digest
sha256:a493b553fā¦
Size
6.4 MB
Last updated
6 months ago
docker pull steuuu/chihuaudit:0.0.7-teacup