{"id":52564,"date":"2026-05-08T13:40:32","date_gmt":"2026-05-08T13:40:32","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=52564"},"modified":"2026-05-08T13:40:32","modified_gmt":"2026-05-08T13:40:32","slug":"dash-uploader-070a2-path-traversal","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=52564","title":{"rendered":"\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-08T18:01:00&#8243;,&#8221;description&#8221;:&#8221;There is an unauthenticated path traversal in dash-uploader versions 0.1.0 through 0.7.0a2 allowing arbitrary file write, leading to but not limited to remote code execution, application source code overwrite, stored cross site scripting, and&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-08T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-08T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220639&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-38360&#8243;,&#8221;CVE-2026-38361&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2026-38360: Path Traversal in dash-uploader\\n    \\n    [![CVE](https:\/\/img.shields.io\/badge\/CVE-2026&#8211;38360-red?style=for-the-badge)](https:\/\/www.cve.org\/CVERecord?id=CVE-2026-38360)\\n    [![CWE](https:\/\/img.shields.io\/badge\/CWE-22-orange?style=for-the-badge)](https:\/\/cwe.mitre.org\/data\/definitions\/22.html)\\n    [![Severity](https:\/\/img.shields.io\/badge\/Severity-Critical-red?style=for-the-badge)](#)\\n    [![Patch](https:\/\/img.shields.io\/badge\/Patch-None-black?style=for-the-badge)](#mitigation)\\n    [![Auth](https:\/\/img.shields.io\/badge\/Auth-None_required-red?style=for-the-badge)](#attack-vectors)\\n    [![Version](https:\/\/img.shields.io\/badge\/dash&#8211;uploader-0.6.1-blue?style=for-the-badge)](https:\/\/pypi.org\/project\/dash-uploader\/)\\n    [![PyPI Downloads](https:\/\/img.shields.io\/badge\/PyPI%20downloads-28K%2Fmonth-blue?style=for-the-badge)](https:\/\/pepy.tech\/project\/dash-uploader)\\n    [![Total Downloads](https:\/\/img.shields.io\/badge\/Total%20downloads-733.08K-blue?style=for-the-badge)](https:\/\/pepy.tech\/project\/dash-uploader)\\n    [![License](https:\/\/img.shields.io\/pypi\/l\/dash-uploader?style=for-the-badge)](https:\/\/pypi.org\/project\/dash-uploader\/)\\n    \\n    Unauthenticated path traversal in [`fohrloop\/dash-uploader`](https:\/\/github.com\/fohrloop\/dash-uploader) (Python, PyPI) allowing arbitrary file write, leading to (but not limited to) **Remote Code Execution (RCE)**, application source code overwrite, stored XSS, and persistent backdoor installation.\\n    \\n    ### \u26a0\ufe0f No patch is available, and none will ever be released\\n    \\n    The repository was [archived on 2025-07-19](https:\/\/github.com\/fohrloop\/dash-uploader\/issues\/153) with no active maintainer. Every published version (`0.1.0` through `0.7.0a2`) is affected and will remain so. The package still pulls roughly 28,000 monthly downloads.\\n    \\n    Anyone running `dash-uploader` in production must apply a mitigation themselves. The recommended fix is to migrate to Plotly Dash&#8217;s built-in `dcc.Upload` component. See [Mitigation](#mitigation) for full options.\\n    \\n    | | |\\n    |&#8212;|&#8212;|\\n    | **CVE ID** | CVE-2026-38360 |\\n    | **Vulnerability** | Path Traversal (CWE-22) |\\n    | **CVSS 3.1** | 9.8 \/ Critical (`AV:N\/AC:L\/PR:N\/UI:N\/S:U\/C:H\/I:H\/A:H`) |\\n    | **Product** | dash-uploader |\\n    | **Affected versions** | `0.1.0` through `0.7.0a2` (all 18 releases) |\\n    | **Fixed version** | none (project archived 2025-07-19) |\\n    | **Attack vector** | Remote, unauthenticated |\\n    | **Discoverer** | Muhammad Fitri Bin Mohd Sultan |\\n    | **Assigned by** | MITRE, 2026-05-07 |\\n    | **Related** | [CVE-2026-38361](https:\/\/github.com\/a1ohadance\/CVE-2026-38361) (DoS in same library) |\\n    \\n    ## Description\\n    \\n    Three user-controlled parameters from `request.form.get()` in `dash_uploader\/httprequesthandler.py` are passed directly to `os.path.join()` and `os.makedirs()` without any sanitization or validation:\\n    \\n    1. **`upload_id`** (line 57 \u2192 line 161, `BaseHttpRequestHandler.get_temp_root`): controls the destination directory. An attacker can send `upload_id=..\/..\/..\/..\/usr\/local\/lib\/python3.10\/site-packages` and files are written to Python&#8217;s package directory.\\n    \\n    2. **`resumableFilename`** (line 51 \u2192 line 108, `BaseHttpRequestHandler._post`): controls the final filename. An attacker can traverse out of the upload directory via the filename even with a legitimate `upload_id`.\\n    \\n    3. **`resumableIdentifier`** (line 54 \u2192 line 64, `BaseHttpRequestHandler._post`): used with `os.makedirs()` to create the temp directory. An attacker can create arbitrary directories anywhere on the filesystem.\\n    \\n    The upload endpoint (`\/API\/dash-uploader` by default) requires no authentication. The `http_request_handler` hook added in `v0.5.0` allows pre-request checks via `post_before()`, but the vulnerable `_post()` method reads all parameters directly from `request.form` after the hook returns. The hook cannot sanitize parameters before the library processes them. A developer who adds authentication via the hook is still vulnerable to path traversal from an authenticated user.\\n    \\n    ## Vulnerable code\\n    \\n    &#8220;`python\\n    # dash_uploader\/httprequesthandler.py\\n    def _post(self):\\n        resumableFilename = request.form.get(\\&#8221;resumableFilename\\&#8221;, default=\\&#8221;error\\&#8221;, type=str)\\n        resumableIdentifier = request.form.get(\\&#8221;resumableIdentifier\\&#8221;, default=\\&#8221;error\\&#8221;, type=str)\\n        upload_id = request.form.get(\\&#8221;upload_id\\&#8221;, default=\\&#8221;\\&#8221;, type=str)\\n        &#8230;\\n        temp_root = self.get_temp_root(upload_id)                          # upload_id flows in here\\n        temp_dir = os.path.join(temp_root, resumableIdentifier)            # raw user input -\\u003e os.path.join\\n        if not os.path.isdir(temp_dir):\\n            os.makedirs(temp_dir)                                          # raw user input -\\u003e os.makedirs\\n    \\n    def get_temp_root(self, upload_id):\\n        return os.path.join(self.upload_folder, upload_id)                 # no sanitization: ..\/..\/ escapes upload_folder\\n    &#8220;`\\n    \\n    Three independent traversal sinks share the same root cause: form values reach `os.path.join` and `os.makedirs` with no validation.\\n    \\n    ## Attack vectors\\n    \\n    An unauthenticated remote attacker sends an HTTP POST multipart request to the upload endpoint. By injecting path traversal sequences (`..\/`) into the `upload_id` form parameter, the attacker controls the destination directory for the uploaded file. For example, `upload_id=..\/..\/..\/..\/usr\/local\/lib\/python3.10\/site-packages` writes files to Python&#8217;s package directory, enabling RCE on the next interpreter startup via `.pth` auto-execution.\\n    \\n    No authentication, session token, or CSRF token is required. Two additional parameters (`resumableFilename` and `resumableIdentifier`) provide independent traversal vectors through the same endpoint. The default library configuration as shown in the official quickstart documentation is exploitable with a single `curl` command.\\n    \\n    ## Impact\\n    \\n    Arbitrary file write to any directory writable by the server process. This translates to **Remote Code Execution (RCE)** through several well-known primitives:\\n    \\n    **RCE primitives**\\n    \\n    &#8211; Python `.pth` file dropped into `site-packages`. Executes attacker-supplied code on the next interpreter startup.\\n    &#8211; `sitecustomize.py` or `usercustomize.py` injection. Executes on every Python startup.\\n    &#8211; Overwriting an importable Python module in the application&#8217;s package directory. Executes on next import or worker recycle.\\n    &#8211; Overwriting the WSGI\/ASGI entry point (e.g. `app.wsgi`, `wsgi.py`). Executes on next worker reload.\\n    &#8211; Cron drop-in (`\/etc\/cron.d\/`, `\/etc\/cron.hourly\/`, user crontab spool) when the process has the necessary privileges. Scheduled execution.\\n    &#8211; Systemd unit or user-unit drop-in (`\/etc\/systemd\/system\/`, `~\/.config\/systemd\/user\/`). Executes on next service start or reboot.\\n    &#8211; `\/etc\/ld.so.preload` injection when the process runs as root. Preloads attacker code into every subsequent binary execution.\\n    &#8211; Shell startup file overwrite (`~\/.bashrc`, `~\/.profile`, `~\/.bash_profile`). Executes on next interactive login of the app user.\\n    &#8211; `~\/.ssh\/authorized_keys` append. Grants persistent SSH access to the host as the app user.\\n    \\n    **Web-tier impact**\\n    \\n    &#8211; Stored cross-site scripting on the host domain by overwriting served JavaScript (for example, Dash framework JS in `site-packages`), affecting every user on every page load until the application is restarted\\n    &#8211; Application source code overwrite (a silent, persistent backdoor that survives normal deploys when the deploy mechanism does not fully overwrite the affected paths)\\n    \\n    **Filesystem impact**\\n    \\n    &#8211; Arbitrary directory creation anywhere the process can reach, via `os.makedirs()` with the unsanitized `resumableIdentifier` parameter (usable for inode exhaustion or for staging writes into nonexistent directory trees)\\n    &#8211; Cross-user file replacement in shared upload directories, leading to data poisoning between tenants of the same application\\n    \\n    ## Affected component\\n    \\n    &#8211; `dash_uploader\/httprequesthandler.py`\\n    &#8211; `BaseHttpRequestHandler.get_temp_root()`\\n    &#8211; `BaseHttpRequestHandler._post()`\\n    \\n    ## Mitigation\\n    \\n    ### \u26a0\ufe0f No patch is available, and the project is archived\\n    \\n    Options for currently-deployed users, in order of preference:\\n    \\n    1. **Migrate to `dcc.Upload`**, the official upload component shipped with Plotly Dash. Files arrive at the callback as a base64 string; no filesystem-writing handler is exposed and no client-controlled destination path exists, so the bug class here does not apply. Best suited to small and medium files. For very large uploads, see item 2.\\n    2. **Roll a small Flask upload handler** using `werkzeug.utils.secure_filename()` and a hardcoded server-side destination directory. Never accept client-supplied `upload_id`, filename, or identifier values as path components.\\n    3. **If continuing to use dash-uploader**, place the upload endpoint behind authentication AND validate `upload_id`, `resumableFilename`, and `resumableIdentifier` against a strict allowlist (e.g., UUIDs only) at a layer that rewrites or rejects the request before the library handler sees it. The library&#8217;s `http_request_handler` hook does NOT prevent the traversal because parameters are read from `request.form` after the hook returns; sanitization must happen above the library.\\n    4. **At the reverse-proxy or WAF layer**, reject any request to the upload endpoint where any form field contains `..`, encoded variants (`%2e%2e`, `..%2f`, `%2e%2e%2f`), or absolute paths.\\n    \\n    ## Disclosure timeline\\n    \\n    | Date | Event |\\n    |&#8212;|&#8212;|\\n    | 2026-03-17 | Vulnerability discovered during security research on a production deployment. |\\n    | 2026-03-19 | CVE request submitted to MITRE. |\\n    | 2026-05-07 | CVE-2026-38360 assigned by MITRE. |\\n    | 2026-05-07 | Public advisory published. |\\n    \\n    ## Package context\\n    \\n    &#8211; Approximately 28,000 monthly downloads on PyPI (27,756 in the 30 days preceding 2026-05-07, with sustained daily volume despite repository archival). Source: [pypistats.org](https:\/\/pypistats.org\/packages\/dash-uploader).\\n    &#8211; Latest published version: `0.6.1` (stable line). Pre-releases extend to `0.7.0a2`.\\n    &#8211; Required dependency: `dash`. Optional dependency: `pyyaml`. License: MIT.\\n    &#8211; 11 dependent packages, 6 dependent repositories.\\n    &#8211; 153 GitHub stars.\\n    &#8211; Repository archived 2025-07-19 ([Issue #153](https:\/\/github.com\/fohrloop\/dash-uploader\/issues\/153)).\\n    &#8211; No prior CVEs (verified against NVD, GitHub Advisory Database, Snyk, OSV on 2026-03-19).\\n    \\n    ## References\\n    \\n    &#8211; https:\/\/github.com\/fohrloop\/dash-uploader\\n    &#8211; https:\/\/pypi.org\/project\/dash-uploader\/\\n    &#8211; https:\/\/pypistats.org\/packages\/dash-uploader\\n    &#8211; https:\/\/github.com\/fohrloop\/dash-uploader\/blob\/stable\/dash_uploader\/httprequesthandler.py\\n    &#8211; https:\/\/github.com\/fohrloop\/dash-uploader\/blob\/dev\/dash_uploader\/httprequesthandler.py\\n    &#8211; https:\/\/github.com\/fohrloop\/dash-uploader\/issues\/153\\n    &#8211; https:\/\/cwe.mitre.org\/data\/definitions\/22.html\\n    \\n    ## Discoverer\\n    \\n    Muhammad Fitri Bin Mohd Sultan&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/220639&#8243;,&#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:\/\/packetstorm.news\/files\/id\/220639\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#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;2026-05-08T18:01:00&#8243;,&#8221;description&#8221;:&#8221;There is an unauthenticated path traversal in dash-uploader versions 0.1.0 through 0.7.0a2 allowing arbitrary file write, leading to but not limited to remote code execution,&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,12,13,33,53,7,11,5],"class_list":["post-52564","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","tag-packetstorm","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>\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639 - 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=52564\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-08T18:01:00&#8243;,&#8221;description&#8221;:&#8221;There is an unauthenticated path traversal in dash-uploader versions 0.1.0 through 0.7.0a2 allowing arbitrary file write, leading to but not limited to remote code execution,...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=52564\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-08T13:40:32+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=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52564#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52564\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639\",\"datePublished\":\"2026-05-08T13:40:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52564\"},\"wordCount\":1702,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=52564#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52564\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52564\",\"name\":\"\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-08T13:40:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52564#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=52564\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=52564#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639\"}]},{\"@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":"\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639 - 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=52564","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-08T18:01:00&#8243;,&#8221;description&#8221;:&#8221;There is an unauthenticated path traversal in dash-uploader versions 0.1.0 through 0.7.0a2 allowing arbitrary file write, leading to but not limited to remote code execution,...","og_url":"https:\/\/zero.redgem.net\/?p=52564","og_site_name":"zero redgem","article_published_time":"2026-05-08T13:40:32+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=52564#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=52564"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639","datePublished":"2026-05-08T13:40:32+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=52564"},"wordCount":1702,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=52564#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=52564","url":"https:\/\/zero.redgem.net\/?p=52564","name":"\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-08T13:40:32+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=52564#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=52564"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=52564#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Dash-Uploader 0.7.0a2 Path Traversal_PACKETSTORM:220639"}]},{"@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\/52564","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=52564"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/52564\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=52564"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=52564"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=52564"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}