From f45bdba08c92f7d20cf07a326114560694aa868a Mon Sep 17 00:00:00 2001 From: "advisory-database[bot]" <45398580+advisory-database[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 16:19:48 +0000 Subject: [PATCH] Publish GHSA-cm46-gqf4-mv4f --- .../2024/11/GHSA-cm46-gqf4-mv4f/GHSA-cm46-gqf4-mv4f.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/advisories/github-reviewed/2024/11/GHSA-cm46-gqf4-mv4f/GHSA-cm46-gqf4-mv4f.json b/advisories/github-reviewed/2024/11/GHSA-cm46-gqf4-mv4f/GHSA-cm46-gqf4-mv4f.json index 07eaa2fa862..6a965bcd0c8 100644 --- a/advisories/github-reviewed/2024/11/GHSA-cm46-gqf4-mv4f/GHSA-cm46-gqf4-mv4f.json +++ b/advisories/github-reviewed/2024/11/GHSA-cm46-gqf4-mv4f/GHSA-cm46-gqf4-mv4f.json @@ -1,13 +1,13 @@ { "schema_version": "1.4.0", "id": "GHSA-cm46-gqf4-mv4f", - "modified": "2024-11-12T19:56:54Z", + "modified": "2024-12-09T16:18:17Z", "published": "2024-11-12T19:56:54Z", "aliases": [ "CVE-2024-51992" ], "summary": "Orchid Platform has Method Exposure Vulnerability in Modals", - "details": "### Impact\nThis vulnerability is a method exposure issue (CWE-749: Exposed Dangerous Method or Function) in the Orchid Platform’s asynchronous modal functionality, affecting users of Orchid Platform version 8 through 14.42.x. Attackers could exploit this vulnerability to call arbitrary methods within the `Screen` class, leading to potential brute force of database tables, validation checks against user credentials, and disclosure of the server’s real IP address.\n\n### Patches\nThe issue has been patched in the latest release, version 14.43.0, released on November 6, 2024. Users should upgrade to version 14.43.0 or later to address this vulnerability.\n\n### Workarounds\nIf upgrading to version 14.43.0 is not immediately possible, you can mitigate the vulnerability by implementing middleware to intercept and validate requests to asynchronous modal endpoints, allowing only approved methods and parameters.\n\n### References\n- [CWE-749: Exposed Dangerous Method or Function](https://cwe.mitre.org/data/definitions/749.html)\n\n### Acknowledgements\n\nWe would like to extend our sincere gratitude to **Positive Technologies** and researcher **Vladislav Gladky** for identifying the vulnerability and their significant contribution to enhancing the security of our platform. Their expertise and dedication play a crucial role in making **Orchid** more reliable and secure for all users.\n", + "details": "### Impact\nThis vulnerability is a method exposure issue (CWE-749: Exposed Dangerous Method or Function) in the Orchid Platform’s asynchronous modal functionality, affecting users of Orchid Platform version 8 through 14.42.x. Attackers could exploit this vulnerability to call arbitrary methods within the `Screen` class, leading to potential brute force of database tables, validation checks against user credentials, and disclosure of the server’s real IP address.\n\n### Patches\nThe issue has been patched in the latest release, version 14.43.0, released on November 6, 2024. Users should upgrade to version 14.43.0 or later to address this vulnerability.\n\n### Workarounds\nIf upgrading to version 14.43.0 is not immediately possible, you can mitigate the vulnerability by implementing middleware to intercept and validate requests to asynchronous modal endpoints, allowing only approved methods and parameters.\n\n\nExample middleware:\n\n```php\nnamespace App\\Http\\Middleware;\n\nuse Closure;\nuse Illuminate\\Http\\Request;\nuse Symfony\\Component\\HttpFoundation\\Response;\n\nclass PreventBruteForceOnAsyncRoute\n{\n /**\n * Handle an incoming request.\n *\n * @param \\Closure(\\Illuminate\\Http\\Request): (\\Symfony\\Component\\HttpFoundation\\Response) $next\n */\n public function handle(Request $request, Closure $next): Response\n {\n // Retrieve the current route from the request.\n /** @var \\Illuminate\\Routing\\Route|null $route */\n $route = $request->route();\n\n // Allow requests to routes other than \"platform.async\".\n if ($route?->getName() !== 'platform.async') {\n return $next($request);\n }\n\n // Block requests attempting to invoke the \"validate\" method.\n if ($route->parameter('method') === 'validate') {\n abort(503, 'Access to the \"validate\" method is restricted.');\n }\n\n // Continue request processing for other cases.\n return $next($request);\n }\n}\n\n```\n\n### References\n- [CWE-749: Exposed Dangerous Method or Function](https://cwe.mitre.org/data/definitions/749.html)\n\n### Acknowledgements\n\nWe would like to extend our sincere gratitude to **Positive Technologies** and researcher **Vladislav Gladky** for identifying the vulnerability and their significant contribution to enhancing the security of our platform. Their expertise and dedication play a crucial role in making **Orchid** more reliable and secure for all users.\n", "severity": [ { "type": "CVSS_V3",