Jump to content



Welcome to AstaHost - Dear Guest , Please Register here to get Your own website. - Ask a Question / Express Opinion / Reply w/o Sign-Up!

Toggle shoutbox Shoutbox Open the Shoutbox in a popup

@  agyat : (23 May 2013 - 01:23 AM) Wow! Mr. Sb Back Home.
@  OpaQue : (23 May 2013 - 12:44 AM) Ting
@  OpaQue : (24 April 2013 - 02:44 PM) I guess, Time to run Mycent script.
@  OpaQue : (24 April 2013 - 02:43 PM) wow.. not much spam. except habatt posting lot of links.. :P
@  yordan : (23 April 2013 - 01:04 PM) You're welcome, agyat. Nice to have been helpful. Second lesson: try full words, "you" instead of "EW".
@  agyat : (23 April 2013 - 05:03 AM) @YORDAN: tHANK EW FOR YOUR FIRST LESSON.   :D
@  yordan : (22 April 2013 - 09:43 PM) @agyat : "why don't you help me", or "please help me", or "please teach us"
@  yordan : (22 April 2013 - 09:42 PM) welcome back, velma
@  velma : (22 April 2013 - 07:51 AM) **yawns** Good to be back, wonder what is going on here :)
@  agyat : (22 April 2013 - 03:50 AM) Oh! so, why don't help me learn english..
@  yordan : (21 April 2013 - 08:38 PM) The goal mentioned by shiu : "learning english, learning computer"
@  agyat : (21 April 2013 - 06:31 PM) WHAT GOAL?
@  yordan : (20 April 2013 - 10:39 AM) yes, that's our goal. simultaneouly learning English and teaching/learning computer using.
@  shiyu : (20 April 2013 - 07:30 AM) learning english,learning computer
@  yordan : (19 April 2013 - 01:11 PM) Oh, I see, it's just a trick in order to force people looking at your texte. Somehow smart, maybe.
@  agyat : (19 April 2013 - 02:54 AM) And of course I know it is not SEO friendly.
@  agyat : (19 April 2013 - 02:52 AM) There may be two possible answers for that ....


1) Shout was posted using mobile keypad.

2) To force people read content carefully and/or with more concentration.
@  agyat : (19 April 2013 - 02:49 AM) There may be two possible answers for that ....
@  yordan : (18 April 2013 - 09:35 PM) however, why this mixing of capital letters in the middle of your text?
@  agyat : (18 April 2013 - 11:10 AM) false feelings.

Replying to Problems With Spammers In Guestbook


Post Options

    • Can't make it out? Click here to generate a new image

  or Cancel


Topic Summary

miCRoSCoPiC^eaRthLinG

Posted 23 December 2005 - 06:29 PM

One simple way is to add verification to your guestbook which is an image that has random letters and/or numbers that must be entered before you submit your comment on the guestbook.

View Post



That exactly what he did - and that's what CAPTCHA is :huh: It's extremely easy to design and maybe I'll post the code sometime. Infact you can find the script on hundreds of different scripting sites as of today.

miCRoSCoPiC^eaRthLinG

Posted 12 December 2005 - 12:21 PM

Good man great :huh: I just saw it. Good one :) Well done.

finaldesign

Posted 12 December 2005 - 09:10 AM

Hi,
after lot's of trouble, I sucessfuly implemented CAPTCHA into my guestbook. You can test how it works here
Try it, and post here if you find errors/bugs/etc. thanks all!

Jguy101

Posted 05 December 2005 - 09:01 PM

The same thing started happening on my friend's blog: all of a sudden, he was getting a bunch of spam comments, sometimes five at a time or more. Not long after that started, Blogger introduced image verification for blog comments. He turned it on, and the spam comments came to a complete deadstop. Either the spammers were all bots, or they were people who were blind. :)

Quatrux

Posted 05 December 2005 - 07:18 PM

