helios87 0 Posted April 16, 2012 Report Share Posted April 16, 2012 Hello everyone , im struggling with proxies because most of public proxies dont work that well . i have a simple account creator and id like it to check if proxy works at the start of the loop , if it works then save it to different list and file for example "working proxy" and continue to make account with it . if it succeeds save username/pass/proxy IP:port to list and file . if it fails delete and change proxy and start the loop again. Another option is to make proxy checker separatly , test all proxies and save working ones to different file , which can be used to make accounts later . any help is appriciated Thanks Quote Link to post Share on other sites
LoWrIdErTJ - BotGuru 904 Posted April 16, 2012 Report Share Posted April 16, 2012 basically you can have it change proxy want for page loaded with timeout set to maximum load time you want say 10 seconds or 5 for speed. if the item on the page your looking for doesn't show up then change proxy again and loop back. http://screencast.com/t/MarJZoPH Where the random all is my define command for change proxy. so if the error shows up in the page, then continue looping till no error, can also add in a add to list if not an error so you save good ones. Here is attached a proxy checker i through together for you.For socks, and normal proxys, with maximum wait timeout for each proxy when loading the page.check my proxys.ubot 1 Quote Link to post Share on other sites
helios87 0 Posted April 17, 2012 Author Report Share Posted April 17, 2012 Thanks TJ once again for the help . How do i save proxy along with username/password , or can i bind proxy to one account ? Quote Link to post Share on other sites
LoWrIdErTJ - BotGuru 904 Posted April 17, 2012 Report Share Posted April 17, 2012 i normally have my proxy supplier bind the proxys to my ip, as it makes it much easier to use the proxys then having to deal with user/pass combos. but you should be able to add them in there as a table and slightly re-wtire the code given to check them. Quote Link to post Share on other sites
wakins4u 12 Posted April 23, 2012 Report Share Posted April 23, 2012 Thanks TJ. That's classic! Quote Link to post Share on other sites
admin999 0 Posted June 3, 2012 Report Share Posted June 3, 2012 Thanks TJ. Thanks your video Quote Link to post Share on other sites
Lauren 5 Posted July 27, 2012 Report Share Posted July 27, 2012 Any chance of you re-uploading the proxychecker source? Finding allot of broken downloads on the forum. Quote Link to post Share on other sites
k1lv9h 76 Posted July 28, 2012 Report Share Posted July 28, 2012 Here is the file again:ui open file("Proxy list file", #proxy list) ui drop down("Type of Proxy?", ",Socks Proxy,Normal Proxy", #type of proxy) ui drop down("Proxy timeout max", ",1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60", #proxy timeout) ui save file("Save Good Proxys to:", #save to) clear list(%prox) add list to list(%prox, $list from file(#proxy list), "Delete", "Global") set list position(%prox, 0) loop($list total(%prox)) { set(#proxy to check, $next list item(%prox), "Global") if($comparison(#type of proxy, "=", "Normal Proxy")) { then { change proxy(#proxy to check) } else { change proxy("socks4://{#proxy to check}") } } navigate("http://www.whatismyip.com/", "Wait") wait(#proxy timeout) if($exists(<innertext=w"Your IP Address Is:*">)) { then { add item to list(%good proxys, #proxy to check, "Delete", "Global") } else { } } } save to file(#save to, %good proxys)check my proxys.ubotKevin Quote Link to post Share on other sites
jamesfar 15 Posted August 2, 2012 Report Share Posted August 2, 2012 Hi TJ how you determine if a proxy is transparent, anonymous or elite? Quote Link to post Share on other sites
LoWrIdErTJ - BotGuru 904 Posted August 2, 2012 Report Share Posted August 2, 2012 can try http://proxymizer.net/proxycheck/ http://encikwan.com/free-proxy-speed-test/free-proxy-speed-test.html Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.