Skip to content
Advertisement

Session variable in PHP allows me to log in even though credentials are incorrect

I have a question about sessions. I noticed something unusual when I was testing my PHP code. Basically, I have two courses and the credentials are stored in their own database.

  • Example: Course 1: Username: abc Password: 123, database table: flitpc
  • Example: Course 2: Username: abc Password: 999, database table: itst

So the code below determines the login for the respective courses (both exactly same code for each course with the difference being the database table)

JavaScript

So here is the thing, I have both tabs open on my browser, 1 for course 1, other for course 2.

Defect

  • Tab 1: I log into course 1 with its credentials, works fine, I don’t log out.

  • Tab 2: I log into course 2 with course 2 username (same username as course 1), but I also use course 1 password, it logs me in,

  • Now if I log out of both courses and try the second bullet point above again, I can’t log in.

So it’s unusual and I want to know how to fix this and understand a little bit more about sessions as I think it’s related to that.

Update

I have also found out it doesn’t matter if usernames are different. It may be recognising the same password used for both login.

Advertisement

Answer

Authentication is never actually performed in tab 2. Because you already have a session you’re redirected to the index when you hit this code block:

JavaScript

You need to save course somewhere in $_SESSION and check if an appropriate session not only exists but matches the course, otherwise authentication using table 1 credentials is indistinguishable from authentication using table 2 credentials.

EDIT:

After authentication save from where the authentication occurred:

JavaScript

Then when you’re checking if a $_SESSION exists also check if it’s for the appropriate course, so:

JavaScript

This will prevent a table 1 authenticated session as being recognized as a table 2 session.

While the above will fix the strange behaviors you’re observing I’d really look at redesigning your database scheme here. It’s strange that I need to authenticate differently for different courses. Ideally I authenticate once and that authentication is used for any/all services under that identity. Look at Google: I don’t have to login to Youtube then login to Gmail then login to Search, I log in once and then Google servers determine which services I have access to.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement