]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
http: decode double decoded path and query string characters. Bug #464.
authorVictor Julien <victor@inliniac.net>
Sun, 24 Jun 2012 16:17:48 +0000 (18:17 +0200)
committerVictor Julien <victor@inliniac.net>
Sun, 24 Jun 2012 16:17:48 +0000 (18:17 +0200)
src/app-layer-htp.c

index abe6d6ac42f123965b5e4bcdb38a17d3e543f8e5..d44a9f22e0d9ebc2d47b698d1aea6845ec973bad 100644 (file)
@@ -834,16 +834,34 @@ static int HTPCallbackRequestUriNormalize(htp_connp_t *c)
 {
     SCEnter();
 
-    if (c == NULL || c->in_tx == NULL || c->in_tx->parsed_uri == NULL ||
-        c->in_tx->parsed_uri->query == NULL)
+    if (c == NULL || c->in_tx == NULL || c->in_tx->parsed_uri == NULL)
     {
         SCReturnInt(HOOK_OK);
     }
 
-    /* uri normalize the query string as well */
-    htp_decode_path_inplace(c->cfg, c->in_tx,
-            c->in_tx->parsed_uri->query);
+    /* uri normalize the path string again -- while loop to unroll
+     * double+ encodings */
+    if (c->in_tx->parsed_uri->path != NULL) {
+        while (1) {
+            size_t origlen = bstr_len(c->in_tx->parsed_uri->path);
+            htp_decode_path_inplace(c->cfg, c->in_tx,
+                    c->in_tx->parsed_uri->path);
+            if (origlen == bstr_len(c->in_tx->parsed_uri->path))
+                break;
+        }
+    }
 
+    /* uri normalize the query string as well -- while loop to unroll
+     * double+ encodings */
+    if (c->in_tx->parsed_uri->query != NULL) {
+        while (1) {
+            size_t origlen = bstr_len(c->in_tx->parsed_uri->query);
+            htp_decode_path_inplace(c->cfg, c->in_tx,
+                    c->in_tx->parsed_uri->query);
+            if (origlen == bstr_len(c->in_tx->parsed_uri->query))
+                break;
+        }
+    }
     SCReturnInt(HOOK_OK);
 }
 #endif
@@ -2212,6 +2230,10 @@ static void HTPConfigure(void)
             htprec->response_body_limit = HTP_CONFIG_DEFAULT_REQUEST_BODY_LIMIT;
             htp_config_register_request(htp, HTPCallbackRequest);
             htp_config_register_response(htp, HTPCallbackResponse);
+#ifdef HAVE_HTP_URI_NORMALIZE_HOOK
+            htp_config_register_request_uri_normalize(htp,
+                    HTPCallbackRequestUriNormalize);
+#endif
             htp_config_set_generate_request_uri_normalized(htp, 1);
 
             /* Server Parameters */
@@ -3239,6 +3261,153 @@ end:
     return result;
 }
 
