{"id":46313,"date":"2026-04-13T11:50:36","date_gmt":"2026-04-13T11:50:36","guid":{"rendered":"http:\/\/localhost\/?p=46313"},"modified":"2026-04-13T11:50:36","modified_gmt":"2026-04-13T11:50:36","slug":"wbce-cms-privilege-escalation-insecure-direct-object-reference","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=46313","title":{"rendered":"\ud83d\udcc4 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference_PACKETSTORM:218769"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:46:30&#8243;,&#8221;description&#8221;:&#8221;WBCE CMS versions prior to 1.6.4 suffers from insecure direct object reference and privilege escalation vulnerabilities&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218769&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-65094&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-65094: WBCE CMS is Vulnerable to Privilege Escalation via Group ID Manipulation (IDOR)\\n    \\n    ## Overview\\n    \\n    | Field | Details |\\n    |&#8212;|&#8212;|\\n    | **CVE ID** | [CVE-2025-65094](https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-65094) |\\n    | **Severity** | HIGH |\\n    | **Advisory** | [View Advisory](https:\/\/github.com\/WBCE\/WBCE_CMS\/security\/advisories\/GHSA-hmmw-4ccm-fx44) |\\n    | **Discovered by** | [Lukasz Rybak](https:\/\/github.com\/lukasz-rybak) |\\n    \\n    ## Affected Products\\n    \\n    &#8211; **WBCE\/WBCE_CMS**\\n    \\n    \\n    \\n    ## Details\\n    \\n    ### Summary\\n    A low-privileged user in WBCE CMS can escalate their privileges to the **Administrators** group by manipulating the `groups[]` parameter in the `\/admin\/users\/save.php` request.\\n    \\n    The UI restricts users to assigning only their existing group, but **server-side validation is missing**, allowing attackers to overwrite their group membership and obtain full administrative access.\\n    \\n    This results in a **complete compromise of the CMS**.\\n    \\n    &#8212;\\n    \\n    ## Upstream Fix Confirmation\\n    \\n    The project maintainers have remediated the issue in the following commit:\\n    \\n    &#8211; **Commit:** `9604617`  \\n    &#8211; **Title:** *\\&#8221;changes in user management\\&#8221;*  \\n    &#8211; **Link:** https:\/\/github.com\/WBCE\/WBCE_CMS\/commit\/96046178f4c80cf16f7c224054dec7fdadddda7e\\n    \\n    **Relevant commit message:**\\n    \\n    \\u003e allow administrators only to assign users to any group; usual users may assign themselves and other users only to groups where they already belong to.\\n    \\n    This directly addresses the improper access control in group assignment.\\n    \\n    &#8212;\\n    \\n    ### Details\\n    \\n    WBCE CMS uses **group permissions** to restrict access to administrative features.  \\n    A restricted group (`Users`) was created with the following permissions:\\n    \\n    | Permission Category | Setting            |\\n    |&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|\\n    | Pages              | View               |\\n    | Media              | View               |\\n    | Add-ons            | View               |\\n    | Settings           | View               |\\n    | **Access \u2192 Users** | **View + Modify**  |\\n    | **Access \u2192 Groups**| **View**           |\\n    | Admin-Tools        | *(none)*           |\\n    \\n    \\u003cimg width=\\&#8221;1243\\&#8221; height=\\&#8221;1266\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/aaa4bb9e-becd-47bd-9c87-a0887e54924f\\&#8221; \/\\u003e\\n    \\n    This setup ensures that low-privileged users:\\n    \\n    &#8211; cannot create or edit other users (besides modifying their own profile),\\n    &#8211; cannot manage groups,\\n    &#8211; cannot install or modify modules,\\n    &#8211; cannot access admin tools,\\n    &#8211; cannot perform administrative actions.\\n    \\n    Their only elevated permission is:\\n    \\n    \\u003e **Users \u2192 Modify**, intended solely for editing their own account.\\n    \\n    &#8212;\\n    \\n    ### Vulnerable Behavior\\n    \\n    When modifying their own profile via:\\n    \\n    **Access \u2192 Users \u2192 Modify User**\\n    \\n    the backend fails to validate whether the submitted `groups[]` value corresponds to allowed UI options.\\n    \\n    An attacker can intercept and modify the request:\\n    \\n    `groups[]=2` \u2192 attacker changes to \u2192 `groups[]=1`\\n    \\n    This immediately assigns the user to the **Administrators** group.\\n    \\n    ### Affected Code Paths\\n    \\n    (as confirmed by commit `9604617`)\\n    \\n    The following files participate in group assignment but previously lacked proper authorization logic:\\n    \\n    &#8211; `wbce\/admin\/users\/index.php`\\n    &#8211; `wbce\/admin\/users\/users.php`\\n    &#8211; `wbce\/admin\/users\/save.php`\\n    \\n    The fix introduces **server-side validation** that:\\n    \\n    &#8211; Allows **administrators** to assign any group.\\n    &#8211; Restricts **regular users** to groups they already belong to.\\n    \\n    This confirms an **Improper Access Control \/ IDOR** vulnerability in the group assignment process.\\n    \\n    &#8212;\\n    \\n    ## Proof of Concept (PoC)\\n    \\n    ### 1. Create a restricted group\\n    \\n    Configure a group named **Users** with:\\n    \\n    &#8211; Users \u2192 Modify (enabled)  \\n    &#8211; All other permissions disabled  \\n    \\n    \\u003cimg width=\\&#8221;1243\\&#8221; height=\\&#8221;1266\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/e9bd6cd7-e96c-4df2-904b-26d073abb9be\\&#8221; \/\\u003e\\n    \\n    &#8212;\\n    \\n    ### 2. Create a low-privileged user\\n    \\n    \\u003cimg width=\\&#8221;1567\\&#8221; height=\\&#8221;908\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/c5acb1fb-c872-415f-8ac2-94b1921f47e1\\&#8221; \/\\u003e\\n    \\n    &#8212;\\n    \\n    ### 3. Log in as the low-privileged user\\n    \\n    Navigate to:\\n    \\n    **Access \u2192 Users \u2192 Modify User**\\n    \\n    \\u003cimg width=\\&#8221;1749\\&#8221; height=\\&#8221;1020\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/35ffafac-d60e-42fc-a6be-5450821db003\\&#8221; \/\\u003e\\n    \\n    Intercept the outgoing request using a proxy such as Burp Suite.\\n    \\n    &#8212;\\n    \\n    ### 4. Modify the group assignment parameter\\n    \\n    **Original request parameter:**  \\n    `groups%5B%5D=2`\\n    \\n    **Modified request parameter:**  \\n    `groups%5B%5D=1`\\n    \\n    Changing the parameter to `1` assigns the user to the **Administrators** group.\\n    \\n    &#8212;\\n    \\n    ### 5. Forward the request\\n    \\n    \\u003cimg width=\\&#8221;1920\\&#8221; height=\\&#8221;676\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/ef980f1f-3650-4e7e-a67d-e95438584360\\&#8221; \/\\u003e\\n    \\n    &#8212;\\n    \\n    ### 6. Administrative access obtained\\n    \\n    After re-authentication, the user gains full access to administrative tools and features.\\n    \\n    \\u003cimg width=\\&#8221;1355\\&#8221; height=\\&#8221;781\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/cdd06bbd-a6c1-4b80-8050-a012354c9496\\&#8221; \/\\u003e\\n    \\n    &#8212;\\n    \\n    ## Impact\\n    \\n    This is a **privilege escalation vulnerability** that allows any low-privileged authenticated user to:\\n    \\n    1. Escalate to the **Administrators** group  \\n    2. Gain full control of the CMS  \\n    3. Install arbitrary modules  \\n    4. Access all administrative tools  \\n    5. Potentially achieve **remote code execution** via malicious module upload  \\n    6. Modify or delete any content managed by the CMS\\n    \\n    ## References\\n    \\n    &#8211; https:\/\/github.com\/WBCE\/WBCE_CMS\/security\/advisories\/GHSA-hmmw-4ccm-fx44\\n    &#8211; https:\/\/github.com\/WBCE\/WBCE_CMS\/commit\/96046178f4c80cf16f7c224054dec7fdadddda7e\\n    \\n    \\n    ## Disclaimer\\n    \\n    This CVE was responsibly disclosed following coordinated vulnerability disclosure practices. The information provided here is for educational and defensive purposes only.&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/218769&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:8.8,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:L\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#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\/218769\/&#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-04-13T15:46:30&#8243;,&#8221;description&#8221;:&#8221;WBCE CMS versions prior to 1.6.4 suffers from insecure direct object reference and privilege escalation vulnerabilities&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218769&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-65094&#8243;],&#8221;sourceData&#8221;:&#8221;#&#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,41,12,15,13,53,7,11,5],"class_list":["post-46313","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-88","tag-exploit","tag-high","tag-news","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 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference_PACKETSTORM:218769 - 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=46313\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference_PACKETSTORM:218769 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:46:30&#8243;,&#8221;description&#8221;:&#8221;WBCE CMS versions prior to 1.6.4 suffers from insecure direct object reference and privilege escalation vulnerabilities&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218769&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-65094&#8243;],&#8221;sourceData&#8221;:&#8221;#...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=46313\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-13T11:50:36+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46313#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46313\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 WBCE CMS Privilege Escalation \\\/ Insecure Direct Object Reference_PACKETSTORM:218769\",\"datePublished\":\"2026-04-13T11:50:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46313\"},\"wordCount\":1088,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.8\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46313#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46313\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46313\",\"name\":\"\ud83d\udcc4 WBCE CMS Privilege Escalation \\\/ Insecure Direct Object Reference_PACKETSTORM:218769 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-13T11:50:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46313#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46313\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46313#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 WBCE CMS Privilege Escalation \\\/ Insecure Direct Object Reference_PACKETSTORM:218769\"}]},{\"@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 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference_PACKETSTORM:218769 - 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=46313","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference_PACKETSTORM:218769 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-13T15:46:30&#8243;,&#8221;description&#8221;:&#8221;WBCE CMS versions prior to 1.6.4 suffers from insecure direct object reference and privilege escalation vulnerabilities&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-13T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218769&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-65094&#8243;],&#8221;sourceData&#8221;:&#8221;#...","og_url":"https:\/\/zero.redgem.net\/?p=46313","og_site_name":"zero redgem","article_published_time":"2026-04-13T11:50:36+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=46313#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=46313"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference_PACKETSTORM:218769","datePublished":"2026-04-13T11:50:36+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=46313"},"wordCount":1088,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.8","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=46313#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=46313","url":"https:\/\/zero.redgem.net\/?p=46313","name":"\ud83d\udcc4 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference_PACKETSTORM:218769 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-13T11:50:36+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=46313#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=46313"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=46313#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 WBCE CMS Privilege Escalation \/ Insecure Direct Object Reference_PACKETSTORM:218769"}]},{"@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\/46313","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=46313"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/46313\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=46313"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=46313"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=46313"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}