Owasp Top 10 Cheat Sheet



OWASP Top 10 Vulnerabilities Cheat Sheet by clucinvt - Cheatography.com Created Date: 5007Z. The OWASP Cheat Sheet Series was created to provide a concise collection of high value information on specific application security topics. OWASP/CheatSheetSeries. The OWASP Top 10 2017 lists the most prevalent and dangerous threats to web security in the world today and is reviewed every 3 years.

Objective of the Threat Modelling Control Cheat Sheet – To provide guidance to architects, designers and reviewers, on deriving threat models for applications.

Audience:

  1. Designers and Architects.
  2. Assessors: Threat Modeling SMEs or Security Assessors who are responsible for analyzing the security of the entire applciations’ components.

This cheat sheet provides guidance to assess existing apps as well as new apps. The instructions in here will help designer and architects address applications risks in an early stage of the development life cycle to help developers consider these risks while writing the code. It will also help assessors to look at risks from a comprehensive perspective.

Following the guidance in this cheat sheet, the assessors will list all possible risks and then verifies whether there are enough security controls to protect against these risks. The assessor will then give better recommendations on how to mitigate these risks. It will help the assessor discover logical attacks. In general, the threat modelling will help designers, architects and assessors discover logical attacks.

Understand Risk Management Basics in Context of Application Security

Understand the Relation between Risk, Threats, and Vulnerabilities.

Understand Threat Modeling Terminologies

Asset, Threat Agent, Attack Surface, Likelihood, Impact, Control, Mitigation, Tractability Matrix

Information Asset: is a body of knowledge that is organized and managed as a single entity. Like any other corporate asset, an organization's information assets have financial value.

Threat Agent: The term Threat Agent is used to indicate an individual or group that can manifest athreat. It is fundamental to identify who would want to exploit the assets of a company, and how they might use them against the company.

Attack Surface: The attack surface of a software environment is the sum of the different points (the 'attack vectors') where an unauthorized user (the 'attacker') can try to enter data to or extract data from an environment.

Likelihood: Likelihood of threat event initiation or occurrence represents the degree to which a threat actor will carry out a threat. The likelihood of threat events resulting in adverse impacts estimates the possibility that a threat event would result in an actual outcome. The combined analysis of both threat assessment vectors impacts established an overall threat likelihood.

Impact: the damage potential, such as the number of components that are affected by a threat.

Control: the safeguard or countermeasure to avoid, detect, counteract, or minimize security risks to information, computer systems, or other assets.

Mitigation: A systematic reduction in the extent of exposure to a risk and/or the likelihood of its occurrence.

Tractability Matrix: a grid that allows documentation and easy viewing of what is required for a system's security.

Define Objectives

Before starting the threat modelling process; it is important to identify business objectives of the applications, and identify security & compliance requirements. This is very important to be defined in advance to help evaluating the impact of any vulnerability during the risk analysis process.

Understanding application design is a key activity to perform application threat modelling. It will enable the user of this cheat sheet to draw an accurate data flow diagram. Therefore, it will be easier to identify all possible risks. Moreover, the more the user of this cheat sheet understands application design, the better they will understand logical application attacks. The objective of the design document is to enumerate application components.

Review the application design document

If you are not performing threat modelling during the development (in the design phase) so you have to review the application design documents to understand the application structure and to help generating the data flow diagram. If there are no available design documents so you have to create one. Move to next section

Create design documents

There are many ways to generate design documents; the 4+1 view model is one of the matured approaches to build your design document.

Reference to 4+1 view model of architecture here.

Please note that, the 4+1 is comprehensive, you may use any other design model during this phase.

The following subsections show the details about 4+1 approach and how this could help in the threat modelling process:

Logical View

Create a logical map of the Target of Evaluation.

Audience: Designers.

Area: Functional Requirements: describes the design's object model.

Related Artifacts: Design model

Implementation View

Audience: Programmers.

Area: Software components: describes the layers and subsystems of the application.

Related Artifacts: Implementation model, components

Please refer to the image in the appendix section for sample design for the implementation view.

Process View

Audience: Integrators.

Area: Non-functional requirements: describes the design's concurrency and synchronization aspects.

Related Artifacts: (no specific artifact).

Deployment View

Create a physical map of the Target of Evaluation

Audience: Deployment managers.

