0
votes
1answer
35 views

How can I secure this user cookie?

So I've a user login network and it creates a cookie upon login. I need to know how to secure it because at the moment I can edit the cookie and it will give me access to any username I update the ...
2
votes
1answer
126 views

Where can I find a PHP/MySQL implementation of Charles Miller's “Persistent Login Cookie” solution?

I have seen time and again Charles Miller's "Persistent Login Cookie Best Practice" recommended here as the absolute best way of implementing "Remember me" functionality on a site (if you really, ...
0
votes
0answers
23 views

Using the google API without creating a google cookie

I have an app that uses the google api to access user data but am having an issue with the user being logged into google after "authorizing the application" for access. The flow is the same as OAuth2 ...
0
votes
1answer
29 views

HSTS vs only https with secure cookie

Is it good enough a protection if my site is serving on https with secure session cookie and redirects any attempts for http urls to https? What kind of security holes can i be exposed in this setup ...
1
vote
2answers
353 views

Forcing Tomcat to use secure JSESSIONID cookie over http

Is there a way to configure Tomcat 7 to create JSESSIONID cookie with a secure flag in all occasions? Usual configuration results in Tomact flagging session cookie with secure flag only if ...
2
votes
2answers
85 views

Ruby on Rails security regarding session cookies

In my app, I have a User model and it has a rememberable_token column. When creating a user, a random secure string is saved in a before_create filter to act as a secure token for the user: ...
5
votes
1answer
306 views

Set “secure” flag on session cookie in RoR even over HTTP

In a Rails app, the session cookie can be easily set to include the secure cookie attribute, when sending over HTTPS to ensure that the cookie is not leaked over a non-HTTP connection. However, if ...
2
votes
1answer
78 views

Whether or not to use persistent cookies

We've just had a security auditor flag our use of persistent cookies to maintain login state in our web application. As a bit of background, our web application is multi-tenanted, but no (or not many) ...
1
vote
1answer
277 views

JSESSIONID is set for both HttpOnly and Secure

We have a tomcat instance serving HTTP over an SSL nginx Proxy. We've set the settings for the connector as follows: connectionTimeout="20000" redirectPort="8443" compression="on" ...
1
vote
1answer
255 views

session not shared between two server

i have big trouble with my application that web-application(jsp,java,servlet) landed between two server cause there is load-sharing between server but unfortunately session not maintaining ...
1
vote
1answer
127 views

J-session id is changed when navigated from one https page to other https page on tomcat 6.0.24

our product customers are trying to have direct login to one of our secured pages. login url="https://" + anIp + ":5443/om"; GetMethod authget = new GetMethod(url); .. Header cookie = ...
0
votes
1answer
68 views

What to do if a client can't afford SSL and you're worried about session hijacking? [closed]

I've built an app for a client which lets them login and write blog posts etc. The site uses cookies to set a remember_token so that we can keep users logged in. I'm aware that without SSL, this site ...
0
votes
1answer
49 views

How do sessions work?

I have a script set up to create sessions for when user is logged in. The users permission level is then grabbed along with some other fields from the users table based on the username and password ...
4
votes
1answer
133 views

How should a “secret key” be retained in memory?

We have a server that securely sends a key to the client via a custom login program. The key is subsequently used for encrypting further client requests. That key is kept on the client's disk, like ...
0
votes
2answers
149 views

Security Issues:Maintaining HTTP session only in cookies

Can somebody explain me the security issues which might arrise(also how) if I maintain HTTP session only in cookie(s)?
1
vote
3answers
290 views

Security in php session cookies

I am trying to understand security when it comes to session cookies in php. I've been reading a lot about it, but I still lack the specifics. I need the basics, someone to show examples. For example: ...
0
votes
1answer
236 views

Passing mySQL Link Identifier in a Session Variable

I have a situation in my project where I have to keep using a lot of SQL queries. I have two questions here, one is, once a create a connection with a database, does it remain persistent throughout ...
0
votes
1answer
238 views

