CAPEC Definitions

    CAPEC Definitions / CAPEC-105

    CAPEC-105: HTTP Request Splitting

    An adversary abuses the flexibility and discrepancies in the parsing and interpretation of HTTP Request messages by different intermediary HTTP agents (e.g., load balancer, reverse proxy, web caching proxies, application firewalls, etc.) to split a single HTTP request into multiple unauthorized and malicious HTTP requests to a back-end HTTP agent (e.g., web server). See CanPrecede relationships for possible consequences.

    Severity:High
    Possibility:Medium

    Extended Description

    This entails the adversary injecting malicious user input into various standard and/or user defined HTTP headers within a HTTP Request through user input of Carriage Return (CR), Line Feed (LF), Horizontal Tab (HT), Space (SP) characters as well as other valid/RFC compliant special characters and unique character encoding. This malicious user input allows for web script to be injected in HTTP headers as well as into browser cookies or Ajax web/browser object parameters like XMLHttpRequest during implementation of asynchronous requests. This attack is usually the result of the usage of outdated or incompatible HTTP protocol versions as well as lack of syntax checking and filtering of user input in the HTTP agents receiving HTTP messages in the path. This differs from CAPEC-34 HTTP Response Splitting, which is usually an attempt to compromise a client agent (e.g., web browser) by sending malicious content in HTTP responses from back-end HTTP infrastructure. HTTP Request Splitting is an attempt to compromise a back-end HTTP agent via HTTP Request messages. HTTP Smuggling (CAPEC-33 and CAPEC-273) is different from HTTP Splitting due to the fact it relies upon discrepancies in the interpretation of various HTTP Headers and message sizes and not solely user input of special characters and character encoding. HTTP Smuggling was established to circumvent mitigations against HTTP Request Splitting techniques.

    Mitigations

    Design: evaluate HTTP agents prior to deployment for parsing/interpretation discrepancies.

    Configuration: front-end HTTP agents notice ambiguous requests.

    Configuration: back-end HTTP agents reject ambiguous requests and close the network connection.

    Configuration: Disable reuse of back-end connections.

    Configuration: Use HTTP/2 for back-end connections.

    Configuration: Use the same web server software for front-end and back-end server.

    Implementation: Utilize a Web Application Firewall (WAF) that has built-in mitigation to detect abnormal requests/responses.

    Configuration: Install latest vendor security patches available for both intermediary and back-end HTTP infrastructure (i.e. proxies and web servers)

    Configuration: Ensure that HTTP infrastructure in the chain or network path utilize a strict uniform parsing process.

    Implementation: Utilize intermediary HTTP infrastructure capable of filtering and/or sanitizing user-input.

    Relationships with other CAPECs

    CAPEC-220: Client-Server Protocol Manipulation

    CAPEC-34: HTTP Response Splitting

    CAPEC-115: Authentication Bypass

    CAPEC-141: Cache Poisoning

    CAPEC-63: Cross-Site Scripting (XSS)

    CAPEC-593: Session Hijacking

    CAPEC-148: Content Spoofing

    CAPEC-154: Resource Location Spoofing

    Prerequisites

    An additional intermediary HTTP agent such as an application firewall or a web caching proxy between the adversary and the second agent such as a web server, that sends multiple HTTP messages over same network connection.

    Differences in the way the two HTTP agents parse and interpret HTTP requests and its headers.

    HTTP headers capable of being user-manipulated.

    HTTP agents running on HTTP/1.0 or HTTP/1.1 that allow for Keep Alive mode, Pipelined queries, and Chunked queries and responses.

    Related Weaknesses

    CWE-74: Improper Neutralization of Special Elements in Output Used by a Downstream Component ('Injection')

    CWE-113: Improper Neutralization of CRLF Sequences in HTTP Headers ('HTTP Request/Response Splitting')

    CWE-138: Improper Neutralization of Special Elements

    CWE-436: Interpretation Conflict