deneme bonusu maltcasino bahis siteleri
sex video free download in mobile hot sexy naked indian girls download free xxx video
antalya escort
atasehir eskort bahcelievler escort alanya escort atasehir escort
gaziantep escort
gaziantep escort
escort pendik
erotik film izle Rus escort gaziantep rus escort
vdcasino casino metropol casinomaxi
beylikdüzü escort
deneme bonusu veren siteler deneme bonusu veren siteler
z library books naked ai
deneme bonusu veren siteler
bahis siteleri
sweet bonanza
casino siteleri
en iyi casino siteleri
deneme bonusu veren siteler
deneme bonusu veren siteler
Tamil wife dirty porn Bengali MMS Porn Video indian hardcore threesome sex
s
Contact Login Register
h M

Secure Programming Tips - Cookie Creation & Session Management

Week 4: Cookie Creation and Session Management

Author: Chad Nash/Thursday, October 10, 2013/Categories: SQL Performance / Code Security

Rate this article:
5.0

Week 4: Cookie Creation and Session Management


Due to the stateless nature of how HTTP works, it’s virtually impossible for a web server to differentiate one request from another. As developers, it is imperative for us to implement some sort of session management to identify one user’s request from that of another. Most modern programming languages and web servers have mechanisms in place that ease management of users’ sessions by creating Session IDs. These session IDs help identify unique user requests. However, session IDs are often an attack target where a malicious user might attempt to guess a valid session ID in an attempt to hijack a current user’s session. Another similar attack would consist of a malicious user attempting to predict a future session ID. If a future session ID could be predicted, the malicious user could send a request to the server containing the future session ID and attempt to hijack a user’s session after that session ID was assigned.


The strength of a session ID is directly related to its length and the number of unique characters used to create it. The more characters the session ID contains, generally the more secure it will be. Ideally, a session ID should be at least 128 bits of entropy, which equates to about 16 characters in length. ASP.NET session IDs are 120 bits, but they have the added value of being signed and encrypted which all but ensures their security. ASP.NET session IDs are similar to GUIDS (Globally Unique Identifiers) and are virtually guaranteed to never repeat. If you are not using a language that generates session IDs or it generates session IDs that aren’t of sufficient size and strength, it is imperative that you, the developer, implement secure session IDs that are safe from attack.


In the event the web server you are using doesn’t support sessions, then the implementation of cookies is the best way to handle session management. Cookies are basically just pieces of data that can be persistent (stored on the user’s machine) or non-persistent (only available while browser is open and session is active). Before using cookies, it’s important to understand how to use them in a secure manner. The rest of this article will focus on the following areas of cookie security.


·         Persistent vs. Non-Persistent

·         Clear Text/Encoding/Encryption

·         Security Issues of Poor Implementation


First, let’s get an understanding of what a cookie actually is and why it is used. Cookies are nothing more than pieces of text that are transmitted from the web server to the user’s browser. Why are cookies used? Generally, cookies are used to determine the authentication or authorization rights of a user; they can be used to track which items a user has added to his shopping cart in an e-commerce website. They can also be used to track a user’s actions within an application to determine preferences. These preferences can then be used for targeted advertising.


Now that we know what a cookie is, let’s clear up some misconceptions on what a cookie isn’t. Cookies are not harmful, at least not in the context that they can cause harm to your computer system. Since cookies are nothing more then text and not executable code, it’s virtually impossible for them to be used maliciously like a virus or worm. The general concern associated with cookies has to do with a person’s browsing privacy. Because cookies can be used to track a user’s preferences and internet browsing patterns, they can be used to track what websites you have visited. In a corporate environment this could be an issue if employees are accessing websites that are in violation of a company’s internet usage policy. So, now that we know what cookies are and what they aren’t, as well as why they are used, let’s move on to understanding how developers can use them safely and securely within their applications.


