{"id":30985,"date":"2025-12-13T11:39:10","date_gmt":"2025-12-13T11:39:10","guid":{"rendered":"http:\/\/localhost\/?p=30985"},"modified":"2025-12-13T11:39:10","modified_gmt":"2025-12-13T11:39:10","slug":"curl-denial-of-service-dos-vulnerability-in-dedotdotify-url-path-normalization","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=30985","title":{"rendered":"curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-13T16:45:40&#8243;,&#8221;description&#8221;:&#8221;## Summary\\n\\nA Denial of Service (DoS) vulnerability exists in the `dedotdotify()` function in `lib\/urlapi.c` that can cause excessive CPU consumption due to O(n\u00b2) time complexity when processing URLs with malicious path patterns containing many `..\/` sequences.\\n\\n## Affected Component\\n\\n- **Component**: libcurl URL API\\n- **File**: `lib\/urlapi.c`\\n- **Function**: `dedotdotify()` (lines 794-898)\\n- **Vulnerable Code**: Lines 857-866\\n\\n## Vulnerability Details\\n\\nThe `dedotdotify()` function normalizes URL paths by removing `..\/` and `.\/` sequences according to RFC 3986 Section 5.2.4. However, the implementation has a quadratic time complexity (O(n\u00b2)) vulnerability.\\n\\n### Root Cause\\n\\nWhen processing a `\/..\/` sequence, the code uses `memrchr()` to find the last `\/` in the output buffer to remove the preceding segment:\\n\\n&#8220;`c\\nelse if(is_dot(\\u0026p, \\u0026blen) \\u0026\\u0026 (ISSLASH(*p) || !blen)) {\\n  \/* remove the last segment from the output buffer *\/\\n  size_t len = curlx_dyn_len(\\u0026out);\\n  if(len) {\\n    char *ptr = curlx_dyn_ptr(\\u0026out);\\n    char *last = memrchr(ptr, &#8216;\/&#8217;, len);  \/\/ O(n) operation\\n    if(last)\\n      curlx_dyn_setlen(\\u0026out, last &#8211; ptr);\\n  }\\n&#8220;`\\n\\nEach `memrchr()` call scans the entire current output buffer length, which is O(n). When processing a path like `\/a1\/a2\/&#8230;\/an\/..\/..`, the function:\\n1. First adds all n segments to the output buffer (buffer size grows to ~n segments)\\n2. For each `\/..\/`, calls `memrchr()` which scans the entire remaining buffer\\n3. Total operations: O(n + (n-1) + (n-2) + &#8230; + 1) = O(n\u00b2)\\n\\n### Attack Vector\\n\\nThis vulnerability is triggered in all normal URL parsing operations:\\n\\n1. **Command-line curl**: When processing user-provided URLs\\n   &#8211; Code path: `src\/tool_operate.c` \u2192 `parseurlandfillconn()` \u2192 `curl_url_set()`\\n\\n2. **libcurl API**: When `CURLOPT_URL` is set\\n   &#8211; Code path: `lib\/url.c:1771` \u2192 `curl_url_set()` \u2192 `parseurl()` \u2192 `dedotdotify()`\\n\\n3. **Default behavior**: Triggered when `CURLU_PATH_AS_IS` flag is not set (default)\\n   &#8211; Check: `lib\/urlapi.c:1230-1233`\\n\\n### Input Size Limit\\n\\n- Maximum input length: `CURL_MAX_INPUT_LENGTH` = 8MB (8,000,000 bytes)\\n- An attacker can create paths up to this limit to maximize CPU consumption\\n\\n## Impact\\n\\n### Severity Assessment\\n\\n**CVSS v3.1 Vector**: `AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:N\/I:N\/A:H`\\n\\n- **Attack Vector**: Network (malicious URL can be provided via HTTP request, redirect, etc.)\\n- **Attack Complexity**: Low (simple URL manipulation)\\n- **Privileges Required**: None\\n- **User Interaction**: None\\n- **Scope**: Unchanged\\n- **Confidentiality**: None\\n- **Integrity**: None\\n- **Availability**: High (CPU exhaustion leading to DoS)\\n\\n### Affected Scenarios\\n\\n1. **Web servers\/proxies** that process user-provided URLs using curl\/libcurl\\n2. **API clients** that accept external URLs\\n3. **Mobile applications** processing URLs from user input or network responses\\n4. **Any application** using curl\/libcurl to parse URLs from untrusted sources\\n\\n### Potential Consequences\\n\\n- **CPU exhaustion**: High CPU usage for extended periods\\n- **Service degradation**: Delayed response to legitimate requests\\n- **Resource starvation**: May prevent other requests from being processed\\n- **Amplification**: A single malicious URL can consume significant CPU resources\\n\\n## Proof of Concept\\n\\n### Malicious URL Pattern\\n\\n&#8220;`\\nhttp:\/\/example.com\/a1\/a2\/a3\/&#8230;\/an\/..\/..\/\\n&#8220;`\\n\\nThis pattern first adds n path segments, then processes n `..\/` sequences, causing maximum CPU consumption.\\n\\n### PoC Code\\n\\nA complete proof-of-concept is provided in `dos_PoC.c`:\\n\\n&#8220;`c\\n\/\/ Compile: gcc -o dos_PoC dos_PoC.c -lcurl\\n\/\/ Run: .\/dos_PoC\\n&#8220;`\\n\\n### Performance Measurements\\n\\nTesting results on macOS with optimized build:\\n\\n| Segments | Path Length | Processing Time | Time Ratio |\\n|&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;|\\n| 100      | 690 bytes   | 0.000012s       | 1.0x       |\\n| 1,000    | 7,890 bytes | 0.000028s       | 2.3x       |\\n| 10,000   | 88,890 bytes| 0.000271s       | 22.6x      |\\n| 50,000   | 488,890 bytes| 0.001383s      | 115.3x     |\\n\\n**Analysis**:\\n- When input size increases 10x (1,000 \u2192 10,000 segments), processing time increases ~9.7x\\n- This demonstrates quadratic time complexity (approaching O(n\u00b2))\\n- With maximum allowed input (8MB), the impact would be significantly greater\\n\\n### Steps to Reproduce\\n\\n1. Compile the PoC:\\n   &#8220;`bash\\n   gcc -O2 -o dos_PoC dos_PoC.c -lcurl\\n   &#8220;`\\n\\n2. Run the PoC:\\n   &#8220;`bash\\n   .\/dos_PoC\\n   &#8220;`\\n\\n3. Observe the processing time increases quadratically with input size.\\n\\n4. Test with actual curl command:\\n   &#8220;`bash\\n   # Create malicious URL\\n   MALICIOUS_URL=\\&#8221;http:\/\/example.com$(python3 -c \\&#8221;print(&#8216;\/a&#8217; + &#8216;\/a&#8217;.join(map(str, range(10000))) + &#8216;\/..\/&#8217; * 10000)\\&#8221;)\\&#8221;\\n   \\n   # Measure time\\n   time curl \\&#8221;$MALICIOUS_URL\\&#8221;\\n   &#8220;`\\n\\n## Affected Versions\\n\\nThis vulnerability affects **all versions of curl\/libcurl** that include the `dedotdotify()` function. The function was introduced as part of the URL API implementation.\\n\\nThe vulnerability exists in the current codebase at:\\n- File: `lib\/urlapi.c`\\n- Function: `dedotdotify()` (line 794)\\n\\n## Recommended Mitigation\\n\\n### Short-term Workaround\\n\\nApplications can use the `CURLU_PATH_AS_IS` flag to skip path normalization:\\n- For `curl_url_set()`: Pass `CURLU_PATH_AS_IS` in flags\\n- For `CURLOPT_URL`: Use `CURLOPT_PATH_AS_IS` option\\n\\n**Note**: This workaround may have security implications if path normalization is required for security purposes.\\n\\n### Long-term Fix\\n\\nThe `dedotdotify()` function should be rewritten to achieve O(n) time complexity:\\n\\n1. **Track last slash position**: Instead of using `memrchr()` to search for the last `\/` each time, maintain a pointer or index to the last segment boundary.\\n\\n2. **Single-pass algorithm**: Process the path in a single pass, maintaining a stack or pointer array of segment boundaries.\\n\\n3. **Example approach**:\\n   &#8211; Use a linked list or array to track segment boundaries\\n   &#8211; When encountering `..\/`, pop from the segment stack instead of searching\\n   &#8211; This reduces complexity from O(n\u00b2) to O(n)\\n\\n### Input Validation\\n\\nConsider adding path length limits specifically for `dedotdotify()` processing, independent of the overall `CURL_MAX_INPUT_LENGTH` limit.\\n\\n## Additional Information\\n\\n### Related Code References\\n\\n- Vulnerability location: `lib\/urlapi.c:857-866`\\n- Function definition: `lib\/urlapi.c:794-898`\\n- Call site: `lib\/urlapi.c:1230-1233`\\n- URL parsing entry point: `lib\/urlapi.c:901 (parseurl())`\\n\\n### Testing Environment\\n\\n- OS: macOS (darwin 25.1.0)\\n- Compiler: gcc with -O2 optimization\\n- curl: Latest source code from repository\\n\\n### Disclosure\\n\\nThis vulnerability was discovered through source code analysis and verified with proof-of-concept code. No actual exploitation attempts were made against production systems.\\n\\n## References\\n\\n- RFC 3986 Section 5.2.4: \\&#8221;Remove Dot Segments\\&#8221;\\n- curl Security Policy: https:\/\/curl.se\/docs\/security.html\\n- curl Vulnerability Disclosure Policy: https:\/\/curl.se\/dev\/vuln.html\\n\\n&#8212;\\n\\n## Reporter\\n- Jiyong Yang \/ BAEKSEOK University\\n\\n## Impact\\n\\nAn attacker can cause denial of service and excessive CPU consumption by providing a malicious URL with a path containing many `..\/` sequences. The dedotdotify() function processes such paths with O(n\u00b2) time complexity, consuming disproportionate CPU resources and potentially rendering the service unresponsive or significantly degraded. This affects any application using curl\/libcurl to parse untrusted URLs, including web servers, proxies, API clients, and mobile applications.&#8221;,&#8221;published&#8221;:&#8221;2025-12-13T07:58:59&#8243;,&#8221;modified&#8221;:&#8221;2025-12-13T16:21:36&#8243;,&#8221;type&#8221;:&#8221;hackerone&#8221;,&#8221;title&#8221;:&#8221;curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;H1:3463608&#8243;,&#8221;bulletinFamily&#8221;:&#8221;bugbounty&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;&#8221;,&#8221;sourceHref&#8221;:&#8221;&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/hackerone.com\/reports\/3463608&#8243;,&#8221;category_name&#8221;:&#8221;News&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-13T16:45:40&#8243;,&#8221;description&#8221;:&#8221;## Summary\\n\\nA Denial of Service (DoS) vulnerability exists in the `dedotdotify()` function in `lib\/urlapi.c` that can cause excessive CPU consumption due to O(n\u00b2) time complexity&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[6,8,12,117,13,33,7,11,5],"class_list":["post-30985","post","type-post","status-publish","format-standard","hentry","category-category_news","tag-cve","tag-cvss","tag-exploit","tag-hackerone","tag-news","tag-none","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=30985\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-13T16:45:40&#8243;,&#8221;description&#8221;:&#8221;## SummarynnA Denial of Service (DoS) vulnerability exists in the `dedotdotify()` function in `lib\/urlapi.c` that can cause excessive CPU consumption due to O(n\u00b2) time complexity...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=30985\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-13T11:39:10+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=30985#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=30985\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608\",\"datePublished\":\"2025-12-13T11:39:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=30985\"},\"wordCount\":1292,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"hackerone\",\"news\",\"NONE\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_news\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=30985#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=30985\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=30985\",\"name\":\"curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-13T11:39:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=30985#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=30985\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=30985#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=30985","og_locale":"en_US","og_type":"article","og_title":"curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-13T16:45:40&#8243;,&#8221;description&#8221;:&#8221;## SummarynnA Denial of Service (DoS) vulnerability exists in the `dedotdotify()` function in `lib\/urlapi.c` that can cause excessive CPU consumption due to O(n\u00b2) time complexity...","og_url":"https:\/\/zero.redgem.net\/?p=30985","og_site_name":"zero redgem","article_published_time":"2025-12-13T11:39:10+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=30985#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=30985"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608","datePublished":"2025-12-13T11:39:10+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=30985"},"wordCount":1292,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","hackerone","news","NONE","Security","tapic","Vulnerability"],"articleSection":["category_news"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=30985#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=30985","url":"https:\/\/zero.redgem.net\/?p=30985","name":"curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-13T11:39:10+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=30985#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=30985"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=30985#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"curl: Denial of Service (DoS) vulnerability in dedotdotify() URL path normalization_H1:3463608"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/30985","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=30985"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/30985\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=30985"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=30985"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=30985"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}