mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-01-11 19:21:11 +03:00
- Implemented a new UI module (sql_cli/ui.py) for displaying banners and scan results using the Rich library. - Created utility functions in sql_cli/utils.py for generating log filenames and saving logs. - Refactored sqlmapcli.py to utilize the new UI and utility functions, enhancing the interactive mode and scan processes. - Added support for custom headers and POST data in the interactive mode. - Introduced a test endpoints JSON file (test_endpoints.json) for batch testing.
20 lines
405 B
Plaintext
20 lines
405 B
Plaintext
[
|
|
{
|
|
"url": "https://demo.owasp-juice.shop/rest/products/search?q=test"
|
|
},
|
|
{
|
|
"url": "https://demo.owasp-juice.shop/rest/user/login",
|
|
"data": {
|
|
"email": "test@example.com",
|
|
"password": "password123"
|
|
}
|
|
},
|
|
{
|
|
"url": "https://demo.owasp-juice.shop/api/Users/1",
|
|
"headers": [
|
|
"Authorization: Bearer my_secret_token",
|
|
"X-Custom-Header: value"
|
|
]
|
|
}
|
|
]
|