Below is the PHP script that drop comments in all REDDIT posts starting from the first page.
This script is just for educational purposes!
DO NOT RUN IT!
<?php
/*
* This software is for educational purposes only
* Do not run it in the internet or use it for automated comments posting
*
* READ ME:
* 1. Put correct reddit username and password
* 2. Run it from command line:
*
* php reddit_commenter.php
*/
define("USER", "reddit_username");
define("PASS", "reddit_password");
define("USE_PROXY", false);
define("HTTP_PROXY_SERVER", "127.0.0.1:3128");
/*
DO NOT CHANGE THE LINES BELOW
*/
define("HOSTNAME", "http://reddit.com");
$default_header[] = "Accept: */*";
$default_header[] = "Accept-Language: uk";
$default_header[] = "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Maxthon; .NET CLR 1.1.4322)";
$default_header[] = "Host: reddit.com";
$default_header[] = "Proxy-Connection: Keep-Alive";
$default_header[] = "Pragma: no-cache";
$default_header[] = "x-prototype-version: 1.3.1";
$default_header[] = "x-requested-with: XMLHttpRequest";
$DEFAULT_HEADER = $default_header;
$login_header[] = "Accept: */*";
$login_header[] = "Accept-Language: uk";
$login_header[] = "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Maxthon; .NET CLR 1.1.4322)";
$login_header[] = "Host: reddit.com";
$login_header[] = "Proxy-Connection: Keep-Alive";
$login_header[] = "Pragma: no-cache";
$login_header[] = "x-prototype-version: 1.3.1";
$login_header[] = "Referer: http://reddit.com";
$login_header[] = "x-requested-with: XMLHttpRequest";
$LOGIN_HEADER = $login_header;
$post_header[] = "Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-icq, */*";
$post_header[] = "Accept-Language: uk";
$post_header[] = "User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Maxthon; .NET CLR 1.1.4322)";
$post_header[] = "Host: reddit.com";
$post_header[] = "Proxy-Connection: Keep-Alive";
$post_header[] = "Pragma: no-cache";
$post_header[] = "x-prototype-version: 1.3.1";
$post_header[] = "x-requested-with: XMLHttpRequest";
$POST_HEADER = $post_header;
define("COOKIE_FILENAME", "C:/cookie.txt");
function GetCurlPage ($pageSpec, $header, $follow=true) {
$ch = curl_init($pageSpec);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
if ($follow) curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
if (USE_PROXY) curl_setopt($ch, CURLOPT_PROXY, HTTP_PROXY_SERVER);
curl_setopt($ch, CURLOPT_COOKIEJAR, COOKIE_FILENAME);
curl_setopt($ch, CURLOPT_COOKIEFILE, COOKIE_FILENAME);
$tmp = curl_exec ($ch);
curl_close ($ch);
return $tmp;
}
function PostCurlPage ($pageSpec, $data, $header, $follow=false) {
$ch = curl_init($pageSpec);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
if ($follow) curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
if (USE_PROXY) curl_setopt($ch, CURLOPT_PROXY, HTTP_PROXY_SERVER);
curl_setopt($ch, CURLOPT_COOKIEJAR, COOKIE_FILENAME);
curl_setopt($ch, CURLOPT_COOKIEFILE, COOKIE_FILENAME);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$tmp = curl_exec ($ch);
curl_close ($ch);
return $tmp;
}
function startpage($link){
global $DEFAULT_HEADER;
$header = $DEFAULT_HEADER;
return GetCurlPage($link, $header);
}
function login(){
global $LOGIN_HEADER;
$login_data = "ajax=1&op=login&user=".USER."&passwd=".PASS."&rem=on&_=";
$login_length = strlen($login_data);
$header = $LOGIN_HEADER;
$header[] = "Content-Type: application/x-www-form-urlencoded";
$header[] = "Content-Length: $login_length";
$header[] = "Referer: ".HOSTNAME;
return PostCurlPage("http://reddit.com/login", $login_data, $header);
}
function get_comment_page($post_link){
global $DEFAULT_HEADER;
$header = $DEFAULT_HEADER;
return GetCurlPage($post_link, $header);
}
function create_post_data($url, $parent_id, $comment){
return "url=".urlencode($url)."&parentid=".$parent_id."&comment=".urlencode($comment);
}
function post_comment($url, $parent_id, $comment){
global $DEFAULT_HEADER;
$post_data = create_post_data($url, $parent_id, $comment);
$login_length = strlen($post_data);
$header = $DEFAULT_HEADER;
$header[] = "Content-Type: application/x-www-form-urlencoded";
$header[] = "Content-Length: $login_length";
$header[] = "Referer: ".HOSTNAME."$url";
$post = PostCurlPage("http://reddit.com/comment", $post_data, $header);
}
function get_comment_links($html){
$pattern = '/href="(\/info\/[^\/]+\/comments)"\sclass="bylink"/';
preg_match_all($pattern, $html, $matches);
return $matches[1];
}
function get_parent_id ($html) {
$pattern = '/<input\stype="hidden"\sname="parentid"\svalue="(\d+)?">/';
preg_match_all($pattern, $html, $matches);
return $matches[1][0];
}
$post_body = "This is automated comment from [REDDIT automated commenter PHP script](http://redditscripts.blogspot.com/2007/04/script-that-makes-comments-in-all-posts.html)";
for($i=0; $i<500; $i+=25){
if (login()=='0'){
echo "Processing http://reddit.com/?offset=$i\n";
$start_page = startpage("http://reddit.com/?offset=$i");
$comment_links = get_comment_links($start_page);
foreach ($comment_links as $comment_link){
echo "\tget comment link $comment_link\n";
$comment_page = get_comment_page(HOSTNAME.$comment_link);
$parent_id = get_parent_id($comment_page);
post_comment($comment_link, $parent_id, $post_body);
echo "\tPost done\n";
}
} else {
echo "Cannot login [$login]";
}
}
?>
12 comments:
He alreadywow goldhas more receiving yardswow goldin one postseason thanwow goldany player in history.
He makes every defensive back look too slow,toodofus kamaskamas dofusacheter dofusbuy kamassmall or too weak toacheter kamascover him.On Fitzgerald's first touchdown.
On his second touchdown,Fitzgeraldworld of warcraft goldcheap wow goldwow oradjusted beautifully to Kurt Warner's throw while it was in the air.While Fitzgerald was making one of his patented leaping catches,Eagles safety Quintin Demps got twistedwow power levelingworld of warcraft goldwow gold kaufenwow gold cheaplike a Philadelphia pretzel.Demps ended upwow levelwow geldwow gold kaufenfalling down,allowingwow gold cheapwow powerlevelingFitzgerald to waltz into the end zone for a 62-yard touchdown.
The Eagles had not givenwow goldwow goldup more than 20 points in a gamewow goldwow goldsince Thanksgiving.
Sword of the New World Vis in which world have one feature that feel like a case of convenience gone extreme, their first month of life is important. First of all, realize the Sword of the New World Gold is useful to the each new player. You only play with others and buy vis can get happy from the game. After learned at the Eve world, you may found the cheap snw vis. However, Sword of the New World money can also save a lot your time.
Tibia Gold and the game I have played for about 3 years now and I have always found it fun to play. You should compensate him by giving him some Tibia coins, and then Pvp or PK. Normal monsters; you have to lure a handful of monsters with Tibia money so that switching between them can be easier. There are many benefits to guild in tibia gp. When you Tibia Platinum, it is not still deal high amounts of damage.
rohan crone has many ways for us to use. When you start the Rohan Online game, your character will be level 1. I remembered that when I started playing this Rohan game with some little cheap rohan money. My friends all told me that the best way to spend rohan online gold is a good way. But I could not like spending my own rohan online crone. If you do not like upgrading level step by step, you can cost rohan gold to help your character to reach level high.
rf gold which in RF Online Game is very popular for many players. Play this online game the premise that we have more enough rf online gold first. They are able to combine creative tools and weapons with some rf money and the Light form of universal magic. Under such sustained attacks they fell from power, yet they have bided their rf cp and time. Due to make cheap rf gold the intense gravity on their home planet, the Bellato are the smallest people.
You know ,I have some Entropiauniverse ped, and my friend also has some
Entropia Universe Gold, do you kouw they have the same meaning,Both of them can be called
Entropia Universe Money,I just want to
Buy Entropia Universe Gold, because there are many
cheap Entropiauniverse ped.
You know ,I have some Atlantica online Gold, and my friend also has some
Atlantica Gold, do you kouw they have the same meaning,Both of them can be called
Atlantica online money,I just want to
buy Atlantica online Gold, because there are many
cheap Atlantica online Gold.
I can get Pirates of the Burning Sea Gold cheaply,
Yesterday i want to buy potbs goldfor my brother.
i hope him like it. i will buy potbs Doubloon for him
as birthday present. i like the potbs money very much.
I usuallybuy potbs Doubloon and keep it in my store.
I can get Solstice Kron cheaply.
Yesterday i bought Solstice Online Kronfor my brother.
i hope him like it. i will give Solstice Gold to him
as birthday present. i like the Solstice Online money very much.
I usually buy cheap Solstice Kron and keep it in my store.
Once I played hero, I did not know how to get strong, someone told me that you must have hero gold. He gave me some hero online gold, he said that I could buy hero gold, but I did not have money, then I played it all my spare time. From then on, I got some hero online money, if I did not continue to play it, I can sell hero money to anyone who want.
We have holic gold. He gave me some holic money, he said that I could buy holic online gold, but I did not have money, then I played it all my spare time. From then on, I got some cheap holic gold. We also sell holic online money
Making World of Kung fu Gold is the old question : Honestly there is no fast way to make lots of WoKf gold . Sadly enough a lot of the people that all of a sudden come to with millions of buy World of Kung fu Gold almost overnight probably duped . Although there are a lot of ways to make lots of cheap World of Kung fu Gold here I will tell you all of the ways that I know and what I do to buy World of Kung fu money.
As a new player , you may need some game guides or information to enhance yourself.
wow gold is one of the hardest theme for every class at the beginning . You must have a good way to manage your World of Warcraft Gold.If yor are a lucky guy ,you can earn so many warcraft gold by yourself . But if you are a not , I just find a nice way to buy wow gold. If you need , you can buy cheap wow gold at our website . Go to the related page and check the detailed information .
Do you know the Archlord gold, in the game you need the
Archlord money. it can help you increase your level. My friends always asked me how to
buy Archlord gold, and I do not know he spend how much money to buy the
archlord online Gold, when I see him in order to play the game and search which the place can buy the
cheap Archlord gold. I am happy with him.
Do you know the cabal alz , in the game you need the
cabal gold. it can help you increase your level. My friends always asked me how to
buy cabal alz, and I do not know he spend how much money to buy the
cabal money, when I see him in order to play the game and search which the place can buy the
cabal online alz. I am happy with him.
http://www.intagent.com
Intagent is a Leading Real Estate Web Design Company. We provided Real Estate Web Design, FSBO Websites, Realtor Website Design,Low cost Real Estate Website Design, Real Estate Agent Design Templates, and more...
Post a Comment