vote up 3 vote down star
2

I'm currently using the following code in my cms to check if visitor is logged in as admin so that he can edit the current page:

if($_SESSION['admin']=="1")
{
        echo "<a href="foobar/?update">edit</a>";
}

But I'm worried that the code is unsafe. Can't $_session variables easily be modified by the user?

What would be a safer practice?

flag

67% accept rate

5 Answers

vote up 3 vote down check

No, that's a good way to do it. The user can't modify the $_SESSION global, unless he has access to your server. Remember to stay away from client-side cookies.

To make it even more safe, a good way is to store the IP-adress and check that it stays the same between every request.

link|flag
Thanks! Checking IP sounds good; I reckon you should store the ip directly after session_start(), e.g.: session_start() $_SESSION["visitorIp"] = $_SERVER['REMOTE_ADDR']; Right? – AquinasTub May 4 at 14:27
3  
Checking the IP address is a bad idea actually - there are plenty of organisations with proxies that mean a user can appear to have several IP addresses. This also used to affect all AOL users - not sure if it still does. – Greg May 4 at 14:33
@AquinasTub: Not quite. You aren't checking the visitorIp, just writing it. It should look more like if isset($_SESSION['username']) {/* check user ip / if ($_SESSION['visitorIp'] != $_SERVER['REMOTE_ADDR']) {session_unset(); header("Location: /login"); exit();} } / Set user IP */ $_SESSION['visitorIp'] == $_SERVER['REMOTE_ADDR']; – phihag May 4 at 14:37
1  
@Greg: No, it's not if you require proper Cookies AND the ip. It would only be unsafe if you used it as a single authentication factor. – phihag May 4 at 14:39
1  
@Dinah: Not if you create a separate session for each ip. I actually implement IP checking authentication (with others) on my PHP system, and I can be logged in from as many computers/IPs as I want. Each system/ip has its own session. – Andrew May 4 at 15:48
show 2 more comments
vote up 2 vote down

The code is OK, you're just showing a link. Just make sure that your UPDATE script is protected as well.

link|flag
vote up 1 vote down

$_SESSION variables can not be set by the user. The code is therefore perfectly fine, although you would usually ask your user backend (typically just a table users, sometimes LDAP) about the current user's privileges.

link|flag
vote up 0 vote down

Session variables should be safe enough once your coding is secure.

Also, use the follow instead. Stops mistakes with == Probably should also use true too as it is a lot quicker than string comparisons.

if( "1" === $_SESSION['admin'] )
link|flag
vote up 0 vote down

I found this presentation about session security

It explains how to avoid:

  • Session fixation.
  • Session hijacking.

Also the slide with more information has some really goods links

link|flag

Your Answer

Get an OpenID
or

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