Auto voting program... or can someone smarter than me figure this out?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DaddyzHome
    Confirmed User
    • Aug 2003
    • 200

    #1

    Auto voting program... or can someone smarter than me figure this out?

    OK, so there is this online poll / vote that allows you to vote over and over again, but rather than sit in front of my computer all day and voting, refreshing the page and voting again, I'm looking for a quicker / easier way to get this done. I set up a macro in Firefox, but even with 4 computers running, it's only doing about 50 votes a minute.

    The problem is, I am voting for one option, while someone else is voting over 150 times a minute for the other one... Is there a way to manipulate the code to vote over and over without waiting for the page to refresh with the macro?

    Here is the code for the form...

    Code:
    <div id="polls-63" class="wp-polls">
    	<form id="polls_form_63" class="wp-polls-form" action="/round1" method="post">
    		<p style="display: none;"><input type="hidden" name="poll_id" value="63" /></p>
    		<p style="text-align: center;"><strong># 1 vs. #2</strong></p><div id="polls-63-ans" class="wp-polls-ans"><ul class="wp-polls-ul">
    		<li><input type="radio" id="poll-answer-171" name="poll_63" value="171" /> <label for="poll-answer-171">#1</label></li>
    		<li><input type="radio" id="poll-answer-172" name="poll_63" value="172" /> <label for="poll-answer-172">#2</label></li>
    		</ul><p style="text-align: center;"><input type="button" name="vote" value="   Vote   " class="Buttons" onclick="poll_vote(63);" /></p><p style="text-align: center;"><a href="#ViewPollResults" onclick="poll_result(63); return false;" title="View Results Of This Poll">View Results</a></p></div>
    	</form>
    </div>
  • BestXXXPorn
    Confirmed User
    • Jun 2009
    • 2277

    #2
    For option 1 just hit this page on their domain:

    /round1?poll_63=171

    repeatedly and without mercy you don't even need to wait for the page to load to do it again you just need the 200 header response...
    ICQ: 258-202-811 | Email: eric{at}bestxxxporn.com

    Comment

    • DaddyzHome
      Confirmed User
      • Aug 2003
      • 200

      #3
      Originally posted by BestXXXPorn
      For option 1 just hit this page on their domain:

      /round1?poll_63=171

      repeatedly and without mercy you don't even need to wait for the page to load to do it again you just need the 200 header response...
      Hmmm.. voting's not going up when I do this.

      Comment

      • DaddyzHome
        Confirmed User
        • Aug 2003
        • 200

        #4
        Maybe it did... just took a bit to register.

        Is there a faster way than using a browser window? Is there something that will "hit" this url over and over again without having to refresh the browser window?

        Comment

        • BestXXXPorn
          Confirmed User
          • Jun 2009
          • 2277

          #5
          they may have a check on the "referrer page" In which case you'd need to spoof it... Beyond the scope of this post but you can certainly Google it :P


          If you're familiar with *nix you could write a bash script to multi-thread lynx and fire off about 100 per second, lol...

          I use that method for building stress tests for systems :P
          Last edited by BestXXXPorn; 03-24-2010, 11:49 AM.
          ICQ: 258-202-811 | Email: eric{at}bestxxxporn.com

          Comment

          • DaddyzHome
            Confirmed User
            • Aug 2003
            • 200

            #6
            Originally posted by BestXXXPorn

            If you're familiar with *nix you could write a bash script to multi-thread lynx and fire off about 100 per second, lol...

            I use that method for building stress tests for systems :P
            I'm not familiar with it at all... can you point me in the right direction? That's exactly what I'm looking for.

            Thanks a ton for your help.
            Last edited by DaddyzHome; 03-24-2010, 11:51 AM.

            Comment

            Working...