Re: Very serious security hole in your script

2002-02-28 Thread erotomek
--- Carl Franks <[EMAIL PROTECTED]> wrote: > As you've changed the subject line, and have not > included the original > message, could you please explain whose post this is > regarding. > Quite a lot of code is sent to this mailing list! > >From: erotomek <[EMAIL PROTECTED]> > > I've just read

Re: Very serious security hole in your script

2002-02-28 Thread erotomek
--- Curtis Poe <[EMAIL PROTECTED]> wrote: > > You supplied some great information, however, your > example of plugging the security hole has a > security hole itself. From the command line on any > *nix system, enter the following (assuming you > are not in root): > > cd \.\. > > You quickl

Re: Escaping special characters for regular expressions

2002-02-28 Thread Rob Roudebush
Wouldn't single quotes do the trick? Curtis Poe <[EMAIL PROTECTED]> wrote: --- W P wrote: > i don't want to just escape those characters. they were merely examples. i > was hoping maybe there was some built-in way to escape ALL the characters > that mean anything to regular expressions. Well,

Re: Taking entire Oracle application (forms, reports) to WEB using CGI?

2002-02-28 Thread Rob Roudebush
I currently use mysql and it works great - I have at least 10 different forms running on Apache that I've created in the past month or so. fliptop <[EMAIL PROTECTED]> wrote: Bruce Ambraal wrote: > Hi All > How possible is this.? very. > This a good Idea? personally, i'd use postgresql (

Re: How can I Track the client IP, when a web request is made tomy server.

2002-02-28 Thread Shaun Fryer
$Client_IP = $ENV{'REMOTE_ADDR'}; # Works with Apache anyway. === Shaun Fryer === London Webmasters http://LWEB.NET PH: 519-858-9660 FX: 519-858-9024 === -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAI

Re: Escaping special characters for regular expressions

2002-02-28 Thread Curtis Poe
--- W P <[EMAIL PROTECTED]> wrote: > i don't want to just escape those characters. they were merely examples. i > was hoping maybe there was some built-in way to escape ALL the characters > that mean anything to regular expressions. Well, technically, *all* characters mean something to a regex

Re: Escaping special characters for regular expressions

2002-02-28 Thread W P
i don't want to just escape those characters. they were merely examples. i was hoping maybe there was some built-in way to escape ALL the characters that mean anything to regular expressions. it just seemed like a lot of work to put a \ before all the characters that regular expressions recogni

Re: Escaping special characters for regular expressions

2002-02-28 Thread eric-perl
On Wed, 27 Feb 2002, W P wrote: > I have a CGI script which takes two strings. It searches for the first > string in a file, replacing it with the second one. This file isn't > really important, more for fun, so I'm not too worried about people > deleting the whole file if they actually type out

PSA - unsubscribing from this list

2002-02-28 Thread Elaine -HFB- Ashton
PUBLIC SERVICE ANNOUNCEMENT - UNSUBSCRIBING FROM THIS LIST I've gotten about 20 requests at [EMAIL PROTECTED] asking to be unsusbscribed from these lists so let me say the following: listmast@ any domain is not going to reach the person you want or have the desired effect so lean in and read c

Re: Taking entire Oracle application (forms, reports) to WEB using CGI?

2002-02-28 Thread fliptop
Bruce Ambraal wrote: > Hi All > How possible is this.? very. > This a good Idea? personally, i'd use postgresql (since it's free). > I am currently defining a 6 month project deploying our current Oracle > financial system to the WEB using CGI. Can anyone point out current success > sto

Re: 2 regular expressions

2002-02-28 Thread fliptop
GsuLinuX wrote: > How can i convert > > 1. " $a = 29.7548925547539 > $a = 29.75 " i'd use printf: my $a = 29.7548925547539; printf "%5.2f\n", $a; # this prints 29.75 > 2. " $b = 2345342 --> $b = 2,345,342" look into numbe

RE: Taking entire Oracle application (forms, reports) to WEB using CGI?

2002-02-28 Thread Brice, Charles
Hi All I also am interested in this question. 1 What are the security issues using CGI? 2 Are there any source code examples of applications available for examination? Thanks Charles -Original Message- From: Bruce Ambraal [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28,

2 regular expressions

2002-02-28 Thread GsuLinuX
Hi from İstanbul, How can i convert 1. " $a = 29.7548925547539 > $a = 29.75 " 2. " $b = 2345342 --> $b = 2,345,342" thanx Derya Istanbul