**Disclaimer:There is no black hat/white hat seo, just what works and what doesn't, also if you're not ok with spamming, then hit the back button right now.Also, I know guestbook spamming is nothing new,but it still works.Now that we are done with that, let's get started.
First of all, you're going to need the live http headers tool bar for firefox, and the web developer toolbar ,search for them and install them both. Also, you need to have a basic understanding of php/curl and basic html.
Ok, now that you have the tool bars installed , we are going to find a guest book to spam. In this example, I'm going to use the aska.cgi gb. Go to Google and do a search for inurl:aska.cgi, choose result #7. Hopefully, you're looking at this page.
Ok, so you're probably wondering what the hell are you going to to do since everything is in some weird asian language. Don't worry about that, now go to web developer toolbar and click on the View Source drop down menu, and choose view source, also click on Disable and disable all Javascript and Meta redirects, this is to avoid any sneaky redirects. You can also view the page source by pressing Ctrl+Shift+U. Now, if you know a form works you can see that all the input fields are in English, now you can go back to the guest book and fill out the form, but before fill everything in, go to Tools in Firefox and choose Live Http Headers, the Live Http Headers window will pop up.
Now go ahead, and fill every text field and submit the form(this guestbook automatically turns any url into a link, so if you want to link to google just write Google in the comment box), if you did everything correctly, you will probably be looking at this page.
Now go over to the http headers window and let's take a look at the headers.
We're solely going to focus on the important parts.
The first thing you're going to notice is the url at the top, http://www.furepu-katuyama.com/cgi-in/aska/aska.cgi this is where you're going to POST your data.Now find where it says “mode=regist
”, this is your POST data.
Fire up your favorite text editor , set variables for the POST url, POST data, your name, email, sub, url and password. Don't forget to urlencode the variable that goes inside the POST data variable.
Here is the complete script
So there you go, a simple guestbook spamming script.
First of all, you're going to need the live http headers tool bar for firefox, and the web developer toolbar ,search for them and install them both. Also, you need to have a basic understanding of php/curl and basic html.
Ok, now that you have the tool bars installed , we are going to find a guest book to spam. In this example, I'm going to use the aska.cgi gb. Go to Google and do a search for inurl:aska.cgi, choose result #7. Hopefully, you're looking at this page.

Ok, so you're probably wondering what the hell are you going to to do since everything is in some weird asian language. Don't worry about that, now go to web developer toolbar and click on the View Source drop down menu, and choose view source, also click on Disable and disable all Javascript and Meta redirects, this is to avoid any sneaky redirects. You can also view the page source by pressing Ctrl+Shift+U. Now, if you know a form works you can see that all the input fields are in English, now you can go back to the guest book and fill out the form, but before fill everything in, go to Tools in Firefox and choose Live Http Headers, the Live Http Headers window will pop up.
Now go ahead, and fill every text field and submit the form(this guestbook automatically turns any url into a link, so if you want to link to google just write Google in the comment box), if you did everything correctly, you will probably be looking at this page.

Now go over to the http headers window and let's take a look at the headers.

We're solely going to focus on the important parts.
The first thing you're going to notice is the url at the top, http://www.furepu-katuyama.com/cgi-in/aska/aska.cgi this is where you're going to POST your data.Now find where it says “mode=regist
”, this is your POST data.
Fire up your favorite text editor , set variables for the POST url, POST data, your name, email, sub, url and password. Don't forget to urlencode the variable that goes inside the POST data variable.
Here is the complete script
Code:
$url = “http://www.furepu-katuyama.com/cgi-bin/aska/aska.cgi
”;
$name='test'
$email='test@yahoo.com'
$sub='123';
$comment='http://www.google.com';
$url='http:www.google.com';
$password = “123456”
$post = "mode=regist&name=”.urlencode($name).”t&email=”.urlencode($email).”&sub=”.$sub.”&comment=”.urlencode($comment).”&url=”.urlencode($url).”&pwd=”.$password.”&cook=on”;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if($httpcode == 200)
{
echo “Comment was Submitted”;
}else{
echo “Error!
}
So there you go, a simple guestbook spamming script.