From: Mike Taylor Date: Wed, 8 Oct 2008 14:50:54 +0000 (+0000) Subject: Sleep 5 when given an invalid host or port, to slow down spammers. X-Git-Tag: CPAN-v1.02~322 X-Git-Url: http://git.indexdata.com/?p=irspy-moved-to-github.git;a=commitdiff_plain;h=80154ba00dfb5aaa62c924dde62a0d162dbcc71d;ds=sidebyside Sleep 5 when given an invalid host or port, to slow down spammers. --- diff --git a/web/htdocs/details/edit.mc b/web/htdocs/details/edit.mc index 95686a1..4e1b2ac 100644 --- a/web/htdocs/details/edit.mc +++ b/web/htdocs/details/edit.mc @@ -1,4 +1,4 @@ -%# $Id: edit.mc,v 1.37 2007-08-23 14:29:18 mike Exp $ +%# $Id: edit.mc,v 1.38 2008-10-08 14:50:54 mike Exp $ <%args> $op $id => undef ### should be extracted using utf8param() @@ -72,10 +72,12 @@ if (!defined $id) { print qq[

This host name is not valid.

\n]; undef $update; + sleep 5; } elsif ($port !~ /^\d*$/i) { print qq[

This port number is not valid.

\n]; undef $update; + sleep 5; } else { # Creating new record, all necessary data is present. Check # that the new record is not a duplicate of an existing one.