vote up 1 vote down star

When a person registers on my site, or logs in, they are sent to "thanks.php".

The page checks is you're logged in or not and if so, tells you what you can do and if not, gives you a link to the register.php page.

However, anyone can make their own cookie and trick the script like that.

How do I protect myself from this?

One thing I thought of was checking if the $_SESSION['session_id'] is present in the database. Far as I know, you can't generate that yourself and even if you could, you'd need database access to find one out.

I'm not too sure however, does anybody have some advice or experience about this sort of "thanks" pages?

flag

2 Answers

vote up 4 vote down check

You cannot generate any Session Data or Database Data without having access to the server. So, a secure way to do this would either be set a SESSION cookie, with some variable, and check for that.

session_start();
$_SESSION['logged_in'] = true;


session_start();
if(!isset($_SESSION['logged_in']))
{
    header("Location: youarentsupposetobehere.com");
}
link|flag
No reason the id variable has to be unique. As you say, anything in the SESSION is on the server – Eli Aug 20 at 16:53
Ooops .. there we go. – Chacha102 Aug 20 at 16:55
vote up 2 vote down

Well, yes, when people log in, you should NOT be setting a cookie that says loggedin=true or some such.

You should instead set $_SESSION['loggedin'] = TRUE PHP generally takes care of securing the cookies that manage that session automatically

link|flag
Actually, session cookies expire when you shut down your browser. Don't even have to shut down your computer, just the browser. Search the php.ini file for this variable: session.cookie_lifetime. Its meaning is explained the line above it. – WebDevHobo Aug 20 at 17:00
Yes, by default session data only lasts for, well, a session :) – Eli Aug 20 at 17:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.