Area: Topology: describes the mapping of the software onto the hardware and shows the system's distributed aspects.

Related Artifacts: Deployment model.

Use-Case View

Audience: All the stakeholders of the system, including the end-users.

Area: describes the set of scenarios and/or use cases that represent some significant, central functionality of the system.

Related Artifacts: Use-Case Model, Use-Case documents

Gain an understanding of how the system works to perform a threat model, it is important to understand how the system works and interacts with its ecosystem. To start with creating a high-level information flow diagram, like the following:

  1. Identify the trusted boundaries of your system / application / module / ecosystem that you may want to start off with.
  2. Add actors – internal and external
  3. Define internal trusted boundaries. These can be the different security zones that have been designed
  4. Relook at the actors you have identified in #2 for consistency
  5. Add information flows
  6. Identify the information elements and their classification as per your information classification policy
  7. Where possible add assets to the identified information flows.

Define and Evaluate your Assets

Assets involved in the information flow should be defined and evaluated according to their value of confidentiality, integrity and availability.

Consider Data in transit and Data at rest

Data protection in transit is the protection of this data while it’s traveling from network to network or being transferred from a local storage device to a cloud storage device – wherever data is moving, effective data protection measures for in transit data are critical as data is often considered less secure while in motion.

While data at rest is sometimes considered to be less vulnerable than data in transit, attackers often find data at rest a more valuable target than data in motion.

The risk profile for data in transit or data at rest depends on the security measures that are in place to secure data in either state. Protecting sensitive data both in transit and at rest is imperative for modern enterprises as attackers find increasingly innovative ways to compromise systems and steal data.

Create an information flow diagram

Whiteboard Your Architecture

It is important to whiteboard system architecture by showing the major constraints and decisions in order to frame and start conversations. The value is actually twofold. If the architecture cannot be white-boarded, then it suggests that it is not well understood. If a clear and concise whiteboard diagram can be provided, others will understand it and it will be easier to communicate details.

Manage to present your DFD in context of MVC

In this step Data Flow Diagram should be divided the in the context of Model, View, Controller (MVC).

Use tools to draw your diagram

If you don’t like to manually draw your DFD; there are several tools available that could be used:

Poirot

The Poirot tool isolates and diagnoses defects through fault modelling and simulation. Along with a carefully selected partitioning strategy, functional and sequential test pattern applications show success with circuits having a high degree of observability.

MS Threat modeling

A tool that helps in finding threats in the design phase of software projects.

Define Data Flow over your DFD

Define Data Flows over the organization Data Flow Diagram.

Define Trust Boundaries

Define any distinct boundaries (External boundaries and Internal boundaries) within which a system trusts all sub-systems (including data).

Define applications user roles and trust levels

Define access rights that the application will grant to external entities and internal entities.

Highlight Authorization per user role over the DFD

Highlight Authorization per user role, for example, defining app users’ role, admins’ role, anonymous visitors’ role...etc.

Define Application Entry points

Define the interfaces through which potential attackers can interact with the application or supply it with data.

Define all possible threats

Identify Possible Attackers threat agents that could exist within the Target of Evaluation. Use Means, Motive, and Opportunities to understand Threats posed by Attackers. Then associate threat agents with system components they can directly interact with.

Work on minimizing the number of threat agents by:

  • Treating them as equivalent classes.
  • Considering attacker’s motivation when evaluating likelihood.
  • Consider insider Threats

The user of this cheat can depend on the following list of risks and threat libraries sources to define the possible threats an application might be facing:

  1. Risks with OWASP Top 10.
  2. Testing Procedure with OWASP ASVS.
  3. Risks with SANS Top 25.
  4. Microsoft STRIDE).

Map Threat agents to application Entry points

Map threat agents to application entry point, whether it is a login process, a registration process or whatever it might be and consider insider Threats.

Draw attack vectors and attacks tree

During this phase conduct the following activities:

  • Draw attack vectors and attacks tree.
  • Identify Use Cases/Abuse Cases.
  • Re-Define attack vectors to consider multi-step attacks.

Mapping Abuse Cases to Use Cases

TODO

Re-Define attack vectors

In most cases after defining the attack vectors, the compromised user role could lead to further attacks into the application. For example, assuming that an internet banking user credentials could be compromised, the user of this cheat sheet has to then redefine the attack vectors that could result from compromising the user’s credentials and so on.

