RE: security in perl

2001-10-12 Thread Gunther Birznieks
At 02:29 AM 10/12/2001, Curtis Poe wrote: >--- Wagner Garcia Campagner <[EMAIL PROTECTED]> wrote: > > > > This site doesn't need so much security so I'm not worryed if someone is > > using a sniffer... > >Wagner, > >That is begging for trouble. My apologies in advance for the rather >serious ton

RE: security in perl

2001-10-11 Thread Curtis Poe
--- Wagner Garcia Campagner <[EMAIL PROTECTED]> wrote: > > This site doesn't need so much security so I'm not worryed if someone is > using a sniffer... Wagner, That is begging for trouble. My apologies in advance for the rather serious tone here. Here's a quote from a friend's email: --

RE: security in perl

2001-10-11 Thread Curtis Poe
--- Wagner Garcia Campagner <[EMAIL PROTECTED]> wrote: > > This site doesn't need so much security so I'm not worryed if someone is > using a sniffer... Wagner, That is begging for trouble. My apologies in advance for the rather serious tone here. Here's a quote from a friend's email: --

RE: security in perl

2001-10-11 Thread Wagner Garcia Campagner
o use md5 or sha-1 to solve it. Thank again, Wagner. -Original Message- From: Brent Michalski [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 11, 2001 1:22 PM To: Wagner Garcia Campagner Cc: [EMAIL PROTECTED] Subject: Re: security in perl Please forgive the formatting of this message, I a

Re: security in perl

2001-10-11 Thread MARCOS LABORDE
Hi there, I had the same problem...now I'm sending a random valued cookie to the user's browser and to the user table in a database. I compare the value of the cookie in the browser against the value in the database if it matches voila! it's the user. You could use a text file to store the us

Re: security in perl

2001-10-11 Thread Brent Michalski
tently leaving holes open... Hope this helps, Brent "Wagner Garcia Campagner" To: <[EMAIL PROTECTED]>

RE: security in perl

2001-10-11 Thread Grierson, Garry (UK07)
what he needs to do. > -Original Message- > From: fliptop [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, October 11, 2001 1:06 PM > To: Grierson, Garry (UK07) > Cc: Wagner Garcia Campagner; [EMAIL PROTECTED] > Subject: Re: security in perl > > "

Re: security in perl

2001-10-11 Thread fliptop
> -Original Message- > > From: Wagner Garcia Campagner [SMTP:[EMAIL PROTECTED]] > > Sent: Wednesday, October 10, 2001 4:05 PM > > To: [EMAIL PROTECTED] > > Subject: security in perl > > > > Now what i want to do is send th

security in perl

2001-10-10 Thread Wagner Garcia Campagner
Hi,I have three web pages, for example: login.html, page1.pl and page2.pl...In the first page i send the username and the password to the page1.pl through FORM POST METHOD:USER:PASSWORD:So i get this in page1.pl as follos:$name = param('username');$pass = param('passwd');if (($name eq 'gest'