Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
7answers
2k views

How to encrypt session id in cookie?

While I was reading about session hijacking articles, i learned that it would be nice to encrypt session id value that is stored in a cookie. As far as I know, when I start a session by calling ...
4
votes
5answers
644 views

Stealing session id cookies - counter measures

It is easy to steal session id cookies with javascript functions planted in trusted sites by other users. What are the possible counter-measures for this kind of attack? Rejecting all javascript ...
4
votes
2answers
1k views

Session Hijacking Protection in ASP.NET

I'd like to find out what session ID hijacking protection is built into the current version of ASP.NET. I recently saw this very informative article that explains how session security can be enhanced ...
4
votes
2answers
179 views

Jeff Prosise's session hijack blog - any updates?

I'm looking to prevent session hijacking in my ASP.NET application and came across this great post by Jeff Prosise. However, it's from 2004 and I was wondering if there have been any updates that ...
4
votes
1answer
488 views

Session Management with Windows Authentication

In an ASP.NET web app, using Integrated Windows Authentication, is the session tied to the windows identity? In other words, if I login (using IWA) to the app, and the app stores some "stuff" in my ...
4
votes
3answers
939 views

Session hijacking or attack?

Lately I have seen this in my error log (1 per day, and I have 40k visitors per day): [22-Sep-2009 21:13:52] PHP Warning: session_start() [function.session-start]: The session id contains illegal ...
3
votes
2answers
63 views

PHP Protecting from Session Fixation/Hijacking

I'm maintaining a low-traffic shop website that stores credit card numbers in the database. This isn't right (or even legal I believe), so I'm changing the way the numbers are stored. The way the ...
3
votes
1answer
92 views

Proper session hijacking prevention in PHP

I know this topic has been discussed a lot, but I have a few specific questions still not answered. For example: // **PREVENTING SESSION HIJACKING** // Prevents javascript XSS attacks aimed to steal ...
3
votes
1answer
956 views

Spring Security cookies after user logs in and Session Hijacking

As far as I understand, when the user logs in Spring Security invalidate the Session and creates a new one. So if I come from http with a clear sessionID cookie Spring Security should set a new ...
2
votes
2answers
84 views

PHP Session Security Question

I was doing some research on StackOverflow on how to properly set sessions and prevent hijacking, etc. I found an answer that someone posted on one of the questions and he provided the following ...
2
votes
1answer
314 views

Avoiding session hijacking in ASP.NET

I recently read an article on making ASP.NET sessions more secure here and at first it seems really useful. Previously I had been storing the user's IP address in the session, then making sure in ...
2
votes
1answer
120 views

Is this a secure authentication system for an ajax-driven app?

I apologize ahead of time, becuase I'm neither great at explaining things nor flow charts. This is not a specific code problem, but a general question on session security. I'm trying to eliminate as ...
2
votes
3answers
319 views

I think my PHP app is being session hijacked?

I have a php site that lets registered users login (with a valid passord) and sets up a session based on their UserID. However I'm pretty sure thisis being hijacked and I've found "new" files on my ...
2
votes
2answers
836 views

Of HttpOnly and document.cookie

Searching for possible ways to get cookie with httpOnly enabled, I cannot find any. But then again, how do browser addons like Firebug, Add 'N Edit Cookie, etc. can get the cookies? Can't an attacker ...
1
vote
1answer
47 views

Is Forms Authentication more secure than storing user identity in ASP.NET_session (session hijacking)

From what I understand about the way session hijacking works I don't see any advantage that Forms Authentication has over storing user authentication info in the ASP.NET session. Both Forms ...
1
vote
1answer
81 views

Accessing Facebook cookies in browser

When I type in javascript:alert(document.cookie) in the URL bar, I only get to see some cookies which facebook has set for my account. I think this is because the other cookies are http only. First ...
1
vote
1answer
116 views

Implementing Session Hijacking prevention, properly

I am pretty new to Web Development and I read about CSRF, XSS, and Session Hijacking. One proposed solution is to simply use a nonce to check the validity of requests. I wrote this script in PHP to ...
1
vote
3answers
130 views

PHP Session Security: usefulness of checking $_SESSION['HTTP_USER_AGENT']

Threads such as PHP Session Fixation / Hijacking and some people like Chris Shiflett recommend checking the user agent ( $_SESSION['HTTP_USER_AGENT'] ) to help check for session validity. Some ...
1
vote
1answer
91 views

Best way to do 'loose' IP check for protection against session hijacking

What is the best way to do 'loose' IP check for protection against session hijacking, which work both for IPv4 and IPv6? I got an array which saves all users ip addresses and how many times the user ...
0
votes
3answers
104 views

PHP session hijack

I've been using $_SESSION superglobal a lot and heavily. However the situation is like this: Once the user is logged I want to keep track of his ID(MySQL table). I can easily insert the id into ...
0
votes
1answer
113 views

Trying to understand CakePHP cookies & authentication

I'm trying to figure out CakePHP cookies and meet my slightly unusual authentication requirements. I have a CakePHP-based data collection system that is now being integrated with a reporting system ...
0
votes
2answers
83 views

Session Management and Security

This is my current session management: if(!isset($_SESSION["user"]["authenticated"]) || !$_SESSION["user"]["authenticated"]) redirect("login.php"); if($_SESSION["user"]["browserHash"] != ...
0
votes
1answer
179 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 ...
0
votes
2answers
124 views

Good Method To Prevent Session Hijacking?

Scenario: Upon starting a session on my site, I generate a rand token that is shown to the user that once. Say they “store” it away for later use. I then, INSERT the md5(token) into SQL with ...
0
votes
1answer
97 views

Form token does not match when user refreshes page

I wrote the following three functions in an attempt to prevent session Hijacking. They work. I call set_auth_token at the beginning of the script. Then in the html form I call get_auth_token. After ...
0
votes
1answer
241 views

Django session gets confused behind proxy, already logged in

Currently we're having some issues with a user of our product who uses a proxy on their internal network. According to their system administrator the proxy is open to port 80 and 443, and doesn't do ...
0
votes
1answer
330 views

How to secure pass and set session id?

I'm using uploadify in an admin area and the script (which use adobe flash) create a new session instead of use the current one when requesting the upload action url. To fix that I need to pass the ...
0
votes
1answer
347 views

crossdomain.xml and security issues

I read a lot about cross-site scripting with Flash, Javascript etc. and also found several lists with websites that have a crossdomain.xml that allows access from any server. For example flickr.com ...
0
votes
3answers
761 views

Avoiding session hijacking with Kohana

Do I have to do anything special to avoid session hijacking using Kohana framework? (Assuming the session is manipulated only with the Kohana Session library) Thanks in advance
0
votes
1answer
315 views

How to prevent asp.net application from session hijacking?

I have read an article about session hijacking. please tell me asp.net session is how much secure. can people also do session hijacking with asp.net session. and also tell me how can i prevent my ...
0
votes
2answers
903 views

Whats the error in this python code?

What do i do to solve it? Terminal output is: abhi@abhi-desktop:~/Desktop/sslstrip-0.1$ python sslstrip.py --listen=3130 Traceback (most recent call last): File "sslstrip.py", line 254, in ...
-1
votes
1answer
25 views

How does this sound? Sessions & Cookies?

Cookies and sessions both have pros and cons. But I was thinking, how about when a user logs in it creates a session with their username and password in, but when they register they get given a unique ...