Hacking Web Apps and Apis

Total Page:16

File Type:pdf, Size:1020Kb

Hacking Web Apps and Apis CISO Platform Virtual Summit 2020 Hacking Web Apps & APIs Trend and Risk Kyle Lai CISSP, CDPSE, CSSLP, CISA, CIPP/US, CIPP/G CISO KLC Consulting July 18, 2020 All rights reserved. www.klcconsulting.net Kyle Lai Founder and CEO of KLC Consulting (CISSP, CSSLP, CISA, CIPP/US, CIPP/G, ISO 27001 LA) LinkedIn: https://www.linkedin.com/in/kylelai Twitter: @KyleOnCyber • 25+ years in IT | 20 years in Information Security (Pentest, • Former CISO & CPO of Pactera Third-party Risk, Compliance, Privacy, Engineering…) • Former CISO of Brandeis University – Heller School • Security Advisor for Fortune 500 firms • Former Penetration Tester for Fortune 500 firms • Experience in Software, DoD, Financial, Energy, Healthcare, • Author of SMAC MAC Address Changer Tool – Over 2.5 million High Tech, Consulting industries users worldwide • Provided consulting services for Microsoft, PwC, Boeing, HP, • Run 3 LinkedIn Groups (i.e. Cybersecurity Community) Fidelity Investment, Akamai, ExxonMobil, and DoD • Based in Texas, Massachusetts All rights reserved. 1 www.klcconsulting.net Why Talk About Web Application / API Security • According to the Akamai State of Internet Security report 2019 - 83% of web traffic is API traffic. • According to the Verizon Data Breach Investigation Report (DBIR) 43% of all breaches were attacks on web applications, more than double the results from last year. • ~90% of hacking related breaches are via Web Applications (Increased 20% from 2019) 70% DBIR 2020 (DBIR 2019) 90% All rights reserved. 2 www.klcconsulting.net Recent Data Breaches on Web Application / API Hack Airtel - API based vulnerability in the MyAirtel Starbucks - Security researcher found a directory application exposed details like IMEI number, Connection traversal flaw of an internally exposed API in the gift Type, Device Information, Personal Information such as card ordering web page potentially exposed the records First name, Last name, Contact Address, Gender, and of up to 100 million customers. Email, left 300 million users at risk USPS – A weakness in Web API allowed an attacker to Google - admitted that a bug in its Google Plus query the USPS website and scrape a database of over 60 API exposed private data of up to 500,000 Google Plus million corporate users, email addresses, account user accounts. Vulnerability led Google to shutdown numbers, addresses, campaign data, and phone numbers Google Plus service. Facebook – Attackers used a vulnerability in Facebook’s Panera Bread - Attackers exposed 37 million customer Developer API and Photo book API to expose tens of records via its API and ignored the vulnerability millions of users. All rights reserved. 3 www.klcconsulting.net Example of Modern Web Application Architecture • Focus on Web API and Microservices Source: https://docs.microsoft.com/en-us/dotnet/architecture/microservices/multi-container-microservice-net-applications/implement-api-gateways-with-ocelot All rights reserved. 4 www.klcconsulting.net OWASP Top 10 Web App Vulnerabilities and API Vulnerabilities OWASP Top 10 Web Application Security Risks (2017) OWASP Top 10 API Security Risks (2019) 1. Injection 1. Broken Object Level Authorization 2. Broken Authentication 2. Broken User Authentication 3. Sensitive Data Exposure 3. Excessive Data Exposure 4. XML External Entities (XXE) 4. Lack of Resources & Rate Limiting 5. Broken Access Control 5. Broken Function Level Authorization 6. Security Misconfiguration 6. Mass Assignment 7. Cross-Site Scripting (XSS) 7. Security Misconfiguration 8. Insecure Deserialization 8. Injection 9. Using Components with Known Vulnerabilities 9. Improper Assets Management 10. Insufficient Logging & Monitoring 10. Insufficient Logging & Monitoring All rights reserved. 5 www.klcconsulting.net Trending Vulnerabilities on Web App / API oAuth - Misconfiguration or Insecure Implementation Based on KLC’s analysis on: - Access token, URL redirect 1. Observation from Fortune 500 clients 2. Observation from SaaS clients Over Permission on Data Access - Misconfigured authentication (lack of auth), oAuth Scope issue, API access control 3. Public disclosed vulnerabilities from bug bounty firms Insecure Direct Object Reference (IDOR) 4. Common Vulnerabilities & Exposures - Lack of proper authentication and authorization (CVE) Missing API Security – - Rate Limiting, Cross Origin Resource Sharing (CORS) Note: Cross-Site Scripting (XSS) and SQL Injection (SQLi) still exists in most Secret in Code or Configuration Files (i.e. Github) applications but not really trending up Server Side Request Forgery (SSRF) Third-Party / Open Source Component Vulnerabilities All rights reserved. 6 www.klcconsulting.net oAuth Vulnerabilities • oAuth is complex, very widely used • Redirect_URI not validated (Trending up) • Access Token Protection (Seen more issues) • Many attack methods OAuth parameters registry containing the initial contents: Sr.No. Parameter Name & Usage Location Sr.No. Parameter Name & Usage Location 1 client_id 9 error_uri authorization request, token request authorization response, token response 2 client_secret 10 grant_type token request token request 3 response_type 11 access_token authorization_request authorization response, token response 4 redirect_uri authorization request, authorization 12 token_type authorization response, token response 5 scope authorization request or response, token 13 expires_in request or response authorization response, token response 6 state 14 username authorization request or response token request 7 code 15 password token request, authorization response token request 8 error_description 16 refresh_token authorization response, token response token request, token response All rights reserved. 7 www.klcconsulting.net oAuth Attacks and Mitigations 1. Insufficient Redirect URI Validation 2. Credential Leakage via Referer Headers 3. Credential Leakage via Browser History 4. Mix-Up Attacks 5. Authorization Code InJection 6. Access Token InJection 7. Cross Site Request Forgery 8. Access Token Leakage at the Resource Server 9. Open Redirection 10. 307 Redirect 11. TLS Terminating Reverse Proxies 12. Refresh Token Protection 13. Client Impersonating Resource Owner 14. ClickJacking Source: oAuth 2.0 Security Best Current Practices – Attacks and Mitigation by IETF All rights reserved. 8 www.klcconsulting.net Open Source Component Vulnerabilities - Challenges 99%: Proportion of 1,253 • OWASP Top 10 issue (2017) commercial codebases analyzed in 2019 from across 17 industries with • Open source components used by developers – A LOT open-source code (2020 Open Source Security and Risk Analysis • Lack of process, tools and dedicated people to examine / approve Report, Synopsys) new open source components (based on known vulnerabilities) 33%: Percentage of application • Many new open source components are puBlished every day security vulnerabilities stemming from embeddable open-source and • third-party components Many new vulneraBilities are discovered everyday on open (2019 Application Security Statistics source components Report, WhiteHat Security) • Lack of good tools to identify and prioritize open source 39% of firms surveyed plan on doing software composition analysis vulneraBilities to address when you have thousands of (SCA) only during the testing phase, vulneraBilities 37% during development, where remediation is much harder. (The • Security team doesn’t want to get in the way of developers and State of Application Security 2020, Forrester Research) hinder revenue generation; allows more unauthorized and vulneraBle open source components into the organization All rights reserved. 9 www.klcconsulting.net Insecure Direct Object Reference (IDOR) Vulnerability • Existed since OWASP Top 10 - 2007 • Web Applications are getting more complex with increasing number of APIs • Automated Static and Dynamic Vulnerability Scanning Tools cannot effectively find IDOR issues because it lacks the context of Web Apps and APIs • Lack of Manual Pentesting / Vulnerability Testing • Most likely, IDOR will still be a problem in the next few years Source: https://spanning.com/blog/insecure-direct-object-reference- web-based-application-security-part-6/ All rights reserved. 10 www.klcconsulting.net Trends in Misconfiguration 70% of Errors (including • DBIR: About 10% of data breaches caused by Misconfiguration Misconfiguration) Discovered by External Parties. • Misconfiguration has increased year by year for the last few years Consider Private Bug Bounty Program? • Due to increasing complexity of technology and tools 40% of all errors 17% Source: Verizon DBIR Report 2020 All rights reserved. 11 www.klcconsulting.net Misconfiguration - Technology Complexity • Cloud – more new features everyday, but lack of understanding to securely configuring and implementing them • More technology, tools and platforms used, but lack of guidance on secure configuration and implementation • Developers and engineers re not trained on the technologies, tools and platforms All rights reserved. 12 www.klcconsulting.net Why # of Web Application Vulnerabilities Is Growing? • Growing Complexity in Software infrastructure, technology and tools • Insufficient training on Modern Authentication (oAuth, OIDC) and secure handling of access tokens • Many insecure implementation of oAuth lead to access token leak and account take over • Insufficient training on new technologies and platforms • Cloud, Serverless, Key Vault, API Management, WAF, Database, Storage, Secure Configuration • Lack of training for developers on secure coding practices
Recommended publications
  • A Study of Android Application Security
    A Study of Android Application Security William Enck, Damien Octeau, Patrick McDaniel, and Swarat Chaudhuri Systems and Internet Infrastructure Security Laboratory Department of Computer Science and Engineering The Pennsylvania State University enck, octeau, mcdaniel, swarat @cse.psu.edu { } Abstract ingly desire it, markets are not in a position to provide security in more than a superficial way [30]. The lack of The fluidity of application markets complicate smart- a common definition for security and the volume of ap- phone security. Although recent efforts have shed light plications ensures that some malicious, questionable, and on particular security issues, there remains little insight vulnerable applications will find their way to market. into broader security characteristics of smartphone ap- In this paper, we broadly characterize the security of plications. This paper seeks to better understand smart- applications in the Android Market. In contrast to past phone application security by studying 1,100 popular studies with narrower foci, e.g., [14, 12], we consider a free Android applications. We introduce the ded decom- breadth of concerns including both dangerous functional- piler, which recovers Android application source code ity and vulnerabilities, and apply a wide range of analysis directly from its installation image. We design and exe- techniques. In this, we make two primary contributions: cute a horizontal study of smartphone applications based on static analysis of 21 million lines of recovered code. We design and implement a Dalvik decompilier, • Our analysis uncovered pervasive use/misuse of person- ded. ded recovers an application’s Java source al/phone identifiers, and deep penetration of advertising solely from its installation image by inferring lost and analytics networks.
    [Show full text]
  • Opentext Product Security Assurance Program
    The Information Company ™ Product Security Assurance Program Contents Objective 03 Scope 03 Sources 03 Introduction 03 Concept and design 04 Development 05 Testing and quality assurance 07 Maintain and support 09 Partnership and responsibility 10 Privavy and Security Policy 11 Product Security Assurance Program 2/11 Objective The goals of the OpenText Product Security Assurance Program (PSAP) are to help ensure that all products, solutions, and services are designed, developed, and maintained with security in mind, and to provide OpenText customers with the assurance that their important assets and information are protected at all times. This document provides a general, public overview of the key aspects and components of the PSAP program. Scope The scope of the PSAP includes all software solutions designed and developed by OpenText and its subsidiaries. All OpenText employees are responsible to uphold and participate in this program. Sources The source of this overview document is the PSAP Standard Operating Procedure (SOP). This SOP is highly confidential in nature, for internal OpenText consumption only. This overview document represents the aspects that are able to be shared with OpenText customers and partners. Introduction OpenText is committed to the confidentiality, integrity, and availability of its customer information. OpenText believes that the foundation of a highly secure system is that the security is built in to the software from the initial stages of its concept, design, development, deployment, and beyond. In this respect,
    [Show full text]
  • The OWASP Application Security Program Quick Start Guide
    Quick Start Guide The OWASP Application Security Program Quick Start Guide Five Days to Setting Up an Application Security Program Quickstart Guide About this Guide This guide is intended to be a short, straightforward introductory guide to standing-up or improving an Application Security Program1. The intended goal of the AppSec program is to implement measures throughout the code’s life- cycle to prevent gaps in the application security policy or the underlying system through flaws in the design, development, deployment, upgrade, or maintenance of the application. The application security program should effectively manage the security of its application systems, protecting information from unauthorized access, use, disclosure, disruption, modification, or destruction in order to provide integrity, confidentiality and availability. A fundamental component of this improved application security management is the ability to demonstrate acceptable levels of risk based on defined KPIs, including but limited to: 1. The number of vulnerabilities present in an application 2. The time to fix vulnerabilities 3. The remediation rate of vulnerabilities 4. The time vulnerabilities remain open The application security program deliverables include a holistic view of the state of security for each application, identifying the risks associated with the application and the countermeasures implemented to mitigate those risks, explaining how security is implemented, planning for system downtimes and emergencies, and providing a formal plan to improve the security in one or more of these areas. Audience The intended audience of this document is anyone from security engineers, developers, program managers, senior managers or a senior executive. This guide should be considered the start of a comprehensive approach, it is intended to give the basic questions and answers that should be asked by those who are in charge of the application security program in your organization, this includes those responsible for managing the risk of the entire organization.
    [Show full text]
  • Cybersecurity in a Digital Era.Pdf
    Digital McKinsey and Global Risk Practice Cybersecurity in a Digital Era June 2020 Introduction Even before the advent of a global pandemic, executive teams faced a challenging and dynamic environ- ment as they sought to protect their institutions from cyberattack, without degrading their ability to innovate and extract value from technology investments. CISOs and their partners in business and IT functions have had to think through how to protect increasingly valuable digital assets, how to assess threats related to an increasingly fraught geopolitical environment, how to meet increasingly stringent customer and regulatory expectations and how to navigate disruptions to existing cybersecurity models as companies adopt agile development and cloud computing. We believe there are five areas for CIOs, CISOs, CROs and other business leaders to address in particular: 1. Get a strategy in place that will activate the organization. Even more than in the past cybersecurity is a business issue – and cybersecurity effectiveness means action not only from the CISO organiza- tion, but also from application development, infrastructure, product development, customer care, finance, human resources, procurement and risk. A successful cybersecurity strategy supports the business, highlights the actions required from across the enterprise – and perhaps most importantly captures the imagination of the executive in how it can manage risk and also enable business innovation. 2. Create granular, analytic risk management capabilities. There will always be more vulnerabilities to address and more protections you can consider than you will have capacity to implement. Even companies with large and increasing cybersecurity budgets face constraints in how much change the organization can absorb.
    [Show full text]
  • Digital Finance and Data Security
    Digital Finance and Data Security How Private and Secure Is Data Used in Digital Finance? September 2018 AUTHOR Patrick Traynor Acknowledgements Introduction 1 We gratefully acknowledge the Data Privacy and Security Issues in Online Lending 1 generous support provided by the Digital Finance Providers Evaluated 3 Center for Financial Inclusion at Accion, without which this work 1. Privacy Analysis 5 would not have been possible. We Methodology 5 would particularly like to thank Sonja Results 7 Kelly, Director of Research, and Pablo Antón Díaz, Research Manager, for not Conclusions 10 only helping us to work productively with security stakeholders around 2. Security Analysis 11 the world, but also for their tireless Methodology 11 efforts to ensure that these issues are Results 17 prioritized and addressed. Conclusions 25 We also wish to thank Jasmine Bowers, Kevin Butler, and Imani 26 Sherman of the University of Florida, 3. Terms of Service Analysis all of whom made significant contributions to the successful 4. Conclusions and Recommendations 28 completion of this work. Annex A Word Count vs. Average Reading Grade Level of Privacy Policies 30 Annex B Digital Lenders Evaluated and Analyses Performed 32 Notes 33 Introduction Data Privacy and Security Issues Amounts and loan maturities vary from very in Online Lending short-term “nano” loans of a few dollars to Mobile phones and networks are transforming medium-term small business loans of a few the world of finance, creating opportunities hundred or some thousands of dollars. Some for widespread financial inclusion, especially companies have grown to substantial — even among neglected regions and groups.
    [Show full text]
  • NIST SP 800-163 Rev.1
    NIST Special Publication 800-163 Revision 1 Vetting the Security of Mobile Applications Michael Ogata Josh Franklin Jeffrey Voas Vincent Sritapan Stephen Quirolgico This publication is available free of charge from: https://doi.org/10.6028/NIST.SP.800-163r1 C O M P U T E R S E C U R I T Y NIST Special Publication 800-163 Revision 1 Vetting the Security of Mobile Applications Michael Ogata Vincent Sritapan Software and Systems Division Office of Science and Technology Information Technology Laboratory U.S. Department of Homeland Security Josh Franklin* Stephen Quirolgico Applied Cybersecurity Division Office of the Chief Information Officer Information Technology Laboratory U.S. Department of Homeland Security Jeffrey Voas *Former employee; all work for this Computer Security Division publication was done while at NIST Information Technology Laboratory This publication is available free of charge from: https://doi.org/10.6028/NIST.SP.800-163r1 April 2019 U.S. Department of Commerce Wilbur L. Ross, Jr., Secretary National Institute of Standards and Technology Walter Copan, NIST Director and Under Secretary of Commerce for Standards and Technology Authority This publication has been developed by NIST in accordance with its statutory responsibilities under the Federal Information Security Modernization Act (FISMA) of 2014, 44 U.S.C. § 3551 et seq., Public Law (P.L.) 113-283. NIST is responsible for developing information security standards and guidelines, including minimum requirements for federal information systems, but such standards and guidelines shall not apply to national security systems without the express approval of appropriate federal officials exercising policy authority over such systems.
    [Show full text]
  • The Ten Most Critical API Security Risks TOC Table of Contents
    The Ten Most Critical API Security Risks TOC Table of Contents Table of Contents About OWASP TOC Table of Contents...............................................2 The Open Web Application Security Project FW Foreword.............................................................3 (OWASP) is an open community dedicated to I Introduction..............................................................4 enabling organizations to develop, purchase, and RN Release Notes.......................................................5 maintain applications and APIs that can be trusted. RISK API Security Risk.............................................6 At OWASP, you'll find free and open: T10 OWASP API Security Top 10 - 2019..................7 API1:2019 Broken Object Level Authorization.........8 • Application security tools and standards. API2:2019 Broken User Authentication...................10 • Complete books on application security API3:2019 Excessive Data Exposure.......................12 testing, secure code development, and secure API4:2019 Lack of Resources & Rate Limiting......14 code review. API5:2019 Broken Function Level Authorization...16 • Presentations and videos. API6:2019 Mass Assignment...................................18 • Cheat sheets on many common topics. API7:2019 Security Misconfiguration.....................20 • Standard security controls and libraries. API8:2019 Injection.................................................22 • Local chapters worldwide . API9:2019 Improper Assets Management................24 • Cutting edge research.
    [Show full text]
  • Best Practices: Use of Web Application Firewalls
    OWASP Papers Program Best Practice: Use of Web Application Firewalls Best Practices: Use of Web Application Firewalls Version 1.0.5, March 2008, English translation 25. May 2008 Author: OWASP German Chapter with collaboration from: Maximilian Dermann Mirko Dziadzka Boris Hemkemeier Achim Hoffmann Alexander Meisel Matthias Rohr Thomas Schreiber OWASP Papers Program Best Practice: Use of Web Application Firewalls Abstract Web applications of all kinds, whether online shops or partner portals, have in recent years increasingly become the target of hacker attacks. The attackers are using methods which are specifically aimed at exploiting potential weak spots in the web application software itself – and this is why they are not detected, or are not detected with sufficient accuracy, by traditional IT security systems such as network firewalls or IDS/IPS systems. OWASP develops tools and best practices to support developers, project managers and security testers in the development and operation of secure web applications. Additional protection against attacks, in particular for already productive web applications, is offered by what is still a emerging category of IT security systems, known as Web Application Firewalls (hereinafter referred to simply as WAF), often also called Web Application Shields or Web Application Security Filters. One of the criteria for meeting the security standard of the credit card industry currently in force (PCI DSS - Payment Card Industry Data Security Standard v.1.1) for example, is either a regular source code review or the use of a WAF. The document is aimed primarily at technical decision-makers, especially those responsible for operations and security as well as application owners (specialist department, technical application managers) evaluating the use of a WAF.
    [Show full text]
  • Improved Mobile Application Security Mechanism Based on Kerberos
    2019 4th International Workshop on Materials Engineering and Computer Sciences (IWMECS 2019) Improved Mobile Application Security Mechanism based on Kerberos Jiabin Sun, Zhao Gao International School, Beijing University of Posts and Telecommunications, Beijing, 100876, China Keywords: Kerberos, security mechanism, keys. Abstract: This paper focuses on the improvement of mobile application security mechanism. Security problem of mobile application is a great challenge nowadays. This paper proposes a security model of mobile application which is based on Kerberos authentication. In this improved security model, every request from the client will be authenticated by the Kerberos server, but the authentication will be different between users with different access. And the classification of the users can be implemented by using different kinds of keys in the ticket-granting server. 1. Introduction With the popularity and serious security challenges for the mobile application, it is necessary to discuss how to improve the security mechanism and prevent potential attacks. The paper discuss the issue from the following aspect. In the first part, the mobile application security model will be discussed. This includes the main threats and the currently used security for mobile application. And in the second part the paper will have a briefly introduction about the Kerberos authentication system, on which the improved model based. And in the third part, the paper will introduce how the mechanism of Kerberos can be introduced in mobile application
    [Show full text]
  • Principles for Software Assurance Assessment a Framework for Examining the Secure Development Processes of Commercial Technology Providers
    Principles for Software Assurance Assessment A Framework for Examining the Secure Development Processes of Commercial Technology Providers PRIMARY AUTHORS: Shaun Gilmore, Senior Security Program Manager, Trustworthy Computing, Microsoft Corporation Reeny Sondhi, Senior Director, Product Security Engineering, EMC Corporation Stacy Simpson, Director, SAFECode © 2015 SAFECode – All Rights Reserved. Principles for Software Assurance Assessment Table of Contents Foreword ��������������������������������������������������������������������������������������������������������������������������������� 3 Methodology �������������������������������������������������������������������������������������������������������������������������� 3 Problem Statement ���������������������������������������������������������������������������������������������������������������� 4 Framework Overview ������������������������������������������������������������������������������������������������������������� 5 Guiding Principles for Software Security Assessment ����������������������������������������������������������������������6 The SAFECode Supplier Software Assurance Assessment Framework ������������������������������ 7 What Are Your Risk Management Requirements? ����������������������������������������������������������������������������7 The Tier Three Assessment �����������������������������������������������������������������������������������������������������������������8 The Tier One and Tier Two Assessments ���������������������������������������������������������������������������������������������8
    [Show full text]
  • Find Unknown Vulnerabilities Using
    Find unknown vulnerabilities using INTRODUCTION Fuzz testing, or Fuzzing, is a technique for testing the security and stability of computer programs (applications). Fuzzing is performed by sending malformed data to an application’s input points, for the purpose of causing unexpected behavior, resource leaks or crashes in the application. A fuzzer will also stress the application with unexpectedly high workloads in order to test its robustness. A typical fuzzer generates random or semi-random, specially crafted data of different varieties Generational-based fuzzers build input based on certain specifications or formats that provide context-awareness. Evolutionary-based fuzzers use genetic algorithms to generate mutations in the input data while the fuzzer is learning about the input format, which as a result maximizes code coverage. The functionality of a fuzzer can be split across different layers and implementations of the targeted system: Application fuzzing targets the system’s input and output components, such as the UI, command- line options, forms or user-generated content. Protocol fuzzing sends forged packets to the application or acts as a proxy to modify and replay requests on-the-fly. File format fuzzing targets the parsing layer, file structure, and the encoding mechanism. Fuzzing consists of three different phases that the fuzzer must go through: 1st phase generation of random or malformed data (attack vector) to be sent as input to the target application 2nd phase delivery of the generated data to the target’s entry point 3rd phase inspection of the impact on the target to determine if the attack was successful Engagement in application security testing using fuzzing is usually performed prior to the application’s production release, with the purpose of ensuring the quality of the application’s runtime behavior in unmet and unassumed scenarios.
    [Show full text]
  • A Complete Strategy for Web Application Security
    A Complete Strategy for Web Application Security Hua Xu, Ronald J. Glotzbach, Nathan W. Hartman Purdue University Abstract This paper is intent to develop a complete strategy to secure Web applications. The strategy is intended to improve the practices of the professionals associated with the development and operations of Web applications. Web application security is about protecting confidentiality, integrity, and availability of an organization’s Web assets as well as the organization’s reputation. The solution to Web application security is more than technology. It also involves policies, procedures, laws, people, and practices. Also, security is not a one-time effort. It should be an ongoing process integrated into the application development lifecycle. Security, like other Web application components, is best managed if planned at the initial phase of the application lifecycle. This strategy will help project managers and security professionals establish security policies, conduct risk assessment, and address potential risks in a cost-effective manner. It Page 10.23.1 Page ensures system architects design secure application infrastructure. It makes sure application Proceedings of the 2005 American Society for Engineering Education Annual Conference & Exposition Copyright © 2005, American Society for Engineering Education developers write secure code. It helps security professionals conduct security review in a timely basis. It also enables system administrators to secure Web applications across the multiple layers of the application infrastructure. The ultimate goal of this strategy is to protect Web applications in a proactive, systematic, and holistic way. 1. Introduction In general, security concerns confidentiality, integrity, and availability of systems and data. Confidentiality refers to the ability to ensure that information is private to the authorized parties and protected from unauthorized disclosure.
    [Show full text]