From: tausq <> Date: Sat, 23 Oct 1999 02:01:44 +0000 (+0000) Subject: added check for url X-Git-Tag: release-0.3.33~151 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap-cgi.git;a=commitdiff_plain;h=c7fda50cb6034976bba8b8eec9c52a3f41d20e08 added check for url --- diff --git a/update.cgi b/update.cgi index c0d722b..d2d1929 100755 --- a/update.cgi +++ b/update.cgi @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Id: update.cgi,v 1.2 1999/09/26 01:20:39 tausq Exp $ +# $Id: update.cgi,v 1.3 1999/10/23 04:01:44 tausq Exp $ # (c) 1999 Randolph Chung. Licensed under the GPL. use lib '.'; @@ -77,6 +77,9 @@ if (!($query->param('doupdate'))) { $data{staddress} = $entry->{postaladdress}->[0]; $data{staddress} =~ s/\$/\n/; $data{countryname} = &Util::LookupCountry($data{c}); + if ($data{labeledurl} !~ /^https?:\/\//i) { + &Util::HTMLError("Malformed URL entered"); + } $data{email} = join(", ", @{$entry->{emailforward}});