basic_auth
Validate and test basic authentication mechanisms by verifying username and password inputs to identify potential security vulnerabilities in API endpoints.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
password | Yes | Password for authentication | |
username | Yes | Username for authentication |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"password": {
"description": "Password for authentication",
"type": "string"
},
"username": {
"description": "Username for authentication",
"type": "string"
}
},
"required": [
"username",
"password"
],
"type": "object"
}