Define the Impact and Probability for each threat

Enumerate Attacks posed by most dangerous attacker in designated areas of the logical and physical maps of the target of evaluation.

Assume the attacker has a zero day, because he does. In this methodology, we assume compromise; because a zero day will exist or already does exist (even if we don't know about it). This is about what can be done by skilled attackers, with much more time, money, motive and opportunity than we have.

Use risk management methodology to determine the risk behind the threat

Owasp mobile top 10 cheat sheet

Create risks in risk log for every identified threat or attack to any assets. A risk assessment methodology is followed in order to identify the risk level for each vulnerability and hence for each server.

Here we will highlight two risk methodology that could be used:

DREAD

DREAD), is about evaluating each existing vulnerability using a mathematical formula to retrieve the vulnerability’s corresponding risk. The DREAD formula is divided into 5 main categories:

  • Damage - how bad would an attack be?
  • Reproducibility - how easy it is to reproduce the attack?
  • Exploitability - how much work is it to launch the attack?
  • Affected users - how many people will be impacted?
  • Discoverability - how easy it is to discover the threat?

DREAD formula is:

Then the risk level is determined using defined thresholds below.

PASTA

PASTA, Attack Simulation & Threat Analysis (PASTA) is a complete methodology to perform application threat modleing. PASTA introduces a risk-centric methodology aimed at applying security countermeasures that are commensurate to the possible impact that could be sustained from defined threat models, vulnerabilities, weaknesses, and attack patterns.

PASTA introduces a complete risk analysis and evaluation procedures that you can follow to evaluate the risk for each of the identified threat. The main difference in using PASTA Approach is that you should evaluate the impact early on in the analysis phase instead of addressing the impact at the step of evaluating the risk.

The idea behind addressing the impact earlier in PASTA approach is that the audience that knows impact knows the consequences of product or use case failures more than participants in the threat analysis phase.

Application security risk assessments are not enough because they are very binary and leverage a control framework basis for denoting risks. It is recommended to contextually look at threats, impacts, probability, effectiveness of countermeasures that may be present.

For more details about PASTA.

Rank Risks

Using risk matrix rank risks from most severe to least severe based on Means, Motive & Opportunity. Below is sample risk matrix table, depending on your risk approach you can define deferent risk ranking matrix:

  • Risk Value: 01 to 12 → Risk Level: Notice
  • Risk Value: 13 to 18 → Risk Level: Low
  • Risk Value: 19 to 36 → Risk Level: Medium
  • Risk Value: 37 to 54 → Risk Level: High

Identify risk owners and agree on risk mitigation with risk owners and stakeholders. Provide the needed controls in forms of code upgrades and configuration updates to reduce risks to acceptable levels.

Identify risk owners

For the assessors: After defining and analysing the risks, the assessor should be working on the mitigation plan by firstly identifying risk owners which is the personnel that is responsible for mitigating the risk. i.e. one of the information security team or the development team.

For the designers or the architects: they should assign the risk mitigation to the development team to consider it while building the application.

Agree on risk mitigation with risk owners and stakeholders

TODO

Build your risk treatment strategy

  • Reduce: building controls if the form of code upgrades, confirming a specific design for the application or building a specific configuration during the deployment phase to make sure that application risk is reduced.
  • Transfer: For a specific component in the application the risk can be transferred to an outsourced third party to develop that component and making sure that the third party is doing the right testing for the component; or during the deployment phase, outsourcing a third party to do the deployment and transferring that risk to that third party.
  • Avoid: an example of avoiding the risk is disabling a specific function in the application that is the source for that risk.
  • Accept: if the risk is within acceptable criteria set earlier, in that case the designer risk owner can accept that risk.

For the assessor this is considered that last step in the assessment process. The following steps should be conducted by the risk owner, however, the assessor shall engage in 6.5 (Testing risk treatment) to verify the remediation.

Select appropriate controls to mitigate the risk

Selecting one of the controls to reduce the risk, either by upgrading the code, or building a specific configuration during the deployment phase and so on.

Test risk treatment to verify remediation

Mitigation controls will not vanish the risk completely, rather, it would just reduce the risk. In this case, the user of this cheat sheet should measure the value of the risk after applying the mitigation controls. The value of the risk should be reduced to the acceptable criteria set earlier.

