OP 24 September, 2024 - 09:29 PM
Hi guys,
I was bored and made a python checker which is request based. Apparently DailyMotion has a flaw in how they handle ids required for login...
All you need is working proxies, email:pass and the session details which will be automatically obtained when running the first time.
All you have to do is PRESS YES to obtain a new session DATA when it first starts!! ITS A MUST or it wont work.
Make sure you have the chromedriver.exe in the folder.
This is not a selenium checker!! It just uses selenium for the first login to obtain some data from a failed login. Or uses selenium if you want to obtain new session data.
The actual checking happens with requests multithreaded.
Scripts checks for bad proxies automatically but doesn't show it! If it finds a bad proxy it skips it.
If for whatever reason the session details are not working just recreate them with the first step in the app!! PRESS YES!!
LEAVE A LIKE IF YOU ENJOY MY CONTENT
I was bored and made a python checker which is request based. Apparently DailyMotion has a flaw in how they handle ids required for login...
All you need is working proxies, email:pass and the session details which will be automatically obtained when running the first time.
All you have to do is PRESS YES to obtain a new session DATA when it first starts!! ITS A MUST or it wont work.
Make sure you have the chromedriver.exe in the folder.
This is not a selenium checker!! It just uses selenium for the first login to obtain some data from a failed login. Or uses selenium if you want to obtain new session data.
The actual checking happens with requests multithreaded.
Scripts checks for bad proxies automatically but doesn't show it! If it finds a bad proxy it skips it.
Code:
[align=justify]def test_proxy(proxy):
"""Test if the proxy is working by making a request to ipify."""
try:
response = requests.get('https://api.ipify.org?format=json', proxies=proxy, timeout=5)
#print(response.json())
return response.status_code == 200
except Exception:
return False[/align]
If for whatever reason the session details are not working just recreate them with the first step in the app!! PRESS YES!!
LEAVE A LIKE IF YOU ENJOY MY CONTENT