7 lines
357 B
Bash
Executable File
7 lines
357 B
Bash
Executable File
#!/bin/bash
|
|
# V31 batch generator - Opus WIRE doctrine 13+7 - Skill: http-head-api
|
|
# Description: HTTP HEAD WEVIA API
|
|
# Whitelist-safe timeout 8s
|
|
set +e
|
|
timeout 8 bash -c "curl -sk -I --max-time 3 https://weval-consulting.com/api/wevia-autonomous.php 2>/dev/null | head -3" 2>&1 || echo "{\"skill\":\"http-head-api\",\"error\":\"timeout_or_missing_tool\"}"
|