RE: Storing Credit Card info in Session variable

2000-04-17 Thread Lon Lentz
> From: Jeff [mailto:[EMAIL PROTECTED]] > > not only do multiple users share the same ip, but a user can have his ip > change during his session. personally, i would not use the ip address as a Wow!? What a sloppy implementation. Thanks for the tip. Lon Lentz Applications Developer - GetL

RE: Storing Credit Card info in Session variable

2000-04-12 Thread Byron M
As with anything on the internet, you are never completely safe. I personally would not do it that way. I would get the CC number and pass it via a hidden form field and be on a server with SSL. But I think the only way someone could access a client's session vars is if they had the CFID and C

RE: Storing Credit Card info in Session variable

2000-04-13 Thread Andrew Scott
on M [mailto:[EMAIL PROTECTED]] Sent: Thursday, 13 April 2000 3:22 PM To: [EMAIL PROTECTED] Subject: RE: Storing Credit Card info in Session variable As with anything on the internet, you are never completely safe. I personally would not do it that way. I would get the CC number and pass it via a hi

Re: Storing Credit Card info in Session variable

2000-04-14 Thread Ken M. Mevand
? - Original Message - From: Byron M <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 13, 2000 1:22 PM Subject: RE: Storing Credit Card info in Session variable > > As with anything on the internet, you are never completely safe. > > I personally woul

RE: Storing Credit Card info in Session variable

2000-04-14 Thread Lon Lentz
> -Original Message- > From: Ken M. Mevand [mailto:[EMAIL PROTECTED]] > Subject: Re: Storing Credit Card info in Session variable > [snip] > > so is it true that even with SSL, its no guarantee that someone else may hit > upon the same CFID and CFTOKEN and the web se

Re: Storing Credit Card info in Session variable

2000-04-16 Thread Jeff
lon, :~~ : From: Lon Lentz <[EMAIL PROTECTED]> : : While it's not 100% (2 people on your site accessing : the net through the same proxy), you could use their IP : address (which should remain constant for the session) : as a way of helping to keep people straight.