Automatic Submission to Social Bookmark Sites
I was recently being active in “digg me, digg you” topics, until I came up with the idea of automatic submission and voting. The only thing that separates human from robot submissions is the Captcha recognition.
Here is what I have discovered:
<html>
<body>
<font color="blue">Reddit</font>
<form action="http://reddit.com/ajax" method="POST">
<input type="hidden" name="action" value="mod">
<input type="hidden" name="dir" value="1">
hash: <input type="text" name="uh" value="reddit hash">
id: <input type="text" name="id" value="4110295">
<input type="submit">
</form>
<font color="yellow">Digg</font><form method="post" action="http://digg.com/digremote">
hash: <input type="text" name="digcheck" value="digg chech value">id: <input type="text" name="id" value="my_id">
<input type="hidden" name="type" value="s">
<input type="submit">
</form>
<font color="green">Stumbleupon</font>
<form method="post" action="http://www.stumbleupon.com/rate.php?username=my_id">
user: <input type="text" name="username" value="my_id">
pass: <input type="text" name="password" value="stumble_password%3D">
url: <input type="text" name="url" value="http%3A%2F%2Freddit.com%2F&">
<input type="hidden" name="rating" value="1">
<input type="hidden" name="charset" value="UTF-8">
<input type="hidden" name="version" value="">
<input type="submit">
</body>
</html>
http://reddit.com/ajax = voting script, you have to read the login hash from the session cookie.
http://digg.com/digremote = voting script for digg.com. A little bit more complex, but it works. I’ve also discovered this script that creates users, submits articles and votes on digg.com
Stumbleupon is a little bit harder to trick as it processes the variables via the toolbar. Nonetheless, it can be spammed too.
If someone evolves around this idea, please let me know.