RE: Checking who called a cgi-script

2002-05-26 Thread Scot Robnett
May 26, 2002 11:03 AM To: Scot Robnett Cc: Sebastian Nerz; [EMAIL PROTECTED] Subject: Re: Checking who called a cgi-script On Saturday, May 25, 2002, at 08:18 , Scot Robnett wrote: > # Compare the referer against your "good list" > for $domain(@good_domains) { >

Re: Checking who called a cgi-script

2002-05-26 Thread Sebastian Nerz
Hy, drieux schrieb: > > On Saturday, May 25, 2002, at 08:18 , Scot Robnett wrote: > <..> > > my @good_domains = qw/domain1.com theIpAddrFor_domain1.com > www.domain1.com theIpAddrFor_www.domain1.com > domain2.com

Re: Checking who called a cgi-script

2002-05-26 Thread drieux
On Saturday, May 25, 2002, at 08:18 , Scot Robnett wrote: > # Compare the referer against your "good list" > for $domain(@good_domains) { > if ($domain = $referer) { # If the referer matches a > $good_one = "success"; # domain in your list, set > last; # $good_one

RE: Checking who called a cgi-script

2002-05-25 Thread Scot Robnett
good_one ne "success") { print "Content-type: text/html\n\n"; print <mailto:[EMAIL PROTECTED]] Sent: Saturday, May 25, 2002 8:48 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Checking who called a cgi-script Hy, inSite Internet Solutions schrieb: > &g

Re: Checking who called a cgi-script

2002-05-25 Thread Sebastian Nerz
rom: Sebastian Nerz [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 24, 2002 10:22 AM > To: [EMAIL PROTECTED] > Subject: Checking who called a cgi-script > > Hy, > > I need to check which server (or better: which formular) gave data to a > cgi-script (executed this script)

RE: Checking who called a cgi-script

2002-05-24 Thread inSite Internet Solutions
directory chmod'd 4711) Scot Robnett inSite Internet Solutions [EMAIL PROTECTED] [EMAIL PROTECTED] -Original Message- From: Sebastian Nerz [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 10:22 AM To: [EMAIL PROTECTED] Subject: Checking who called a cgi-script Hy, I n

Checking who called a cgi-script

2002-05-24 Thread Sebastian Nerz
Hy, I need to check which server (or better: which formular) gave data to a cgi-script (executed this script) (I am writing on a contact-script but I dont want every server to be able to execute this script!) How could I do this? (A link or source for informations would be enough) Many thanks!