Update. Changes: test if urls are present in file, test if file exists and other bug fixes. An url scraper would be a great addition Razorbl. Another nice addition would be an capcha cracker...and maybe additions that it willl submit comments to other blogs types.
yes a captcha crack would be a real killer and what about bypassing comment moderators? you know instead of waiting for our comments to be accept by moderators we could just bypass that by cloaking the url meaning only the blog could see the comments search engines and humans wont be able to see the comments only the blog its self anyways since i cant code im going to do research on how to crack captcha and how to bypass comment mods and i will post it here
and thankx to everyone thats helping improve this script handed over to us by ccd345
Update. Changes: test if urls are present in file, test if file exists and other bug fixes. An url scraper would be a great addition Razorbl. Another nice addition would be an capcha cracker...and maybe additions that it willl submit comments to other blogs types.
yes other blog types like and also like guessbooks and wiki's
i went back to the original files. Says it posted properly but nothing is there. i am posting to my own wordpress blogs for testing and nothing shows up.......
Relax. I changed autocommenter.php. The not posting problem is caused by a wrong post url. It is not possible to just add a "wp-comments-post.php" at the end of a page. SO now i get the varibles from the page. posturl and comment_post_ID. I tested it with one of my wordpress blogs and it postes comments without problems. I tested this from the commandline, but I am sure it will work from browser aswell. Just add the comment pages with slash to the addresslist.txt file, like http://www.target1.com/blog/page/ and http://www.target2.com/1922/12/12/page etc..
I have disabled useragent because something went wrong wile posting. Will look at it later guys.
hi guys - just catching up here and implemented the new functionality addons - I have what I believe to be the up-to-date files on a server, but when I call up the main.html, it doesn't populate the form as I suspect it should... I've filled the .txt files with data to test on my own wp blog etc.
I have the following (addresslist.txt,author.txt,autocommenter.php, comments.txt, emails.txt,main.html,proxies.txt,url.txt,useragent s.txt)
my autocommenter.php size is 3,967 bytes - the latest I presume?
Any advice? Thanks in advance!
xhanuman
(I have used the original version successfully) I'm getting a feeling I need to re-up the main.html... looks awfully static.
ok,can we have a pause feature on it? or something thatl keep it running even when the computer is off? I would prefer it if it would keep going even when my comp - I can then do a submission for all those who have helped with the script rather than one or two - cos i feel guilty people think I have been selling it everywhere
blackout or razorbl can you guys make a final update to this script like make all the features work and add the pausing feature hello talking about?? because this script is getting too big damn wish i knew how to code
You could run the program from the commandline under Linux with a cronjob on your webhost. Then it will run while your desktop pc is out. ex.
00 12 * * * php /path/to/autocommenter.php. I will add a file with an url you guys can promote/submit with the next update as a sort of thanx. Much appreciated Razorbl and OP send me a message and then i can add your url you want to get promoted as well. Sorry guys I cannot work on this all the time. Thnx for your patience.
can we just get a final update where all the features are working i notice you said that u disable the user agents blackout can u get it working and razorbl can we get dat serp scraper please.
thankx to cd for sharing this simple script and thankx to blackout and razorbl for making this a great script and cant wait for the latest update blackout oh yea and also can you include the pause feature hell0 was talking about on the final update thankx
Guys, attached is the latest version of autocommenter. Read the README.txt for a quick howto. With regards to the pause function I have no idea how to implement this at the moment. If you have a big list you do not want to run in one go I would recommend splitting them up.
Guys, attached is the latest version of autocommenter. Read the README.txt for a quick howto. With regards to the pause function I have no idea how to implement this at the moment. If you have a big list you do not want to run in one go I would recommend splitting them up.
ok,i guess will jus thave to split them up - on one i had before,at the bottom it would say like submitted to 50 out of 100
then,on next submission,theres a box that says start number,you type 50
but thanks anyways,will be submitting urls if it all works ok now
btw,what is a useragent? is it like a proxy? or ewhat is the difference?
ok,i guess will jus thave to split them up - on one i had before,at the bottom it would say like submitted to 50 out of 100
then,on next submission,theres a box that says start number,you type 50
but thanks anyways,will be submitting urls if it all works ok now
Ahhh..thats something different than a "pauze" button. It is possible to define a certain amount of submissions, but I think the whole text files database is too simple for this. A small database would be a better solution then. As I am doing this on the side its a bit much work to reprogram it to do it in a database. Maybe in the future.
useragent is what the browser sends to the server when it access a page. If you do not define a useragent it will appear blank in the logs also it could raise flags as it would appear as a bot not a human posting the comment.
ok thankx for the update blackout its ok if you cant add the pause feature because i think the best way to use this would be to either have doorway pages or a blogfarm and have a huge list of blogs to comment spam since you would need backlinks in the 100's of 1000's anyway.
yo blackout can you checkout this wordpress url scraper i found on another website for us like can you please modify it to harvest ******** wordpress blogs??
PHP Google Blogsearch URL Scraper
Posted by DaPimp on November 28, 2008 – 12:56 pm
Sometimes you just need a crapload of URL’s from Wordpress blogs. It’s nobodies business why you need them, if you need them, you need them.
Enter DaPimp’s Google Blogsearch URL scraper.
In a nutshell, this script grabs the fist 1,000 results of Wordpress blogs for a given keyword, and spits them out in a nice list for you.
**You’ll need PHP5, and a server with cURL enabled for this script to work**
Instructions for use:
1. You can either download the script here (change the file extension to .php), or just copy and paste the code below (wordpress buggers up the quote marks in code, so you’ll probably need to go and replace them manually -just download the script, it’s much easier)
2. Open the script in a text editor, and change the $keyword variable at the top to the keyword you want to search for
3. Save the script and upload it to your server
4. Navigate to the script in your browser, and wait, you’ll get your list
============ Start PHP Script ================
<?php
//give the script a keyword to search for
$keyword = “ipod touch”;
$keyword = str_replace(” “, “+”, $keyword);
//start a counter so we can number our results
$num = 0;
//set a start for our paging of Google Blogsearch (we’re going to be getting 10 pages X 100 results)
$start = 0;
do {
//Create the feed URL we’re going to get from Google Blogsearch
$feed = ‘http://blogsearch.google.com/blogsea...n&q=%22′ .$keyword. ‘+%22powered+by+wordpress%22&ie=utf-8&num=100&start=’ .$start. ‘&output=rss’;
//We’re using cURL to actually go fetch the page from Google Blogsearch
$ch = curl_init($feed);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $feed);
$page = curl_exec($ch);
curl_close($ch);
//Loop through the feed, and suck out the URL’s
$xml = new SimpleXMLElement($page);
foreach ($xml->channel->item as $item) {
//Add 1 to our counter, so our list has numbers next to the URL’s
$num = $num + 1;
$link = $item->link;
//Print our shit to the page
echo $num. ‘ - <a href=”‘ .$link. ‘”>’ .$link. ‘</a><br>’;
}
//Have a rest so we don’t get banned for hitting Google too hard and fast
sleep(30);
//Add 100 to the start, so we can fetch the next 100 results
$start = $start + 100;
}
//Keep doing this shit until we get to page 10 of the Google results
while ($start < 1000);
i couldnt find the "collector.php" which was said in the readme.txt, i presume the collector php is ti find the ******** wp blogs. can some one attach this
The script collector.php was something I was working on to collect blogs from google. But I see that brainet77 allready made a blog harvester. Good job! I think you can just add tthe wpfinder.php script to the rest since autocommenter.php will read the gathered addresslist.txt and uses the same proxies.txt and useragents.txt.
Bookmarks