7 lines
366 B
Bash
Executable File
7 lines
366 B
Bash
Executable File
#!/bin/bash
|
|
# V31 batch generator - Opus WIRE doctrine 13+7 - Skill: wevia-master-url
|
|
# Description: WEVIA Master URL status
|
|
# Whitelist-safe timeout 8s
|
|
set +e
|
|
timeout 8 bash -c "curl -sk -o /dev/null -w '%{http_code}' --max-time 3 https://weval-consulting.com/wevia-master.html" 2>&1 || echo "{\"skill\":\"wevia-master-url\",\"error\":\"timeout_or_missing_tool\"}"
|