|
|
||||||
|
||||||
| Index Link To US Private Messages Archive FAQ RSS | ||||||
| Internet Security Discussion Forum This forum is for the discussion of security related issues. If you find a new Phishing scheme, spyware, virus or malicious site - let us know about it. If any of the above found you... here's where you ask for help. |
Share Thread: & Tags
|
||||
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
||||
|
How do I get rid of an e-mail spammer.
They are bombarding me by autocompleting enquiry forms on my site. I suspect they came from the WebProWorld forum. Are other members suffering. I intially published a link to their site but thought better of it.
__________________
Simply Clicks | SEO | SEO Training| Pay Per Click Advertising | Search Engine Powered Marketing |
|
||||
|
Such a problem was discussed here before:
http://www.webproworld.com/viewtopic.php?t=62349 Have a look, some points raised might prove to be useful. |
|
||||
|
David.
1. Get rid of the known bad bots via .htaccess if you are on an Apache server. Here are two not updated examples: http://multifinanceit.com/htaccess.txt http://multifinanceit.com/htaccess1.txt 2. Authenticate your most serious visitors before they submit an email form. Collect them in a table in your database if you use that. 3. Write your email on a picture for other visitors. Collect them in another table, in your database. 4. More advanced. Write different Email classes (that may inherit structure from a more or less abstract baseclass): Email1Class, Email2Class, ..., EmailnClass where all classes allocate emails to different tables. Then you may streamline your emails from different sources to different tables. You decide how fine you will make the cathegories. |
|
||||
|
Kjell,
thanks for these. I'm using rather a crude e-mail system. Time to update.
__________________
Simply Clicks | SEO | SEO Training| Pay Per Click Advertising | Search Engine Powered Marketing |
|
|||
|
I get spammers that fill my contact form on my site at http://nuhair.net
I am looking for a code for a form checker. The checker is inserting letters and numbers that come up randomly in a box. Only after a match the form is submitted. BIG THANKS |
|
||||
|
Quote:
The following code is a start ( I cannot reproduce the complete code since it is cut from: The PHP Anthology: Object Oriented PHP Solutions chapter 9. <?php require_once ("HTML/QuickForm.php"); //Pear must be in your path (php.ini). function cmpPass($element, $confirmPass) { global $form; $password = $form->getElementValue('password'); return ($password == $confirmPass); } // A function to apply mysql_real_escape_string function escapeValue($value) { return mysql_real_escape_string($value); } // A function to encrypt the password function encryptValue($value) { return md5($value); } // Instantiate the QuickForm class $form = new HTML_QuickForm('regForm', 'POST'); // Register the compare function $form->registerRule('compare', 'function', 'cmpPass'); .................................................. ...................... ?> Volume II chapter 1 has more advanced access control and authentication systems. Here is an article related to that chapter. The PHP Anthology Volume 2, Chapter 1 - Access Control NOTE: Everything you send over the internet in plain text may be hijacked by a packet sniffer. When you send confidential information such as financial details, use an encryption technology such as SSL, eg. OpenSSL. |
|
|||
|
Tkgun, thanks for the info but since I use WINDOWs format on my site, will I be able to use this PHP code?
AND I am not much of a programmer. I use MS FrontPage for my site... ALL help is appreciated |
|
|||
|
Easy "captcha" code and istruction HOW is what I looking for to use with WINDOWS server. Can you recommend any?
|
|
||||
|
Quote:
Quote:
Look here: Make your own "test web server" in 5 minutes. If you mean, MS IIS server, I do not know if that is possible since that is not my web platform. MS IIS server is seamless fitted to ASP.NET etc. PHP, MySQL and Apache is good enough for me so long. Note the following: Apache mod_rewrite IIS ISAPI_Rewrite |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
|
WebProWorld |
Advertise |
Contact Us |
About |
Forum Rules |
MVP's |
Archive |
Newsletter Archive |
Top |
WebProNews
WebProWorld is an iEntry, Inc. ® site - © 2009 All Rights Reserved Privacy Policy and Legal iEntry, Inc. 2549 Richmond Rd. Lexington KY, 40509 |