+/** \test double encoding in path
+ */
+static int HTPParserTest11(void) {
+    int result = 0;
+    Flow *f = NULL;
+    uint8_t httpbuf1[] = "GET /%2500 HTTP/1.0\r\n\r\n";
+    uint32_t httplen1 = sizeof(httpbuf1) - 1; /* minus the \0 */
+    TcpSession ssn;
+    HtpState *htp_state =  NULL;
+    int r = 0;
+
+    memset(&ssn, 0, sizeof(ssn));
+
+    f = UTHBuildFlow(AF_INET, "1.2.3.4", "1.2.3.5", 1024, 80);
+    if (f == NULL)
+        goto end;
+    f->protoctx = &ssn;
+
+    StreamTcpInitConfig(TRUE);
+
+    uint32_t u;
+    for (u = 0; u < httplen1; u++) {
+        uint8_t flags = 0;
+
+        if (u == 0)
+            flags = STREAM_TOSERVER|STREAM_START;
+        else if (u == (httplen1 - 1))
+            flags = STREAM_TOSERVER|STREAM_EOF;
+        else
+            flags = STREAM_TOSERVER;
+
+        r = AppLayerParse(NULL, f, ALPROTO_HTTP, flags, &httpbuf1[u], 1);
+        if (r != 0) {
+            printf("toserver chunk %" PRIu32 " returned %" PRId32 ", expected"
+                    " 0: ", u, r);
+            goto end;
+        }
+    }
+
+    htp_state = f->alstate;
+    if (htp_state == NULL) {
+        printf("no http state: ");
+        goto end;
+    }
+
+    htp_tx_t *tx = list_get(htp_state->connp->conn->transactions, 0);
+    if (tx != NULL && tx->request_uri_normalized != NULL) {
+        if (2 != bstr_size(tx->request_uri_normalized)) {
+            printf("normalized uri len should be 2, is %"PRIuMAX,
+                (uintmax_t)bstr_size(tx->request_uri_normalized));
+            goto end;
+        }
+
+        if (bstr_ptr(tx->request_uri_normalized)[0] != '/' ||
+            bstr_ptr(tx->request_uri_normalized)[1] != '\0')
+        {
+            printf("normalized uri \"");
+            PrintRawUriFp(stdout, (uint8_t *)bstr_ptr(tx->request_uri_normalized), bstr_size(tx->request_uri_normalized));
+            printf("\": ");
+            goto end;
+        }
+    }
+
+    result = 1;
+end:
+    StreamTcpFreeConfig(TRUE);
+    if (htp_state != NULL)
+        HTPStateFree(htp_state);
+    UTHFreeFlow(f);
+    return result;
+}
+
+/** \test double encoding in query
+ */
+static int HTPParserTest12(void) {
+    int result = 0;
+    Flow *f = NULL;
+    uint8_t httpbuf1[] = "GET /?a=%2500 HTTP/1.0\r\n\r\n";
+    uint32_t httplen1 = sizeof(httpbuf1) - 1; /* minus the \0 */
+    TcpSession ssn;
+    HtpState *htp_state =  NULL;
+    int r = 0;
+
+    memset(&ssn, 0, sizeof(ssn));
+
+    f = UTHBuildFlow(AF_INET, "1.2.3.4", "1.2.3.5", 1024, 80);
+    if (f == NULL)
+        goto end;
+    f->protoctx = &ssn;
+
+    StreamTcpInitConfig(TRUE);
+
+    uint32_t u;
+    for (u = 0; u < httplen1; u++) {
+        uint8_t flags = 0;
+
+        if (u == 0)
+            flags = STREAM_TOSERVER|STREAM_START;
+        else if (u == (httplen1 - 1))
+            flags = STREAM_TOSERVER|STREAM_EOF;
+        else
+            flags = STREAM_TOSERVER;
+
+        r = AppLayerParse(NULL, f, ALPROTO_HTTP, flags, &httpbuf1[u], 1);
+        if (r != 0) {
+            printf("toserver chunk %" PRIu32 " returned %" PRId32 ", expected"
+                    " 0: ", u, r);
+            goto end;
+        }
+    }
+
+    htp_state = f->alstate;
+    if (htp_state == NULL) {
+        printf("no http state: ");
+        goto end;
+    }
+
+    htp_tx_t *tx = list_get(htp_state->connp->conn->transactions, 0);
+    if (tx != NULL && tx->request_uri_normalized != NULL) {
+        if (5 != bstr_size(tx->request_uri_normalized)) {
+            printf("normalized uri len should be 5, is %"PRIuMAX,
+                (uintmax_t)bstr_size(tx->request_uri_normalized));
+            goto end;
+        }
+
+        if (bstr_ptr(tx->request_uri_normalized)[0] != '/' ||
+            bstr_ptr(tx->request_uri_normalized)[1] != '?' ||
+            bstr_ptr(tx->request_uri_normalized)[2] != 'a' ||
+            bstr_ptr(tx->request_uri_normalized)[3] != '=' ||
+            bstr_ptr(tx->request_uri_normalized)[4] != '\0')
+        {
+            printf("normalized uri \"");
+            PrintRawUriFp(stdout, (uint8_t *)bstr_ptr(tx->request_uri_normalized), bstr_size(tx->request_uri_normalized));
+            printf("\": ");
+            goto end;
+        }
+    }
+
+    result = 1;
+end:
+    StreamTcpFreeConfig(TRUE);
+    if (htp_state != NULL)
+        HTPStateFree(htp_state);
+    UTHFreeFlow(f);
+    return result;
+}
+
 /** \test Test basic config */
 int HTPParserConfigTest01(void)
 {
@@ -3647,6 +3816,8 @@ void HTPParserRegisterTests(void) {
     UtRegisterTest("HTPParserTest08", HTPParserTest08, 1);
     UtRegisterTest("HTPParserTest09", HTPParserTest09, 1);
     UtRegisterTest("HTPParserTest10", HTPParserTest10, 1);
+    UtRegisterTest("HTPParserTest11", HTPParserTest11, 1);
+    UtRegisterTest("HTPParserTest12", HTPParserTest12, 1);
     UtRegisterTest("HTPParserConfigTest01", HTPParserConfigTest01, 1);
     UtRegisterTest("HTPParserConfigTest02", HTPParserConfigTest02, 1);
     UtRegisterTest("HTPParserConfigTest03", HTPParserConfigTest03, 1);