Fancymalware

#1844of 53,611
124.8Total CVSS
Vulnerabilities · 17
Low
1
Medium
8
High
4
Critical
4
PT-2026-42038
5.4
2026-05-19
Npm · @Nuxt/Nitro-Server · CVE-2026-46342
**Name of the Vulnerable Software and Affected Versions** Nuxt versions 3.1.0 through 3.21.5 Nuxt versions 4.0.0-alpha.1 through 4.4.5 @nuxt/nitro-server versions 3.20.0 through 3.21.5 @nuxt/nitro-server versions 4.0.0-alpha.1 through 4.4.5 **Description** The '/ nuxt island/*' endpoint accepts attacker-controlled `props` query or body parameters and renders island components without verifying that the URL-resident hash (`<Name> <hashId>.json`) was issued for those specific inputs by `<NuxtIsland>`. Because the hash is computed client-side and not validated on the server, the same path can return different responses based on the query. In environments where a CDN or reverse-proxy caches this endpoint by path only (ignoring the query), an attacker can prime the cache with their own props, causing subsequent users to receive the attacker's rendered HTML. If the application code passes a prop into an unsafe HTML sink (such as `v-html` or `innerHTML`), this can lead to stored Cross-Site Scripting (XSS) in the embedding page's origin until the cache entry expires. **Recommendations** Update Nuxt to version 3.21.6 or 4.4.6. Update @nuxt/nitro-server to version 3.21.6 or 4.4.6. Ensure any intermediary cache keys '/ nuxt island/*' on the full query string rather than the path alone. Audit application-authored islands to ensure props are not passed into `v-html`, `innerHTML`, or similar HTML sinks, treating island props as untrusted user input.
PT-2026-25823
8.3
2026-03-16
Unknown · Parse Server · CVE-2026-32728
**Name of the Vulnerable Software and Affected Versions** Parse Server versions prior to 9.6.0-alpha.15 Parse Server versions prior to 8.6.41 Parse Server versions prior to 9.6.0 Parse Server versions prior to 8.6.41 **Description** Parse Server, an open-source backend deployable on Node.js infrastructures, is affected by a file upload issue. An attacker with file upload privileges can bypass the file extension filter by appending a MIME parameter (e.g., `;charset=utf-8`) to the `Content-Type` header. This bypass allows the storage and serving of active content under the application's domain. Additionally, certain XML-based file extensions capable of rendering scripts in web browsers were not included in the default blocklist, potentially leading to stored cross-site scripting (XSS) attacks. Successful exploitation could compromise session tokens, user credentials, and other sensitive data accessible through the browser's local storage. The issue stems from improper validation of file extensions when a MIME parameter is present in the `Content-Type` header. The vulnerable component is the file upload functionality, specifically the extension validation process. **Recommendations** Versions prior to 9.6.0-alpha.15 should be updated. Versions prior to 8.6.41 should be updated. Versions prior to 9.6.0 should be updated. Versions prior to 8.6.41 should be updated. Configure the `fileUpload.fileExtensions` option to use an allowlist of only the file extensions that your application needs, rather than relying on the default blocklist.