What is the difference between a persistent and non-persistent cookie? A persistent cookie is data that is saved to a user’s machine. A common scenario when a persistent cookie would be created is when a user logs into an application and chooses to have their identity remembered, such as using the “remember me” functionality of a site during the login process. The persistent cookie contains information that identifies the user on subsequent visits to the site. The cookie may allow the user to bypass the login functionality and gain automatic access into the site itself. A non-persistent cookie is data that is only available while the user’s browser is still open and the session is active. If the user explicitly logs out of the application or closes their browser the non-persistent cookie is destroyed. None of the data associated with a non-persistent cookie is written to the user’s machine.


You should never store sensitive or personally identifiable information, such as social security numbers, account numbers, or passwords, in a persistent cookie. When making the determination on whether to encrypt or encode the data or leave it in plain text is up to developer preference. However, it is recommended to encrypt any cookie data that is used as a part of the applications logic, such as if a cookie value is used to hide or display a link on the page. In the examples below we’ll look at some common security issues that can arise when cookies are implemented incorrectly.


In Figure 1 below, we see a user attempting to login to an application using his username and password.


Figure 1

 

Figure 2 shows the response received from the server.

 

Figure 2

 

Figure 3 shows the menu listing for an authenticated user.

 

Figure 3

 

As you can see above, the response sets a series of cookies associated with the application. The “UserInfo” cookie collection contains three separate cookie values, userid, isadmin and isloggedin. We also see the developer chose not to encrypt the values associated with these cookies. If these cookie values are used to determine functionality of the application, this can lead to serious security issues, such as privilege escalation and even worse, identity theft.

 

Using a web proxy, such as Burp Proxy or one of several browser add-ons, such as Tamper IE for Internet Explorer or Live HTTP Headers for Firefox, we can intercept and manipulate requests to and from the browser. By intercepting and manipulating the requests to the application, we can determine if changing the values of the cookies has any effect on the application itself. In Figure 4 below, we have changed the “isadmin” cookie value from “f”, assuming this means False, to “t” for True.

 

Figure 4

 

We can see in Figure 5 below that this value was being used to determine specific functionality of the application. We see by changing the value from “f” to “t”, a new menu item called “Admin” was added to the page. This allowed our malicious user to escalate his privileges to gain access to the administrative portion of the application.

 

Figure 5

 

One of the menu items of interest for an authenticated user is the “My Account” link. In Figure 6 below we see the page displayed when this link is clicked.

 

Figure 6 (Note: User account information is fictitious.)

 

We see from the page displayed above that a specific user’s details are displayed on the “My Account” page. These details include the user’s name, address and credit card information. The next thing we, as a malicious user, would attempt to do is see if we can gain access to another user’s account information. By looking at the application’s cookies, we see a “userid” with the value “12151”. By intercepting and manipulating this value by incrementing it, we can determine if this will allow us to access other user’s accounts.

 

In Figure 7 below we have change the “userid” value in the request from “12151” to “12152”.

 

Figure 7

 

We can see in Figure 8, that the “userid” cookie was being used to determine the identity of the user accessing the application. By changing this value we, as the malicious user, have successfully gained access to another user’s account information allowing us to steal their personal information.

 

Figure 8 (Note: User account information is fictitious.)

 

The previous examples demonstrate the serious security issues that can arise when cookies are implemented incorrectly. Because the above cookies are persistent, this information is also saved locally on the user’s machine. If a malicious user were able to gain access to this cached cookie they could use it to access the application and impersonate the user, thus gaining access to their account information. In summary, it is developer preference whether to use a persistent or non-persistent cookie. It is also recommended never to store sensitive or personally identifiable information within a cookie value. Finally, it is considered a security best practice to encrypt any data stored within a cookie.

 

 

Number of views (15780)/Comments (-)

Tags:
blog comments powered by Disqus

Enter your email below AND grab your spot in our big giveaway!

The winner will receive the entire Data Springs Collection 7.0 - Designed to get your website up and running like a DNN superhero (spandex not included).

Subscribe