rate_limit_check
Test API rate limits by sending controlled request bursts to an endpoint, specifying method, delay, and auth headers. Identify vulnerabilities in backend systems with CyberMCP.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auth_header | No | Authentication header (if any) | |
endpoint | Yes | API endpoint to test | |
http_method | No | HTTP method to use | GET |
request_body | No | Request body (for POST/PUT requests) | |
request_count | No | Number of requests to send | |
request_delay_ms | No | Delay between requests in milliseconds |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"auth_header": {
"description": "Authentication header (if any)",
"type": "string"
},
"endpoint": {
"description": "API endpoint to test",
"format": "uri",
"type": "string"
},
"http_method": {
"default": "GET",
"description": "HTTP method to use",
"enum": [
"GET",
"POST",
"PUT",
"DELETE"
],
"type": "string"
},
"request_body": {
"description": "Request body (for POST/PUT requests)",
"type": "string"
},
"request_count": {
"default": 20,
"description": "Number of requests to send",
"maximum": 50,
"minimum": 5,
"type": "number"
},
"request_delay_ms": {
"default": 100,
"description": "Delay between requests in milliseconds",
"maximum": 1000,
"minimum": 0,
"type": "number"
}
},
"required": [
"endpoint"
],
"type": "object"
}