• caglararli@hotmail.com
  • 05386281520

Burpsuite proxy does not get HTTP error 429 but vanilla python requests do?

Çağlar Arlı      -    18 Views

Burpsuite proxy does not get HTTP error 429 but vanilla python requests do?

When I make a normal python request to some site without any proxies I am getting a 429 response, too many requests. However when I open up burpsuite proxy and add

proxies = {
    "http": "http://127.0.0.1:8080", "https": "http://127.0.0.1:8080"
    }

In my python request, somehow the request goes through and I get 200 response. Why is that? I sent the proxied request to repeater and it matches up identically to the python request to so it does not look like burpsuite is changing it in any way. Why is this happening? Dont get me wrong this is a good thing but I just want to know how burpsuite is getting around the error.