Tagged Questions

A session ID is a unique identifier that relates session data to a specific user.

learn more… | top users | synonyms

10
votes
3answers
2k views

ASP.NET: Session.SessionID changes between requests

Why does the property SessionID on the Session-object in an ASP.NET-page change between requests? I have a page like this: ... <div> SessionID: <%= SessionID %> </div> ... ...
9
votes
9answers
24k views

How to differ sessions in browser-tabs?

In a web-application implemented in java using JSP and Servlets; if I store information in the user session, this information is shared from all the tabs from the same browser. How to differ sessions ...
5
votes
1answer
168 views

Is regenerating the session id after login a good practice?

I'm wondering if regenerating the session id after a successful login really a good practice and not just sort of a cargo cult behavior. If I understand the theory correctly it should prevent session ...
5
votes
1answer
456 views

Regenerate session IDs with Nodejs Connect

I'm using a Node.js server and I'm developing with the Connect framework. I'm trying to regenerate SIDs after a given interval to avoid session fixation. There's a method called req.session.regenerate ...
5
votes
10answers
6k views

Session Cookies and IE 8

I recently built a simple web-app deployed over Tomcat. The app uses pretty standard session based security where a user who has logged in is given a session. Sessions work fine in Firefox and ...
5
votes
2answers
2k views

asp.net sessionID changing on postbacks?

I am writing an asp.net app that stored an object in cache. When the page loads the first time, it checks the cache for the object, if it is there, it will use the object. if the object does not ...
4
votes
1answer
551 views

Session ID not random enough - ASP.NET

UPDATE We eventually had a meeting with some programmers on the Acunetix team and they realized there may be a few bugs in their code that are causing this to be displayed in the scan as more of an ...
4
votes
3answers
203 views

is my session id generated before login?

I read about session vulnerability in the php manual and came across this issue: I need my server/code to generate the session-id AFTER successfully authenticating the user. Now, I am not sure when ...
4
votes
2answers
101 views

PHP $_SESSION['key'] over-written with input button value. Why?

Having the following issue in a PHP shopping cart. A dump of my session looks like: Array ( [username] => test@test.com [key] => 1 ) The shopping cart has three buttons: <form ...
4
votes
1answer
294 views

ASP.NET SessionID type

I was wondering if anyone knew what was the format of a ASP.NET SessionID? It's not a GUID or base64, what is its type? Also does it vary from version to version of the .NET framework? thanks
4
votes
2answers
408 views

Is it good practice to display the session id in the url?

I am using PHP 4+ and I am working in a project of osCommerce, where I encounter with the session id in the url, so i just need to know, is it a good practice display the session id on the url? if yes ...
4
votes
3answers
4k views

Generating a new ASP.NET session in the current HTTPContext

As a result of a penetration test against some of our products in the pipeline, what looked to be at the time an 'easy' problem to fix is turning out to be a toughy. Not that it should of course, I ...
3
votes
1answer
91 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
4answers
102 views

Detect whether session_id(some-id) exists [closed]

Possible Duplicate: Detect if PHP session exists The PHP manual does not seem to provide a means to check whether a given session_id exists. For example, session_id() has an optional id ...
3
votes
1answer
626 views

Hp Touchpad Browser ASP.NET thinks that cookies disabled

Just bought a cheap defunct hp touchpad. I notice that when I browse to my asp.net web app the url returns session id. The touchpad has cookies enabled and my web.config contains no mention of ...
3
votes
1answer
109 views

HTTPS session reuse in Python

I would like to be able to use parallel requests to a HTTPS server. Currently, I am using PyCURL, but it isn't able of reusing the same SSL session ID between different handles, and each handle can ...
3
votes
4answers
268 views

Check if PHP session_id is in use

I am building a web-app that users can upload certain files and work on them through the web-app interface. I need to store these files for the length of a users session. I am creating a folder for ...
3
votes
3answers
235 views

get list of all PHP session_id

Is't possible to get list of all session_id in PHP SESSIONS? Note: I need maintained some file in the server. One file equal one session. And I need to determine behaviour of old files if SESSION ...
3
votes
5answers
693 views

PHP Session ID the same but variables are lost

I have a login page that sets session variables upon successful login. The login page then redirects to an admin page. The admin page is able to read session variables just fine. But when I do a ...
3
votes
1answer
154 views

Recreate a Session by Using Your Session ID In ASP.NET

I would like to know if ASP.NET has something similar to session_id function from PHP. I would like to do something like it using ASP.NET: session_id($_GET['session_name']); session_start(); if ...
3
votes
1answer
375 views

PHP OOP :: passing session key between classes

I am trying to work out the most appropriate design to pass a session key between classes in PHP 5.3. The session key is retrieved from a 3rd-party API and my application makes various API calls that ...
3
votes
1answer
822 views

Get session cookie name

Is it possible to get session cookie name in medium trust level? The code below works in full trust, but throws a security exception in medium trust level. string sessionCookieName = ...
3
votes
2answers
801 views

PHP Session IDs not working on GoDaddy.com shared server

Server: Windows IIS7 PHP 5 Host: godaddy.com shared "deluxe" I'm having trouble with a login script that uses PHP sessions to store a Session ID on the server. I have used this same exact script ...
3
votes
7answers
1k views

PHP: session isnt saving before header redirect

I have read through the php manual for this problem and it seems quite a common issue but i have yet to find a solution. I am saving sessions in a database. My code is as follows: // session ...
3
votes
2answers
2k views

Classic ASP: How to check if ASPSESSIONID* cookie has been marked as secure?

