- Joined
- Dec 3, 2023
Try this:I'm just probing a site right now for a thread. I tried using some old tricks I used in python, but the noscript check is throwing a monkey wrench into things.
Open developer console, storage, local storage -> reload page.
Check what cookies are stored and you can just export them to a cookie that you can load with curl. Usually with bot checks they only check the session once and the cookie allows you to use it for a period of time, few hours, maybe a week. Then adding both together:
Code:
curl -b ~/cookie -A "Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/81.0" "https://domain.com"
https://www.selenium.dev would be worth a look.
If you wanna DM me the site, I'd be happy to take a look. I have some time free, I understand if you can't or don't want to tho! I realised this went a little off topic too, apart from selenium I'm not sure what else might fit what you need. It's likely scriptable with bash though.