7 lines
369 B
Bash
Executable File
7 lines
369 B
Bash
Executable File
#!/bin/bash
|
|
# V31 batch generator - Opus WIRE doctrine 13+7 - Skill: nginx-top-404
|
|
# Description: Nginx top 404 URLs
|
|
# Whitelist-safe timeout 8s
|
|
set +e
|
|
timeout 8 bash -c "tail -1000 /var/log/nginx/access.log 2>/dev/null | awk '$9==404 {print $7}' | sort | uniq -c | sort -rn | head -3" 2>&1 || echo "{\"skill\":\"nginx-top-404\",\"error\":\"timeout_or_missing_tool\"}"
|