sensitive_data_check
Detect sensitive data exposure in APIs by testing endpoints for vulnerabilities like authentication bypass, injection attacks, and data leakage.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endpoint | Yes | API endpoint to test | |
http_method | No | HTTP method to use | GET |
request_body | No | Request body (for POST/PUT requests) | |
use_auth | No | Whether to use current authentication if available |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"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"
},
"use_auth": {
"default": true,
"description": "Whether to use current authentication if available",
"type": "boolean"
}
},
"required": [
"endpoint"
],
"type": "object"
}