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