Captcha Validation
GET
Captcha HTML Form
GET
Captcha HTML FormThis endpoint retrieves a CAPTCHA HTML form to verify the authenticity of a user attempting to access or interact with the system. CAPTCHA is used as a security measure to prevent automated bots from performing malicious activities. The HTML response includes the necessary fields and scripts for displaying and submitting the CAPTCHA form.
Path: /users/captcha/
Authentication Required: No
Headers:
Example Request
Example Response (200 OK)
Response Parameters
html
String
Contains the CAPTCHA form as an HTML string, including the hidden CSRF token and Google reCAPTCHA widget.
POST
Captcha Validation
POST
Captcha ValidationThis endpoint processes the CAPTCHA form submission to validate that the user is human. It verifies the Google reCAPTCHA response and the CSRF token, ensuring both are correct. Upon successful validation, the throttled IP is authorized to proceed with further actions.
Path: /users/captcha/
Authentication Required: No
Headers:
Body Parameters
csrfmiddlewaretoken
string
True
The token included in the CAPTCHA form for CSRF protection.
g-recaptcha-response
string
True
The response token provided by Google after verifying the CAPTCHA.
Request Body
Example Request
Example Response (302 Found)
A successful validation that redirects the user to the next step or process.
GET
Captcha HTML Form for Project Zero
GET
Captcha HTML Form for Project ZeroThis endpoint retrieves a CAPTCHA HTML form to verify the authenticity of a user attempting to access or interact with the system. CAPTCHA serves as a security measure to prevent automated bots from carrying out malicious activities. The HTML response includes the necessary fields and scripts for displaying and submitting the CAPTCHA form.
Path: /users/pz-captcha/
Authentication Required: No
Headers:
Example Request
Example Response (200 OK)
Response Parameters:
html
String
Contains the CAPTCHA form as an HTML string, which includes the hidden CSRF token and the Google reCAPTCHA widget.
POST
Captcha Validation for Project Zero
POST
Captcha Validation for Project ZeroThis endpoint processes the CAPTCHA form submission to validate that the user is human. It verifies both the Google reCAPTCHA response and the CSRF token to ensure they are correct. Upon successful validation, the throttled IP is authorized to proceed with further actions.
Path: /users/pz-captcha/
Authentication Required: No
Headers:
Body Parameters
csrfmiddlewaretoken
string
True
The token included in the CAPTCHA form for CSRF protection.
g-recaptcha-response
string
True
The response token provided by Google after verifying the CAPTCHA.
Request Body
Example Request
Example Response (302 Found)
A successful validation that redirects the user to the next step or process.
Was this helpful?