RE: [Requesting] Auto Proxy/Auto Refresh. Better details in thread. 07-27-2014, 02:09 AM
#11
[Requesting] Auto Proxy/Auto Refresh. Better details in thread. filter_list | |
RE: [Requesting] Auto Proxy/Auto Refresh. Better details in thread. 07-30-2014, 01:09 PM
#12
I hope you know that if you cheat they will get you. Anyway do whatever you want.
You will need Python 2.7 and Selenium and Firefox. If 3SidedSquare want he can create GUI and make the program multithreaded. I have other job to do now. Also I recommend when you use the script use other browser than Firefox you can use everything else chrome, opera... Also the process will be really slow because of the proxy speed (and the fact that the scrip use only one thread). Check the proxy list for death proxies.
Code:
from selenium import webdriver
from selenium.webdriver.common.proxy import *
proxy_list = open("list.txt",'r')
def visit(proxy_from_list):
proxy = Proxy({
'proxyType': ProxyType.MANUAL,
'httpProxy': proxy_from_list,
})
browser = webdriver.Firefox(proxy=proxy)
browser.get('http://whatismyip.com') # change whatismyip.com with your page
browser.quit()
return
def main():
for i in proxy_list:
print "[*]Testing proxy:" + i
visit(i)
if __name__ == "__main__":
main()
You will need Python 2.7 and Selenium and Firefox. If 3SidedSquare want he can create GUI and make the program multithreaded. I have other job to do now. Also I recommend when you use the script use other browser than Firefox you can use everything else chrome, opera... Also the process will be really slow because of the proxy speed (and the fact that the scrip use only one thread). Check the proxy list for death proxies.
RE: [Requesting] Auto Proxy/Auto Refresh. Better details in thread. 07-31-2014, 01:45 AM
#13
I have one on my broken laptop that does this with just python I'm fairly certain, and uses custom set referrers as well, but think it's one target site at a time.
Python required ofc.
And cos laptop won't work, can't fetch it, but ik I had the source somewhere in an image.
Python required ofc.
And cos laptop won't work, can't fetch it, but ik I had the source somewhere in an image.
telegram: @satan_sl
Users browsing this thread: 1 Guest(s)