I need to scan some APIs that only available on HTTP protocol.
Let's say I'm testing http://example.com, I did follow commands
export http_proxy=localhost:8080
export https_proxy=localhost:8080
curl http://example.com
<html><body>Redirecting to https://example.com/</body></html>
http://example.com is accessible however ZAP proxy always gives me a 302 Redirect response. And in the GUI, there is nothing captured by ZAP.
Capturing HTTPS APIs is working well, but how can I make it work for HTTP?
Thank you in advance.