From c7fda50cb6034976bba8b8eec9c52a3f41d20e08 Mon Sep 17 00:00:00 2001 From: tausq <> Date: Sat, 23 Oct 1999 02:01:44 +0000 Subject: [PATCH] added check for url --- update.cgi | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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}}); -- 2.20.1