1 / 40

Web Application Security Vulnerabilities

1. Introduction. Web security is important for E-Commerce.Previous studies: SSLSETWeb server securityApplication-level securityWeb applications mistakenly trust data returned from a client.. 2. OWASP Top Ten Web Application Vulnerabilities. OWASPThe Open Web Application Security Projecthttp:

teal
Download Presentation

Web Application Security Vulnerabilities

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


    1. Web Application Security Vulnerabilities Yen-Cheng Chen Department of Information Management National Chi Nan University Puli, 545 Nantou, Taiwan ycchen@ncnu.edu.tw

    2. 1. Introduction Web security is important for E-Commerce. Previous studies: SSL SET Web server security Application-level security Web applications mistakenly trust data returned from a client.

    3. 2. OWASP Top Ten Web Application Vulnerabilities OWASP The Open Web Application Security Project http://www.owasp.org/ Documents The Ten Most Critical Web Application Security Vulnerabilities OWASP Guide to Building Secure Web Applications

    4. The Ten Most Critical Web Application Security Vulnerabilities Unvalidated Parameters Broken Access Control Broken Account and Session Management Cross-Site Scripting (XSS) Buffer Overflows Command Injection Flaws Error Handling Problems Insecure Use of Cryptography Remote Administration Flaws Web and Application Server Misconfiguration

    5. (1). Unvalidated Parameters Information from web requests is not validated before being used by a web application. Attackers can use these flaws to attack background components through a web application.

    6. How to Protect Yourself Ensure that all parameters are validated before they are used. Data type (string, integer, real, etc.) Allowed character set Minimum and maximum length Whether null is allowed Whether the parameter is required or not Whether duplicates are allowed Numeric range Specific legal values (enumeration) Specific patterns (regular expressions)

    7. (2). Broken Access Control Restrictions on what authenticated users are allowed to do are not properly enforced. Attackers can exploit these flaws to access other users' accounts, view sensitive files, or use unauthorized functions.

    8. How to Protect Yourself Think through an application's access control and capture it in a web application security policy. Some specific access control issues include: Insecure Id's Forced Browsing Past Access Control Checks Path Traversal File Permissions Client Side Caching

    9. (3). Broken Account and Session Management Account credentials and session tokens are not properly protected. Attackers that can compromise passwords, keys, session cookies, or other tokens can defeat authentication restrictions and assume other users' identities.

    10. How to Protect Yourself Careful and proper use of custom or off the shelf authentication and session management mechanisms Password Change Controls Password Strength Password Storage Protecting Credentials in Transit Session ID Protection Account Lists Browser Caching Trust Relationships Backend Authentication

    11. (4). Cross-Site Scripting (XSS) The web application can be used as a mechanism to transport an attack to an end user's browser. A successful attack can disclose the end user's session token, attack the local machine, or spoof content to fool the user.

    12. XSS Example

    13. XSS Web Application Hijack Scenario

    14. How to Protect Yourself Detailed code review that searches the code for validation of all headers, cookies, query strings, form fields, and hidden fields (i.e., all parameters) Dangerous Characters for Cross Site Scripting:

    15. (5). Buffer Overflows Web application components in some languages that do not properly validate input can be crashed and, in some cases, used to take control of a process. These components can include CGI, libraries, drivers, and web application server components.

    16. How to Protect Yourself Keep up with the latest bug reports for your web and application server products and other products in your Internet infrastructure.Apply the latest patches to these products. Review all code that accepts input from users via the HTTP request and ensure that it provides appropriate size checking on all such inputs.

    17. (6). Command Injection Flaws Web applications pass parameters when they access external systems or the local operating system. If an attacker can embed malicious commands in these parameters, the external system may execute those commands on behalf of the web application.

    18. SQL Injection SQLQuery = “SELECT ? FROM Users WHERE (UserName='” + strUN + “') AND (Password='” + strPW + “');” ? User name “fredchen”, password “199msq” : SELECT ? FROM Users WHERE (UserName='fredchen') AND (Password='199msq'); ? SQL Injection: User name/Password : ' OR 'A'='A

    19. Input Validation

    20. How to Protect Yourself Avoid the use of commands where possible. Carefully validate the data provided to ensure that it does not contain any malicious content. Ensure that the web application runs with only the privileges it absolutely needs to perform its function. Any user information that is being inserted into the command should be rigorously checked.

    21. (7). Error Handling Problems Error conditions that occur during normal operation are not handled properly. If an attacker can cause errors to occur that the web application does not handle, they can gain detailed system information, deny service, cause security mechanisms to fail, or crash the server.

    22. How to Protect Yourself A specific policy for how to handle errors should be documented. Ensure that the site is built to gracefully handle all possible errors. Certain classes of errors should be logged to help detect implementation flaws in the site and/or hacking attempts.

    23. (8). Insecure Use of Cryptography Web applications frequently use cryptographic functions to protect information and credentials. These functions and the code to integrate them have proven difficult to code properly, frequently resulting in weak protection. E.g. MD5(CreditCardNum, RandomNum)

    24. How to Protect Yourself Minimize the use of encryption and only keep information that is absolutely necessary. Choose a library that has been exposed to public scrutiny and make sure that there are no open vulnerabilities. Encapsulate the cryptographic functions that are used and review the code carefully. Be sure that secrets, such as keys, certificates, and passwords, are stored securely.

    25. (9). Remote Administration Flaws Many web applications allow administrators to access the site using a web interface. If these administrative functions are not very carefully protected, an attacker can gain full access to all aspects of a site.

    26. How to Protect Yourself Never allow administrator access through the front door if at all possible. The use of strong authentication such as certificates, token based authenticators,... The use of encryption (e.g., VPN or SSL) for the entire administrative session. Interfaces be separate from interfaces provided to normal users. Network separation or IP filtering.

    27. (10). Web and Application Server Misconfiguration Having a strong server configuration standard is critical to a secure web application. These servers have many configuration options that affect security and are not secure out of the box.

    28. How to Protect Yourself Create a hardening guideline for configuration: Configuring all security mechanisms Turning off all unused services Setting up roles, permissions, and accounts Logging and alerts Configuration maintenance: Monitoring the latest security vulnerabilities published Applying the latest security patches Updating the security configuration guideline Regular vulnerability scanning from both internal and external perspectives Regular status reports to upper management documenting overall security posture

    29. Other Security Vulnerabilities Unnecessary and Malicious Code Broken Thread Safety and Concurrent Programming Denial of Service Unauthorized Information Gathering Accountability Problems and Weak Loggin Data Corruption Broken Caching, Pooling, and Reuse

    30. URL/Form Modification Form Modification Client-side form validation by HTML itself <input type=text name=id MaxLength=8> Client-side script <input type=text onChange=“checkIt(this)”> Hidden form fields <input type=hidden name=price value=“5700”> URL Modification URL parameter http://www.citibank.com/print.asp?id=u1257

    31. Price-Changing Attack Saving the HTML form to disk Modifying the price <input type=hidden name=price value=“1”> Modifying the action attribute Reloading the HTML form back into the browser

    32. Security Guidelines Validate Input and Output Fail Securely (Closed) Keep it Simple Use and Reuse Trusted Components Defense in Depth Only as Secure as the Weakest Link Security By Obscurity Won't Work Least Privilege Compartmentalization (Separation of Privileges)

    33. a. Validate Input and Output All user input and user output should be checked to ensure it is both appropriate and expected. Allow only explicitly defined characteristics and drop all other data.

    34. b. Fail Securely (Closed) When it fails, it fails closed. It should fail to a state that rejects all subsequent security requests. A good analogy is a firewall. If a firewall fails it should drop all subsequent packets.

    35. c. Keep it Simple If a security system is too complex for its user base, it will either not be used or users will try to find measures to bypass it. This message applies equally to tasks that an administrator must perform in order to secure an application. This message is also intended for security layer API's that application developers must use to build the system.

    36. d. Use and Reuse Trusted Components Using and reusing trusted components makes sense both from a resource stance and from a security stance. When someone else has proven they got it right, take advantage of it.

    37. e. Defense in Depth Relying on one component to perform its function 100% of the time is unrealistic. While we hope to build software and hardware that works as planned, predicting the unexpected is difficult. Good systems don't predict the unexpected, but plan for it.

    38. f. Only as Secure as the Weakest Link Careful thought must be given to what one is securing. Attackers are lazy and will find the weakest point and attempt to exploit it.

    39. g. Security By Obscurity Won't Work It's naive to think that hiding things from prying eyes doesn't buy some amount of time. This strategy doesn't work in the long term and has no guarantee of working in the short term.

    40. h. Least Privilege Systems should be designed in such a way that they run with the least amount of system privilege they need to do their job.

    41. i. Compartmentalization (Separation of Privileges) Compartmentalizing users, processes and data helps contain problems if they do occur. Compartmentalization is an important concept widely adopted in the information security realm.

More Related