Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Session integration, is this approach secure?

A user logs in using default Laravel authentication, which puts an encrypted cookie in the browser, and saves the session in the database.

The user moves to a classic asp page, where I check the cookie value, get the hash, and call the laravel app back passing the session id hash.

Then I use that in laravel to see if there's an active session for that id, and if so I return true, so the user can be logged in, in classic asp.

On each page request in the classic app, I check the last_updated_time in the db and update it on each page. All logging in and out is done in laravel, and classic relies on the database to see if a session is active.

I would also call a public url to get sessions variables and add session variables using laravel, since it's all encrypted and using classic asp for this would be hard.

The only risk I see is session highjacking, but I don't think it's a higher risk than usual.

Is it important to lockdown the laravel URL I call to check if it's a valid session?

Am I missing a security hole here?

like image 662
iKode Avatar asked Apr 10 '15 15:04

iKode


People also ask

How secure is session Data?

The session data itself is stored server side. The only thing that is stored on the client's computer is a cookie with a unique identifier so the server knows which session to load at the server side. Users cannot manipulate the data stored in the session itself, so in that sense, sessions are secure.

How do I make sessions secure?

Best practices for session authenticationThe data should be a random string of characters without any meaning. HTTPS communication- HTTPS should be used for all session-based applications. Secure and HTTPonly cookies- Session cookies should be created with secure and HttpOnly attributes.

Are session variables encrypted?

Secure Session Variables The secure flag is a Boolean value that describes whether the value should be securely stored. When a value is securely stored, the secure flag is set to true. The value of the session variable appears as *** and is encrypted when the variable is saved.

Are laravel sessions secure?

Is the session of Laravel secure? With Laravel, you can encrypt data with AES-256 and AES-128 using the OpenSSL library. Laravel uses a Message Authentication Code (MAC) to ensure that encrypted values cannot be modified by unauthorized and unwanted parties.


1 Answers

Is this method secure?

From what you've stated you probably haven't opened up any security holes. The session cookie is not itself encrypted on the users machine, but you are making sure it is encrypted between their machines and yours, as well as between each of your machines. You should make sure you've set the Secure Flag to help prevent the cookie being accidentally sent over traditional unencrypted transport (HTTP), but as stated, this doesn't effect storing the cookie itself.

That being said, you are essentially hijacking your own users sessions. While a hole might not be introduced now, you are potentially weakening the overall system, which could lead to hole in the future.

Is there a better way to do it?

This might well be a dumb question, but are you sure you need the session? If you're juggling credentials between servers, it sounds more like you want to use Access Tokens and scrap the session.

Using Access Tokens is similar to using sessions, but you need to make your services stateless. This means your no longer storing information about the logged in user any specific machine so you'll need to pull anything you need from the database every time they hit a server requiring that information.

This is a good thing in the long run as it's much easier to scale your services when you don't need to worry so much about where the session is and what's inside it.

OAuth 2.0 is widely used standard (Facebook, Twitter, Google), and was specifically designed to be easy to use. The RFC is complex, but there's a log of good guides out there don't worry.

The one slight down side (if you can call it that) to OAuth 2, is that it MUST happen over an encrypted connection. If your use case can not guarantee encryption over SSL or (preferably) TLS, then you should use OAuth 1.0 (WITH revision A) instead.

This is due to the fact that OAuth 2.0 exposes it's "secret" token in requests, where as OAuth 1.0 only ever uses it to provide a signature hash. If you take this route it's advisable to use someone else's library as the hash is very, specific.

Further Improvement

(Note: This section added after the answer was accepted)

One system I've been exploring recently is Json Web Tokens. These store information about the user to save each machine repeatedly looking it up in a database. Because the token is hashed with a secret, you can be sure that, so long as your secret isn't exposed, a valid token represents a successfully logged in user, without having to touch the database.

You should avoid putting anything too personal in the tokens if possible. If you must store private or secret information in the token, you can encrypt it, or you can use a reverse caching proxy to exchange the JWT for a traditional security token. This may initially seem to defeat the purpose, but it means some of your services may not need database access at all.

like image 194
DanielM Avatar answered Sep 21 '22 19:09

DanielM