[PHP] SOLVED Re: [PHP] using cookies

2004-05-10 Thread David T-G
Hi, all -- ...and then David T-G said... % % I guess I need a primer on cookie usage. I've read the manual regarding [snip] All has become clear, or at least only murky :-) I was having trouble wrapping my head around how to start cookies (a la sessions) and then check to see if I had a cookie

Re: [PHP] using cookies

2004-05-09 Thread Richard Harb
-Original Message- From: David T-G Sent: Sunday, May 9, 2004, 6:09:06 AM > Hi, all -- > I guess I need a primer on cookie usage. I've read the manual regarding > setcookie and have gone back to look at everything having to do with > cookies on this list in the past few months (it seems th

Re: [PHP] Using cookies

2003-10-21 Thread John Nichel
Jason Wong wrote: > On Wednesday 22 October 2003 08:37, John Nichel wrote: > >>Oh sure, figure out a way to circumvent this. What the hell are you >>trying to do, help people here? hehe > > > Your fault for crowning him king ;-) > I knew that would come back to bite me. -- By-Tor.com It's

Re: [PHP] Using cookies

2003-10-21 Thread Jason Wong
On Wednesday 22 October 2003 08:37, John Nichel wrote: > Oh sure, figure out a way to circumvent this. What the hell are you > trying to do, help people here? hehe Your fault for crowning him king ;-) -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integra

RE: [PHP] Using cookies

2003-10-21 Thread Chris Shiflett
--- "Chris W. Parker" <[EMAIL PROTECTED]> wrote: > > Not a good method. If I get on your site and see my cookie has the > > value 241757219 in it, I just need to subtract one from the number > > and revisit your site. Now I'm the user who registered before me. > > Using the rand() or uniqid() metho

Re: [PHP] Using cookies

2003-10-21 Thread Jason Wong
On Wednesday 22 October 2003 08:47, Chris W. Parker wrote: > on Tuesday, October 21, 2003 5:30 PM said: > > Not a good method. If I get on your site and see my cookie has the > > value 241757219 in it, I just need to subtract one from the number > > and revisit your site. Now I'm the user who

Re: [PHP] Using cookies

2003-10-21 Thread Chris Shiflett
--- "John W. Holmes" <[EMAIL PROTECTED]> wrote: > > > So let's say the first user comes along and is given the userid 1. > > > We then create their random id by adding 241757219 to their userid. > > > We get a random id of 241757220. Then within the login page I can > > > subtract 241757219 from th

Re: [PHP] Using cookies

2003-10-21 Thread John W. Holmes
Chris W. Parker wrote: John W. Holmes on Tuesday, October 21, 2003 5:30 PM said: Not a good method. If I get on your site and see my cookie has the value 241757219 in it, I just need to subtract one from the number and revisit your site. Now I'm the user who registe

RE: [PHP] Using cookies

2003-10-21 Thread Chris W. Parker
John W. Holmes on Tuesday, October 21, 2003 5:30 PM said: > Not a good method. If I get on your site and see my cookie has the > value 241757219 in it, I just need to subtract one from the number > and revisit your site. Now I'm the user who registered before me. > U

Re: [PHP] Using cookies

2003-10-21 Thread John Nichel
John W. Holmes wrote: Chris W. Parker wrote: Here's a thought: How about adding an abitrary number (let's say 241757219) to every users userid and then storing that number as the random id? So let's say the first user comes along and is given the userid 1. We then create their random id by adding

Re: [PHP] Using cookies

2003-10-21 Thread John W. Holmes
John Nichel wrote: Chris W. Parker wrote: John Nichel on Tuesday, October 21, 2003 3:50 PM said: 1. Create a random ID and store it with the users record in the db. 2. If the user chooses to be remembered, stick the random ID into a cookie. 3. When a user hits a log

Re: [PHP] Using cookies

2003-10-21 Thread John Nichel
Chris W. Parker wrote: John Nichel on Tuesday, October 21, 2003 3:50 PM said: The only thing I store in a cookie is a userid and a randomly generated number, and that's only if the site is to have a 'remember me' function so you don't have to login everytime. Even in

Re: [PHP] Using cookies

2003-10-21 Thread John W. Holmes
Marek Kilimajer wrote: John W. Holmes wrote: You're not even allowed to use persistant cookies in public government sites unless you get permission from the Secretary of the Defense. Hi, this is interesting. Can you post the guidelines? Quote: This policy will be clarified to make clear that "

Re: [PHP] Using cookies

2003-10-21 Thread Chris Shiflett
--- Marek Kilimajer <[EMAIL PROTECTED]> wrote: > John W. Holmes wrote: > > > > You're not even allowed to use persistant cookies in public > > government sites unless you get permission from the Secretary of > > the Defense. > > Hi, this is interesting. Can you post the guidelines? I've never he

Re: [PHP] Using cookies

2003-10-21 Thread Eugene Lee
On Tue, Oct 21, 2003 at 04:48:13PM -0500, Joseph Bannon wrote: : : I think it's the responsibility of whomever is holding the key (ie, the : username and password). When a user logs into my site, I put their : username and password in a cookie. I then check those cookies to allow : them access to

Re: [PHP] Using cookies

2003-10-21 Thread Marek Kilimajer
John W. Holmes wrote: You're not even allowed to use persistant cookies in public government sites unless you get permission from the Secretary of the Defense. Hi, this is interesting. Can you post the guidelines? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://ww

Re: [PHP] Using cookies

2003-10-21 Thread John Nichel
John W. Holmes wrote: Marco Tabini wrote: Joseph Bannon wrote: I think it's the responsibility of whomever is holding the key (ie, the username and password). When a user logs into my site, I put their username and password in a cookie. I then check those cookies to allow them access to membershi

Re: [PHP] Using cookies

2003-10-21 Thread Nicholas Robinson
If we're into analogies, how about a cookie containing username/password being much the same as leaving the keys to the house under your doormat? If someone knows that this is a common practice, they can find them and gain access to your house. As I understand it (and I am not a lawyer) the la

Re: [PHP] Using cookies

2003-10-21 Thread John W. Holmes
Marco Tabini wrote: Joseph Bannon wrote: I think it's the responsibility of whomever is holding the key (ie, the username and password). When a user logs into my site, I put their username and password in a cookie. I then check those cookies to allow them access to membership only parts of the sit

Re: [PHP] Using cookies

2003-10-21 Thread Chris Shiflett
--- Marco Tabini <[EMAIL PROTECTED]> wrote: > IMHO, by storing the user's name and password in a cookie, you may be > exposing that information to unnecessary risks by letting it go back > and forth continuously on the Net (assuming, of course, that you're > not under SSL and/or are using some en

Re: [PHP] Using cookies

2003-10-21 Thread Marco Tabini
Joseph Bannon wrote: I think it's the responsibility of whomever is holding the key (ie, the username and password). When a user logs into my site, I put their username and password in a cookie. I then check those cookies to allow them access to membership only parts of the site. It is thus their r

RE: [PHP] Using cookies

2003-10-21 Thread Joseph Bannon
I think it's the responsibility of whomever is holding the key (ie, the username and password). When a user logs into my site, I put their username and password in a cookie. I then check those cookies to allow them access to membership only parts of the site. It is thus their responsibility to keep

RE: [PHP] Using cookies

2003-10-21 Thread Chris W. Parker
Chris W. Parker <> on Tuesday, October 21, 2003 2:35 PM said: > Actually it's more like the bank storing your money in a safe with > glass walls. > > Sure the bank "stored" it, and stored it "securely" (it was behind > glass wasn't it?) but someone could easily break the glass and steal > all

Re: [PHP] Using cookies

2003-10-21 Thread Marco Tabini
Actually it's more like the bank storing your money in a safe with glass walls. Sure the bank "stored" it, and stored it "securely" (it was behind glass wasn't it?) but someone could easily break the glass and steal all the money. The argument from the customer would be "The company I put my trust

RE: [PHP] Using cookies

2003-10-21 Thread Chris W. Parker
Marco Tabini on Tuesday, October 21, 2003 1:31 PM said: > But if the browser causes the information to leak, we did not share > (or disclose) it--the user did, through action or inaction (e.g.: not > patching his or her browser). > > Your bank won't share your money

Re: [PHP] Using cookies

2003-10-21 Thread Marco Tabini
Chris Shiflett wrote: --- Marco Tabini <[EMAIL PROTECTED]> wrote: However, we do not share the contents of our cookies with any third party, under any circumstances. I'm no lawyer, but that seems like a risky statement. There are many circumstances that can cause the contents of the cookies you

Re: [PHP] Using cookies

2003-10-21 Thread Chris Shiflett
--- Marco Tabini <[EMAIL PROTECTED]> wrote: > However, we do not share the contents of our cookies with any third > party, under any circumstances. I'm no lawyer, but that seems like a risky statement. There are many circumstances that can cause the contents of the cookies you set to be disclosed

Re: [PHP] Using cookies

2003-10-21 Thread Chris Shiflett
--- John Taylor-Johnston <[EMAIL PROTECTED]> wrote: > Can someone recommend a good URL on cookies and security issues > please? I can program them, but am told I'm putting others at risk, > forcing people to use cookies on my site. I have a free chapter about cookies from HTTP Developer's Handbook

