secubox-openwrt/package/secubox/secubox-p2p/root/www/api/threat-intel/apply
CyberMind-FR 1652b39137 feat(p2p): Add decentralized threat intelligence sharing via mesh
Share CrowdSec bans and mitmproxy detections between mesh nodes using
the existing blockchain chain + gossip sync. Received IOCs from trusted
peers are auto-applied as CrowdSec decisions based on a three-tier trust
model (direct/transitive/unknown).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 11:13:51 +01:00

34 lines
927 B
Bash
Executable File

#!/bin/sh
# Threat Intel API - Apply pending IOCs
# POST: Triggers processing and applying of received IOCs
echo "Content-Type: application/json"
echo "Access-Control-Allow-Origin: *"
echo "Access-Control-Allow-Methods: POST, OPTIONS"
echo "Access-Control-Allow-Headers: Content-Type"
echo ""
# Handle CORS preflight
if [ "$REQUEST_METHOD" = "OPTIONS" ]; then
exit 0
fi
if [ "$REQUEST_METHOD" != "POST" ]; then
echo '{"success":false,"error":"method_not_allowed","message":"Use POST to trigger apply"}'
exit 0
fi
. /usr/lib/secubox/threat-intel.sh 2>/dev/null
ti_init
result=$(ti_apply_pending 2>/dev/null)
if [ -n "$result" ]; then
applied=$(echo "$result" | jsonfilter -e '@.applied' 2>/dev/null || echo "0")
skipped=$(echo "$result" | jsonfilter -e '@.skipped' 2>/dev/null || echo "0")
echo "{\"success\":true,\"applied\":$applied,\"skipped\":$skipped}"
else
echo '{"success":true,"applied":0,"skipped":0}'
fi