Fixing PollDaddy Polls

JMintheBH

Newbie
Joined
Feb 26, 2012
Messages
6
Reaction score
0
Hello everyone,

I have been a long time reader of BHW, but I figure it's time for me to stop reading and start adding to the content here. As a first time poster, it can be pretty daunting, so let me know if I'm posting in the right spot. So I'm going to try and provide something of value to you all!

I'm currently working on a polldaddy imacro that will allow anyone to win, I'd like to share it,but I need some help perfecting it - if you have any other ideas, then please share.

Use Firefox, and the addons proxy tool and imacro.

Plug in the imacro code
Code:
SET !DATASOURCE_COLUMNS 4
SET !ERRORIGNORE YES
TAB T=1
URL GOTO=about:blank
URL GOTO=TYPEINPOLLDADDYADDRESS
SET !TIMEOUT_PAGE 25 
TAG POS=1 TYPE=LABEL ATTR=TXT:TYPEINCHOICE
TAG POS=1 TYPE=INPUT:RADIO FORM=NAME:formPoll ATTR=ID:PDI_answerNUMBERGENERATED
TAG POS=1 TYPE=A ATTR=TXT:Vote
WAIT SECONDS=1
TAB OPEN
TAB T=2
TAB CLOSE
TAB T=1

Of course, you should use the imacro once through on the polldaddy site to get your position tags, what URL to goto, and what answer choice you want generated.

The code also will skip over a slow proxy, and not be stopped if the proxy causes a popup.

Then you want to have the firefox add on "Proxy Tool" (just google proxy tool - it's there)
Load up a list of 500 proxies (if you know how to add more at once, let me know), and in the settings of the tool, set it to +New Proxy every tab +Clear cookies every new proxy

It goes pretty fast, and with a good list of proxies, you can go very fast.

The question is:

How to go even faster? Anyone know any scripting that can be done? I've researched, but only found out-of-date methods, so what I posted is the best I had figured out.

I've ran it on several computers at once, and it was working very well. But let's say you're up against many more computers than you - what to do then?
Anyone know any scripting or hacks to even further fix polldaddy?

Thanks all! Glad to be a member here =D
 
I'll start off by saying I'm a complete rookie but if some one would be so kind as to tell me how to use this thing or something like it on this poll I'm trying to win. The other side has some kind of votebot so I'm looking for a way to equalize things. The poll id is 706957 and the id of what I'm trying to vote for is 32080216. The poll has a captcha I've tried doing a bunch of different things but trying to learn how to do this stuff myself is too damn difficult
 
Last edited:
You guys might want to look into Ubot studio, you can create a custom bot to handle this + proxies + captchas.
 
Thanks for responding, well I'm using iMacro it works but because of the captcha so I need to modify the script some how to account for that but like I said trying to learn how to do all that from scratch when it's your first time doing that is really hard to do

SET !ERRORIGNORE YES
VERSION BUILD=8300326 RECORDER=FX
TAB T=1
URL GOTO=polldaddy poll
TAG POS=1 TYPE=INPUT:RADIO ATTR=ID:PDI_answer32080216
TAG POS=2 TYPE=SPAN ATTR=TXT:Vote
FILEDELETE NAME=C:\pic.jpg
ONDOWNLOAD FOLDER=C:\FILE=pic.jpg
TAG POS=3 TYPE=IMG ATTR=HREF:<I'm guessing I put the location of the captcha here>CONTENT=EVENT:SAVEITEM
TAB OPEN
TAB T=2
URL GOTO=beatcaptchas
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:upload.php ATTR=ID:key CONTENT=<beatcaptchakey>
TAG POS=1 TYPE=INPUT:FILE FORM=ACTION:upload.php ATTR=NAME:file
CONTENT=C:\pic.jpg
WAIT SECONDS=3
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:upload.php ATTR=NAME:submit
TAG POS=1 TYPE=BODY ATTR=TXT:* EXTRACT=TXT
SET !VAR3 {{!EXTRACT}}
TAB T=3
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:regFormBody ATTR=ID:captcha CONTENT={{!var3}}
 
Last edited:
Back
Top