Reduce risk in risk log for verified treated risk

After applying the mitigation and measuring the new risk value, the user of this cheat sheet should update the risk log to verify that risk has been reduced.

Periodically retest risk

TODO

TODO: Sample Design for Implementation View in 4+1 Model

Mohamed Alfateh

Ahmed Kanoma

  • 2OWASP Top Ten Cheat Sheet
    • 2.1A1 Injection
    • 2.2A2 Weak authentication and session management
    • 2.3A3 XSS
    • 2.4A4 Insecure Direct Object References
    • 2.5A5 Security Misconfiguration
    • 2.6A6 Sensitive Data Exposure
    • 2.7A7 Missing Function Level Access Control
    • 2.8A8 Cross Site Request Forgery
    • 2.9A9 Using Components with Known Vulnerabilities
    • 2.10A10 Unvalidated Redirects and Forwards

The following is a developer-centric defensive cheat sheet for the 2013 release of the OWASP Top Ten Project. It also presents a quick reference based on OWASP Testing Project to help how to identify the risks.

A1 Injection

Presentation

Render:

  • Set a correct content type
  • Set safe character set (UTF-8)
  • Set correct locale

On Submit:

  • Enforce input field type and lengths.
  • Validate fields and provide feedback.
  • Ensure option selects and radio contain only sent values.

Controller

Canonicalize using correct character setPositive input validation using correct character set

(NR) Negative input validation.(LR) Sanitize input.

Tip: updating a negative list (such as looking for 'script', 'sCrIpT', 'ßCrîpt', etc) will require expensive and constant deployments and will always fail as attackers work out your list of 'bad' words. Positive validation is simpler, faster and usually more secure and needs updating far less than any other validation mechanism.

Model

  • Object relational model (Hibernate).
  • Active Record design pattern.
  • Stored procedures.
  • Escape mechanisms such as ESAPI's Encoder:
    • EncodeForLDAP()
    • Encoder.EncodeforOS()

Tip: All SQL Injection is due to dynamic SQL queries. Strongly consider prohibiting dynamic SQL queries within your organization

Testing

A2 Weak authentication and session management

Presentation

Render:

  • Validate user is authenticated.
  • Validate role is sufficient for this view.
  • Set 'secure' and 'HttpOnly' flags for session cookies.
  • Send CSRF token with forms.

Controller

Design:

  • Only use inbuilt session management.
  • Store secondary SSO / framework / custom session identifiers in native session object – do not send as additional headers or cookies.
  • Validate user is authenticated.
  • Validate role is sufficient to perform this action.
  • Validate CSRF token.

Model

Validate role is sufficient to create, read, update, or delete data

Tip: Consider the use of a 'governor' to regulate the maximum number of requests per second / minute / hour that this user may perform. For example, a typical banking user should not perform more than ten transactions a minute, and one hundred per second is dangerous and should be blocked.

Testing

A3 XSS

Presentation

Render:

  • Set correct content type
  • Set safe character set (UTF-8)
  • Set correct locale
  • Output encode all user data as per output context
  • Set input constraints

On Submit:

  • Enforce input field type and lengths.
  • Validate fields and provide feedback.
  • Ensure option selects and radio contain only sent values.

Controller

Canonicalize using correct character setPositive input validation using correct character set

(NR) Negative input validation (LR) Sanitize input

Tip: Only process data that is 100% trustworthy. Everything else is hostile and should be rejected.

Model

Tip: Do not store data HTML encoded in the database. This prevents new uses for the data, such as web services, RSS feeds, FTP batches, data warehousing, cloud computing, and so on.

Tip: Use OWASP Scrubbr to clean tainted or hostile data from legacy data

Testing


A4 Insecure Direct Object References

Presentation

If data is from internal trusted sources, no data is sent.

Or

Render:

  • Send indirect random access reference map value.
Top

Controller

Obtain data from internal, trusted sources.

Or

Obtain direct value from random access reference access map.

Sheet

Model

Validate role is sufficient to create, read, update, or delete data.

Testing


A5 Security Misconfiguration

Presentation

Ensure web servers and application servers are hardened.

PHP: Ensure allow_url_fopen and allow_url_include are both disabled in php.ini. Consider the use of Suhosin extension

