http_form_submit
Simulate HTML form submissions for penetration testing: configure method, headers, cookies, and redirects, then capture response status, headers, body, and redirect chain.
Instructions
Submit an HTML form (simulates browser form POST). url: form action URL form_data: dict of form fields e.g. {"username": "admin", "password": "test"} method: POST (default) or GET headers: additional HTTP headers cookies: session cookies to include follow_redirects: follow redirects after submit (default True) Returns: response status, headers, body, redirect chain
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| method | No | POST | |
| cookies | No | ||
| headers | No | ||
| form_data | Yes | ||
| follow_redirects | No |