Re: [PHP] Using cookies

2003-10-21 Thread Marco Tabini
We use a standard disclaimer: 2. Use of Cookies Like many websites, we use cookies to maintain certain information about you while you are visiting our website. However, we do not share the contents of our cookies with any third party, under any circumstances. Should we allow a third party to p

RE: [PHP] Using cookies

2003-10-21 Thread Joseph Bannon
It's your site isn't it? -lol J -Original Message- Nothing much. Been receiving flack about forcing people into cookies. Much misunderstood info about cookies. I need an URL to pass on for extra reading, as rebuttal. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

Re: [PHP] Using cookies

2003-10-21 Thread John Taylor-Johnston
Nothing much. Been receiving flack about forcing people into cookies. Much misunderstood info about cookies. I need an URL to pass on for extra reading, as rebuttal. "Chris W. Parker" wrote: > John Taylor-Johnston > on Tuesday, October 21, 2003 11:40 AM said: > >

Re: [PHP] Using cookies

2003-10-21 Thread Curt Zirzow
* Thus wrote John Taylor-Johnston ([EMAIL PROTECTED]): > Can someone recommend a good URL on cookies and security issues please? > I can program them, but am told I'm putting others at risk, forcing people to use > cookies on my site. > Being online is a risk, or even crossing the street is a ri

RE: [PHP] Using cookies

2003-10-21 Thread Chris W. Parker
John Taylor-Johnston on Tuesday, October 21, 2003 11:40 AM said: > Can someone recommend a good URL on cookies and security issues > please? I can program them, but am told I'm putting others at risk, > forcing people to use cookies on my site. I guess it depends o

Re: [PHP] Using Cookies Securely

2003-06-01 Thread Evan Nemerson
Again, "It's not perfect, but I don't think anyone has come up with a better way." It's called session hijacking, and it is a great reason to use SSL. However, there's still the issue of cross-site scripting, which can really only be prevented by smarter coding. Even then there are issues. For

Re: [PHP] Using Cookies Securely

2003-05-31 Thread Dustin Mitchell
On Fri, May 30, 2003 at 11:01:26PM -0700, Evan Nemerson wrote: > Send a session ID to the user in a cookie, then lookup that ID in a database > on the server. It's extremely difficult to guess random session ID's (don't > just increment them!), and if you have a session timeout, you're pretty muc

Re: [PHP] Using Cookies Securely

2003-05-31 Thread Evan Nemerson
Send a session ID to the user in a cookie, then lookup that ID in a database on the server. It's extremely difficult to guess random session ID's (don't just increment them!), and if you have a session timeout, you're pretty much set. It's not perfect, but I don't think anyone has come up with

Re: [PHP] Using Cookies Securely

2003-05-31 Thread Justin French
The short answer is that if you're worried about security, don't store a uid and pwd in a cookie on the client... banks don't do it, for example. It's also common for the uid to be remembered, but not the pwd. >From what I can see happening on the "big sites", you give the user the option to be r

Re: [PHP] using cookies

2002-11-23 Thread Chris Shiflett
--- Ken Nagorski <[EMAIL PROTECTED]> wrote: > I have never used cookies before, however I am trying to > implement them to make things a little more secure. Rather > than passing a sql statement via a hidden input tag I am > setting a cookie. I think someone else already mentioned this, but let m

RE: [PHP] using cookies

2002-11-23 Thread Rich Gray
Try the system() or passthru() functions... Rich -Original Message- From: Paul Marinas [mailto:[EMAIL PROTECTED]] Sent: 23 November 2002 13:09 To: Rich Gray Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] using cookies dose anyone how to send a "ping" in loc

RE: [PHP] using cookies

2002-11-23 Thread Paul Marinas
dose anyone how to send a "ping" in local network thanks Paul Marinas Technical Support RDS Craiova Phone: +402-51-410-194 Mobile: +407-22-451-439 Fax:+402-51-416-579 www.rdsnet.ro . Privileged/Confidential Information may be contained

RE: [PHP] using cookies

2002-11-23 Thread Rich Gray
Ken Do *not* use hidden form statements or cookies to store any SQL this is extremely dangerous and a relatively simple hack could destroy your database completely! By all means use hidden form fields to store row ID values but your PHP scripts should treat all user input data via $_GET/$_POST/$_

Re: [PHP] Using Cookies

2001-03-10 Thread Yasuo Ohgaki
It seemed I thought it should work at least. But it does not on PHP4.0.4pl1. Try following code '); } print('The user is ' . $user . ''); print('The password is ' . $pw . ''); if (empty($cookieuser)) { print('No cookie was set...will set one'); } else { print('Cookie user name