Controller

Ensure web servers and application servers are hardened

XML: Ensure common web attacks (remote XSLT transforms, hostile XPath queries, recursive DTDs, and so on) are protected by your XML stack. Do not hand craft XML documents or queries – use the XML layer.

Model

Ensure database servers are hardened

Testing

A6 Sensitive Data Exposure

Presentation

Design:

  • Use strong ciphers (AES 128 or better) with secure mode of operations (do not use ECB).
  • Use strong hashes (SHA 256 or better) with salts for passwords.
  • Protect keys more than any other asset.
  • Use TLS 1.2 or later for all web communications.
  • Buy extended validation (EV) certificates for public web servers.

Tip: Use TLS 1.2 always – even internally. Most snooping is done within corporate networks – and it is as easy and unethical as fishing with dynamite.

Render:

  • Do not send keys or hashes to the browser.

Controller

Design:

  • Use strong ciphers (AES 128 or better) with secure mode of operations (do not use ECB).
  • Use strong hashes (SHA 256 or better) with salts for passwords.
  • Protect keys more than any other asset.
  • Mandate strong encrypted communications between web and database servers and any other servers or administrative users.

Tip: Only certain personally identifiable information and sensitive values MUST be encrypted. Encrypt data that would be embarrassing or costly if it was leaked or stolen.

Tip: It is best to encrypt data on the application server, rather than the database server.

Model

Design:

  • Mandate strong encrypted communications with application servers and any other servers or administrative users.

Tip: Do not use RDBMS database, row or table level encryption. The data can be retrieved in the clear by anyone with direct access to the server, or over the network using the application credentials. It might even traverse the network in the clear despite being 'encrypted' on disk.

Testing

A7 Missing Function Level Access Control

Presentation

Design:

  • Ensure all non-web data is outside the web root (logs, configuration, etc).
  • Use octet byte streaming instead of providing access to real files such as PDFs or CSVs or similar.
  • Ensure every page requires a role, even if it is 'guest'.

Pre-render:

  • Validate user is authenticated.
  • Validate role is sufficient to view secured URL.

Owasp Top 10 Cheat Sheet 2018

Render:

  • Send CSRF token.

Controller

  • Validate user is authenticated.
  • Validate role is sufficient to perform secured action.
  • Validate CSRF token.

Tip: It's impossible to control access to secured resources that the web application server does not directly serve. Therefore, PDF reports or similar should be served by the web application server using binary octet streaming.

Tip: Assume attackers will learn where 'hidden' directories and 'random' filenames are, so do not store these files in the web root, even if they are not directly linked.

Model

Validate role is sufficient to create, read, update, or delete data

Testing

A8 Cross Site Request Forgery

Presentation

Pre-render:

  • Validate user is authenticated
  • Validate role is sufficient for this view

Render:

  • Send CSRF token.
  • Set 'secure' and 'HttpOnly' flags for session cookies.

Controller

  • Validate CSRF token.
  • Validate role is sufficient to perform this action.
  • Validate role is sufficient.

Tip: CSRF is always possible if there is XSS, so make sure XSS is eliminated within your application.

Model

Validate role is sufficient to create, read, update, or delete data

Testing

A9 Using Components with Known Vulnerabilities

Presentation

Controller

Model

Testing

A10 Unvalidated Redirects and Forwards

Presentation

  • Design the app without URL redirection parameters.

or

Render:

  • Use random indirect object references for redirection parameters.

Controller

  • Design the app without URL redirection parameters.

or

  • Obtain direct redirection parameter from random indirect reference access map.
  • (LR) Positive validation of redirection parameter.
  • (NR) Java – Do not forward() requests as this prevents SSO access control mechanisms.

Model

  • Validate role is sufficient to create, read, update, or delete data.

Testing

  • Andrew van der Stock vanderaj[at]owasp.org
  • Ismael Rocha Gonçalves ismaelrg[at]gmail.com
  • Jorge Correa jacorream@gmail.com


This page has been recommended for deletion.
You can help OWASP by improving it or discussing it on its Talk page. SeeFixME
Comment: Tagged via fixme/delete.

Owasp Prevention Cheat Sheet

Retrieved from 'https://www.owasp.org/index.php?title=OWASP_Top_Ten_Cheat_Sheet&oldid=242812'