I am trying to mark the ASP session ID cookie as HttpOnly but can't seem to find a way to tell if it is working. The environment I am trying this in is as follows: OS: Windows Server 2003 IIS: 6 ASP ...
3
votes
1answer
1k views

How to log session ID in weblogic's access log

Is it possible to log the session ID in the access log of WebLogic 8.1.6?
3
votes
5answers
4k views

What's the size of an ASP.NET 3.5 session ID?

Is it 32 bit, or 64 bit or 128 bit or bigger?
3
votes
2answers
266 views

Ghosts windows when color scheme is NOT Aero on Vista

We have a service that launches an application that will interact with the logged on user. The application we launch is always run as a specific user for which we have the credentials. We do what is ...
2
votes
1answer
75 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 ...
2
votes
4answers
200 views

Magento session lost when switching to https from http

I've searched high and low for a solution to this, with no luck. My host told me they are too busy to help. Magento 1.4.2 // SSL cert 1- When I add an item to cart, the page reloads and my item is ...
2
votes
2answers
48 views

Recover data in Zend_Session_Namespace from other host

I have data stored in a session with Zend_Session_Namespace, Is it possible to recover this session data from another host using an id or something like that. If not, is it possible to recover the ...
2
votes
1answer
95 views

Will two web applications share the same session ID?

I have two ASP.NET web applications on the same server and domain, e.g. myServer/app1 and myServer/app2. app1 reads Session.SessionID and then redirects to app2. Will app2 read the same ...
2
votes
1answer
91 views

How to disable cookie in a programming way

Generally for Java developers, if we use the Servlet APIs to store data in the session, the sessionid will be stored in the cookie. If the client disabled the cookie, the jsessionid will be pending to ...
2
votes
1answer
593 views

weblogic jsessionid

I run Weblogic 10.3 locally and have a question about the sessionId that it generates. When i print session.getId() i see something that resembles this: ...
2
votes
2answers
416 views

IE8 Won't Always Edit Cookie Value

I've run into a problem where login on my site is not working consistently in IE8. It works fine in Firefox/Chrome/Safari but not IE8. On first login everything is fine. After logging out and trying ...
2
votes
1answer
75 views

Two way session for shipping cart

This is what I'm trying to accomplish, I'm just wondering what is the best method to achieve it. I have a standard e-commerce site. When the customer browse the site his cart content are stored in a ...
2
votes
1answer
347 views

Best practices for SessionId/Authentication Token generation

I have seen people using UUID for authentication token generation. However, in RFC 4122 it is stated that Do not assume that UUIDs are hard to guess; they should not be used as security ...
2
votes
1answer
296 views

ASP.Net session behavior in Internet Explorer

I have a requirement to open a new window from Internet Explorer, but the new window should be in new asp.net session. It should not share the same session of previous opened window or the parent ...
2
votes
1answer
833 views

REST WCF service and Session‏ in ASP.NET

Please help if you can. I have been trying to access the current session object of an asp.net application from within a WCF REST service. There has been no success at all. the session object ...
2
votes
1answer
150 views

DBMS_SESSION.set_client_identifier equivalent in SQL Server

I am new to SQL Server and I am more familiar with ORACLE database. I'd like to know if there's a way to set client identifier context like in Oracle by using DBMS_SESSION.set_client_identifier and ...
2
votes
6answers
227 views

Login systems: Why are sessions needed?

I was creating a login system with PHP and I wondered: Why are sessions needed? If I store a cookie with the userid and the sessionid doesn't it pose the exact same security risks to storing a cookie ...
2
votes
4answers
371 views

Session hash does size matter?

Does size matter when choosing the right algorithm to use for a session hash. I recently read this article and it suggested using whirlpool to create a hash for session id. Whirlpool generates a 128 ...
2
votes
4answers
9k views

How to avoid session sharing provided by IE8 programatically in java/j2ee application?

Microsoft, in an effort to make Internet Explorer 8 "more stable" and “faster”, have changed the underlying architecture of the browser and introduced a function called "Loosely-Coupled IE" (LCIE) ...
2
votes
2answers
787 views

How to get SessionID on a request where EnableSessionState=“False”

I want to be able to get the SessionID of the currently authenticated session in a WebMethod function where EnableSession = false. I cannot set EnableSession=true on this request, because another ...
1
vote
2answers
108 views

How Invalidate users sessions when makes logout?

I spent a lot of time to solve this problem, yet still couldn't get it work. I am using Spring Security. The application will run on multiple servers. I use the option "remember me" on login to save ...
1
vote
2answers
70 views

Tomcat creating new thread for same session

I have a webapp that uses Stripes and the Apache Shiro library for security. On my local Windows Tomcat 6.0.33 installation everything works fine. However, when I run the app on Tomcat 6.0.16 on ...
1
vote
1answer
61 views

Asp.NET and Cookies

In my website I am not using cookies. When the user logs in, I validate the user credentials by getting password from database and if user credentials are validated I store the Email ID and other user ...
1
vote
1answer
133 views

nodejs tls session id

I am using TLS to create session using node.js library. Node.js does it provide a way to retrieve session id of TLS connection established. It is part of SSL ctx in openssl. Can it be done without ...
1
vote
0answers
235 views

Custom session id generator for Tomcat 7/JBoss7

Folks, My webapp needs URL-safe session ids. Those generated by JBoss 7 (embedded Tomcat 7 inside JBoss) have characters like "+" which cause us some heartache. One of the avenues I am exploring is ...
1
vote
1answer
239 views

Multiple users assigned same session ID at once

I'm seeing multiple users logging in to my .NET 3.5 web application and sharing the same session ID. This appears to be happening most often when users are on different computers on the same network, ...

1 2 3 4