Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


[Requesting] Auto Proxy/Auto Refresh. Better details in thread. filter_list
Author
Message
RE: [Requesting] Auto Proxy/Auto Refresh. Better details in thread. #11
(07-27-2014, 12:44 AM)GetR34P3D Wrote: Any recommanded programs for the job?

The one I posted above wasn't made to spam a link, that's just a side effect. It's purpose was to check lists of proxies for ones that still respond.
[Image: jWSyE88.png]

Reply

RE: [Requesting] Auto Proxy/Auto Refresh. Better details in thread. #12
I hope you know that if you cheat they will get you. Anyway do whatever you want.

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.

Reply

RE: [Requesting] Auto Proxy/Auto Refresh. Better details in thread. #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.
telegram: @satan_sl

Reply







Users browsing this thread: 1 Guest(s)