For the complete documentation index, see llms.txt. This page is also available as Markdown.

CURL via BurpSuite

Redirect Curl request to Burp Suite

If you are using curl for some reason and want to redirect the request to the burp suite. This can be done by using control such as below:

┌──(root㉿kali)-[~]
└─# curl --insecure -x 127.0.0.1:8080 'POST' \
  'https://my-secure.api.test/notify' \
  -H 'accept: */*' \
  -d ''

Last updated