Well I had similar problems, but after I put an image with random numbers and letters, they stopped doing it, so it helps.. by the way I don't think cookies would help, unless it is some stupid guy attacking your guest book..

here is a quite good code to generate random numbers and letters, but i prefer numbers in the image, using gd you can make your own images as you like.


<?php

function random_chars($length = '6') {
	/* Make Random Seed */  $value = '';
	mt_srand((double) microtime() * 1000000);
	$letters = "abcdefghijklmnopqrstuvwxyz"; /* add it if needed '123456789' 'ABCDEFGHIJKLMOPQRSTUVWXZ' */
  for ($i = 0; $i < $length; $i++) {
  	$value .= substr($letters, (mt_rand()%(strlen($letters))), 1);
  }
	return $value;
}
?>


so echo random_chars(); will make an 6 chars random value, you can set any value you want. :)

finaldesign

Posted 05 December 2005 - 12:58 PM

There is one trick you could use that would place a cookie on the offenders computer, then unless they use many different machine to attck you (Not too likely, but possible) you can deny them even posting, at least until they figure out you have put a cookie, but when the cookie is put on them everytime then soon they will get tired of attacking you and then going and deleting the cookies, which is almost as bad as spam to them.

This way even if they have a dynamic IP then then cookie is still on the machine.

View Post

hmm, not bad idea too, maybe I'll try that, and see what's the best solution. thanks Houdini!

Houdini

Posted 02 December 2005 - 05:21 PM

There is one trick you could use that would place a cookie on the offenders computer, then unless they use many different machine to attck you (Not too likely, but possible) you can deny them even posting, at least until they figure out you have put a cookie, but when the cookie is put on them everytime then soon they will get tired of attacking you and then going and deleting the cookies, which is almost as bad as spam to them.

This way even if they have a dynamic IP then then cookie is still on the machine.

finaldesign

Posted 02 December 2005 - 08:50 AM

What guestbook are you using ? Third party code or one written on your own ? If you wrote it, you can easily introduce some GD tricks, and make the addition process be accompanied by one of the CAPTCHA (Completely Automated Public Turing Test to Tell Computers and Humans Apart)

View Post

Oh, yes, Im aware of that... I could say Im using my own code for guestbook... so anyway, is there some tutorials for implementing CAPTCHA, or I just go to google and search a bit? :)

miCRoSCoPiC^eaRthLinG

Posted 01 December 2005 - 03:55 PM

What guestbook are you using ? Third party code or one written on your own ? If you wrote it, you can easily introduce some GD tricks, and make the addition process be accompanied by one of the CAPTCHA (Completely Automated Public Turing Test to Tell Computers and Humans Apart) diagrams .. the images generated by GD containing numbers/letters which one has to enter to verify human presence...

Most of these stuff are added by spam bots - no one has the time to go around on millions of pages and add these manually. If you can implement the CAPTCHA Verification that'll get rid of it for once and all.

finaldesign

Posted 01 December 2005 - 03:10 PM

Hi all!

Im guessing that 90% of you people who post here at Astahost have your own webpages, blogs, forums and such stuff. I myself have myown too. The purpose of this post is not to talk about my web neither it's a way to get you to click link to my page. It's just about this issue I have with spammers. They constantly come back to my guestook, and enter bullsh*t to forms, like links to drugstores, viagra, porn, and such stuff. As every webmaster I must stay in track with them, and every day I constantly delete junk posts on guestbook...
Now my question is how to workaround this issue? Im aware of banning specific, or whole range of IP's from accesing my domain, but what to do If spammers keep comming back, from different IP adresses? Probably they are not stupid so they use public proxy servers, probably annonymouse one. So, what I can do about it? If anyone have idea, or some php script that may scan posts for specific words, and ignore them if its some bad stupid stuff. My guestbook don't have such stuff imlemented... And finally here is how it looks when spammers attack your guestbook:
A link to image

Review the complete topic (launches new window)