how to make encoded values for cookies? (python)

I started using python to make an app with google app engine, right now i am using cookies to keep the sessions of each user in the site my current code for generating cookies is the following: ...
1
vote
0answers
249 views

Cross-domain policy and XHR cookie for app development in Safari, Lion

I'm developing a web services application using various technologies such as : Ruby on Rails on server side Javascript, HTML5, objective-C, java on mobile side I did not met any issue with ...
2
votes
1answer
568 views

phpsessid - Is it worth changing the session name to something hashed and visitor specific

I'm wondering whether for security purposes it would be worth using the session_name() function to rename the default phpsessid to a hashed or encrypted id? If so, what would be the best way to ...
1
vote
4answers
549 views

best way to secure sessions (consulting)

Ok, yes, I've read the other Qs regarding this topic, but I have several questions more and some Qs were several years old. Anyways, I'm building an admin cp for an insurance company that contains ...
1
vote
2answers
1k views

Passing session identifier as a query string parameter

Are there any security practices/techniques/considerations when, for example during (long/continuous) polling or normal requests between clients and server, session ID is sent/passed to the server as ...
4
votes
7answers
5k views

Remember me Cookie best practice?

I read about many old questions about this argument, and i think i thought that the best practice is to set up a cookie with username,user_id and a random token. Same cookie data are stored in DB at ...
5
votes
2answers
6k views

Set httpOnly and secure on PHPSESSID cookie in PHP

Whats the recommended way to set httponly and secure flags on the PHPSESSID cookie? I found http://www.php.net/manual/en/session.configuration.php#ini.session.cookie-httponly. Any better suggestions? ...
4
votes
1answer
643 views

Rails 3 ActiveRecordStore session_id tampering

I am co-developing a simple web app in Rails 3.0.9 and I have realized that there is a possible session_id tampering possible via malicious request. Mind the fact, that this is my first RoR ...
0
votes
1answer
724 views

Using Timestamps to Prevent Session Hijacking?

I have been looking at ways to guard against session-hijacking, where someone steals a session cookie and uses it to gain access to the system. Programs such as http://codebutler.com/firesheep make ...
3
votes
4answers
261 views

How to remember users with cookies in a secure way?

So lets say i have a member base website and when the user signs in i put put a cookie (or a session) with a key value pair remembering who the user is. But its just come to my attention which ...
2
votes
1answer
705 views

Security Model in Rails Question

I am reading a great Rails tutorial and came across a passage that I had a question about: Box 9.2.Sessions and cookies Because HTTP is a stateless protocol, web applications requiring user ...
3
votes
1answer
2k views

Using cookies/sessions for mobile application authentication?

Is there any reason why I shouldn't use cookies/sessions for native mobile applications, usually used by browsers, to authenticate with my server and for subsequent API calls? Clarification: It seems ...
6
votes
4answers
317 views

Reason to use more cookies than just a session hash for authentication?

I usually hang out in a community that uses a bulletin board software. I was looking at what this software saves as cookie in my browser. As you can see it saves 6 cookies. Amongst them, what I ...
3
votes
3answers
657 views

CodeIgniter auth security model

I've built a custom auth system for CodeIgniter (I know there are various 3rd party libraries available but this is for my own benefit) but I'm worried I'm missing something obvious that could bring ...
2
votes
1answer
95 views

Web security question regarding an API

I'm building an API with no server-side authentication. A unique key (assume the key is very long and impossible to guess) will be generated for the session, but no cookie will be set on the client. ...
0
votes
3answers
368 views

Hijacking Facebook with FireSheep; What is the best preventative measure, and how does it work?

Regarding this security issue: http://techcrunch.com/2010/10/24/firesheep-in-wolves-clothing-app-lets-you-hack-into-twitter-facebook-accounts-easily/ Is it true to say "any time a user logs into a ...