[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fQr0VkHSbKVoN7WM-nZYHsrkE8RGW6PNsbf_3-I4S4VI":3,"$fl94uWd22kvAVgy6xyD8oIcDj8OGr83xogRz8-D2He5k":449,"$fxNVmMji0pk3Y36Fpfz6omRI1bSMLRTDiQfFN1-s7gMA":453},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":14,"last_updated":15,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":19,"homepage":24,"download_link":25,"security_score":26,"vuln_count":27,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30,"discovery_status":31,"vulnerabilities":32,"developer":82,"crawl_stats":38,"alternatives":90,"analysis":192,"fingerprints":405},"fusedesk","FuseDesk","6.8.1","Jeremy B. Shapiro","https:\u002F\u002Fprofiles.wordpress.org\u002Fjeremyshapiro\u002F","\u003Cp>Integrate with \u003Ca href=\"https:\u002F\u002Fwww.fusedesk.com\u002F?utm_campaign=WordPress-Plugin&utm_source=WordPress-Plugin-ReadMe\" title=\"FuseDesk - HelpDesk and Messaging Platform\" rel=\"nofollow ugc\">FuseDesk\u003C\u002Fa> so your CRM (Keap, Infusionsoft, ActiveCampaign, Ontraport,  GoHighLevel, etc) contacts, membership site members, students, or site visitors can easily open new support cases directly in your FuseDesk help desk application and view their cases. Your website visitors can even start a Live Chat with your support team right from your site! Works great with Membership sites like Memberium, AccessAlly, iMember360, WishList Member, WisP, and more!\u003C\u002Fp>\n","Integrate with FuseDesk so your CRM contacts, members, and visitors can open support cases in your FuseDesk app or start a Live Chat from your website",50,9013,100,2,"2026-03-26T00:16:00.000Z","6.9.4","2.0.2","5.6",[20,4,21,22,23],"activecampaign","infusionsoft","keap","ontraport","https:\u002F\u002Fwww.FuseDesk.com\u002F?utm_campaign=WordPress-Plugin&utm_source=PluginURI","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.8.1.zip",74,3,1,"2026-03-20 15:13:03","2026-04-16T10:56:18.058Z","no_bundle",[33,56,70],{"id":34,"url_slug":35,"title":36,"description":37,"plugin_slug":4,"theme_slug":38,"affected_versions":39,"patched_in_version":38,"severity":40,"cvss_score":41,"cvss_vector":42,"vuln_type":43,"published_date":29,"updated_date":44,"references":45,"days_to_patch":38,"patch_diff_files":47,"patch_trac_url":38,"research_status":48,"research_verified":49,"research_rounds_completed":27,"research_plan":50,"research_summary":51,"research_vulnerable_code":38,"research_fix_diff":38,"research_exploit_outline":52,"research_model_used":53,"research_started_at":54,"research_completed_at":55,"research_error":38,"poc_status":38,"poc_video_id":38,"poc_summary":38,"poc_steps":38,"poc_tested_at":38,"poc_wp_version":38,"poc_php_version":38,"poc_playwright_script":38,"poc_exploit_code":38,"poc_has_trace":49,"poc_model_used":38,"poc_verification_depth":38},"CVE-2026-1914","fusedesk-authenticated-contributor-stored-cross-site-scripting-via-emailtext-shortcode-attribute","FuseDesk \u003C= 6.8 - Authenticated (Contributor+) Stored Cross-Site Scripting via 'emailtext' Shortcode Attribute","The FuseDesk plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the plugin's fusedesk_newcase shortcode in all versions up to, and including, 6.8 due to insufficient input sanitization and output escaping on the 'emailtext' attribute. This makes it possible for authenticated attackers, with Contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.",null,"\u003C=6.8","medium",6.4,"CVSS:3.1\u002FAV:N\u002FAC:L\u002FPR:L\u002FUI:N\u002FS:C\u002FC:L\u002FI:L\u002FA:N","Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')","2026-04-15 16:50:59",[46],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002Fedd24cfd-723d-4dc4-a301-43f858dcd7f3?source=api-prod",[],"researched",false,"# Exploitation Research Plan: CVE-2026-1914 (FuseDesk Stored XSS)\n\n## 1. Vulnerability Summary\nThe FuseDesk plugin for WordPress is vulnerable to **Authenticated Stored Cross-Site Scripting (XSS)** via the `emailtext` attribute of the `[fusedesk_newcase]` shortcode. In versions up to and including 6.8, the plugin fails to sanitize or escape this attribute before rendering it on the page. This allows an attacker with Contributor-level permissions or higher to inject arbitrary JavaScript into a post or page.\n\n## 2. Attack Vector Analysis\n- **Vulnerable Shortcode:** `[fusedesk_newcase]`\n- **Vulnerable Attribute:** `emailtext`\n- **Authentication Level:** Contributor+ (Users who can create or edit posts\u002Fpages).\n- **Injection Point:** Post\u002FPage content during creation or update.\n- **Persistence:** The payload is stored in the WordPress `posts` table within the `post_content` field.\n- **Trigger:** Rendering the post\u002Fpage on the frontend or viewing it in the editor.\n\n## 3. Code Flow (Inferred)\n1.  **Registration:** The plugin registers the shortcode using `add_shortcode( 'fusedesk_newcase', '...' )` during the `init` hook.\n2.  **Parsing:** When a post is viewed, WordPress calls the registered callback function for `fusedesk_newcase`.\n3.  **Processing:** The callback function extracts attributes using `shortcode_atts()`.\n4.  **The Sink:** The value of the `emailtext` attribute is either echoed directly or concatenated into a return string (likely for a hidden field, a script block, or a template variable) without being passed through escaping functions like `esc_attr()`, `esc_html()`, or `wp_kses()`.\n\n## 4. Nonce Acquisition Strategy\nThis vulnerability does not typically require a plugin-specific nonce for the *exploitation* phase because it leverages the standard WordPress post creation\u002Fediting workflow.\n1.  **Injection:** The Contributor uses the standard WordPress `wp-admin\u002Fpost.php` or the REST API to save a post. These actions are protected by core WordPress nonces (`_wpnonce`), which the execution agent can obtain by navigating to the \"New Post\" page.\n2.  **Rendering:** Shortcode execution on the frontend does not require a nonce.\n\n## 5. Test Data Setup\nBefore exploitation, the environment must be prepared:\n1.  **Install Plugin:** Ensure FuseDesk \u003C= 6.8 is installed and active.\n2.  **Create User:** Create a user with the `contributor` role.\n    ```bash\n    wp user create attacker attacker@example.com --role=contributor --user_pass=password123\n    ```\n3.  **Authentication:** The agent must log in as the `attacker` to obtain a session cookie.\n\n## 6. Exploitation Strategy\nThe goal is to create a post containing the malicious shortcode and verify its execution.\n\n### Step 1: Login and Obtain Core Nonce\n1.  Navigate to `http:\u002F\u002Flocalhost:8080\u002Fwp-login.php` and log in as `attacker`.\n2.  Navigate to `http:\u002F\u002Flocalhost:8080\u002Fwp-admin\u002Fpost-new.php`.\n3.  Extract the `_wpnonce` from the page source for post creation.\n\n### Step 2: Inject Payload\nUsing the `http_request` tool, send a POST request to save a new post with the XSS payload.\n\n- **URL:** `http:\u002F\u002Flocalhost:8080\u002Fwp-admin\u002Fpost.php`\n- **Method:** `POST`\n- **Headers:** `Content-Type: application\u002Fx-www-form-urlencoded`\n- **Body Parameters:**\n    - `action`: `editpost`\n    - `post_ID`: (The ID of the newly created draft)\n    - `_wpnonce`: (Extracted nonce)\n    - `post_title`: `XSS Test`\n    - `content`: `[fusedesk_newcase emailtext='\">\u003Cscript>alert(document.domain)\u003C\u002Fscript>']`\n    - `publish`: `Publish` (or `save` for draft)\n\n### Step 3: Trigger and Verify\n1.  Identify the URL of the post created in Step 2.\n2.  Navigate to the post URL using `browser_navigate`.\n3.  Check for the execution of the JavaScript. Since `alert()` might block, it is better to use a payload that modifies the DOM or sets a global variable.\n    - **Payload:** `[fusedesk_newcase emailtext='\">\u003Cscript>window.vulnerable = true;\u003C\u002Fscript>']`\n4.  Use `browser_eval(\"window.vulnerable\")` to confirm execution.\n\n## 7. Expected Results\n- The HTTP response for Step 2 should be a 302 redirect back to the post editor or the published post.\n- When viewing the post's HTML source, the attribute should appear exactly as:\n  `... emailtext=\"\">\u003Cscript>alert(document.domain)\u003C\u002Fscript>\" ...` (showing a breakout of an HTML attribute)\n  OR\n  `... \u003Cdiv>\u003Cscript>alert(document.domain)\u003C\u002Fscript>\u003C\u002Fdiv> ...` (showing direct injection).\n- The JavaScript must execute in the browser context.\n\n## 8. Verification Steps (Post-Exploit)\n1.  **Check Post Content:** Use WP-CLI to verify the shortcode is stored in the database.\n    ```bash\n    wp post list --post_type=post --format=csv\n    wp post get \u003CPOST_ID> --field=post_content\n    ```\n2.  **Verify Unescaped Output:** Perform a raw curl\u002Frequest to the post URL and grep for the raw script tag to prove the absence of `esc_html` or `esc_attr`.\n    ```bash\n    # (Inside container for internal check)\n    curl -s http:\u002F\u002Flocalhost\u002Findex.php?p=\u003CPOST_ID> | grep \"\u003Cscript>alert\"\n    ```\n\n## 9. Alternative Approaches\nIf the `emailtext` attribute is placed inside a JavaScript variable rather than an HTML attribute, the payload should be adjusted:\n- **JS String Breakout:** `';alert(document.domain);\u002F\u002F`\n- **Attribute Breakout (if single quotes used):** `'>\u003Cscript>alert(1)\u003C\u002Fscript>`\n\nIf the plugin filters the `post_content` on the way *in*, check if the `fusedesk_newcase` shortcode supports any AJAX-based configuration that might store settings in `wp_options` instead, which often bypasses `wp_kses_post` filters applied to post content.","The FuseDesk plugin for WordPress is vulnerable to Authenticated Stored Cross-Site Scripting via the 'emailtext' attribute of the [fusedesk_newcase] shortcode in versions up to and including 6.8. Due to a lack of input sanitization and output escaping, attackers with Contributor-level permissions or higher can inject arbitrary web scripts into pages that execute when accessed by other users.","1. Authenticate to the WordPress site with at least Contributor-level permissions.\n2. Navigate to the post editor to create a new post or edit an existing one.\n3. Insert the malicious shortcode into the post content: [fusedesk_newcase emailtext='\">\u003Cscript>alert(document.domain)\u003C\u002Fscript>'].\n4. Save the post as a draft or publish it to store the payload in the database.\n5. Navigate to the frontend URL of the post. The application will render the shortcode and reflect the unescaped 'emailtext' attribute value, causing the browser to execute the injected JavaScript.","gemini-3-flash-preview","2026-04-18 00:57:51","2026-04-18 00:58:06",{"id":57,"url_slug":58,"title":59,"description":60,"plugin_slug":4,"theme_slug":38,"affected_versions":61,"patched_in_version":62,"severity":40,"cvss_score":41,"cvss_vector":42,"vuln_type":43,"published_date":63,"updated_date":64,"references":65,"days_to_patch":67,"patch_diff_files":68,"patch_trac_url":38,"research_status":38,"research_verified":49,"research_rounds_completed":69,"research_plan":38,"research_summary":38,"research_vulnerable_code":38,"research_fix_diff":38,"research_exploit_outline":38,"research_model_used":38,"research_started_at":38,"research_completed_at":38,"research_error":38,"poc_status":38,"poc_video_id":38,"poc_summary":38,"poc_steps":38,"poc_tested_at":38,"poc_wp_version":38,"poc_php_version":38,"poc_playwright_script":38,"poc_exploit_code":38,"poc_has_trace":49,"poc_model_used":38,"poc_verification_depth":38},"CVE-2025-3832","fusedesk-authenticated-contributor-stored-cross-site-scripting-via-successredirect-parameter","FuseDesk \u003C= 6.7 - Authenticated (Contributor+) Stored Cross-Site Scripting via successredirect Parameter","The FuseDesk plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the ‘successredirect’ parameter in all versions up to, and including, 6.7 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with Contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.","\u003C=6.7","6.8","2025-04-23 19:47:53","2025-04-30 13:37:46",[66],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002Fbaf12413-eb45-44c3-a6c9-f5a048d6500d?source=api-prod",7,[],0,{"id":71,"url_slug":72,"title":73,"description":74,"plugin_slug":4,"theme_slug":38,"affected_versions":75,"patched_in_version":76,"severity":40,"cvss_score":41,"cvss_vector":42,"vuln_type":43,"published_date":77,"updated_date":78,"references":79,"days_to_patch":27,"patch_diff_files":81,"patch_trac_url":38,"research_status":38,"research_verified":49,"research_rounds_completed":69,"research_plan":38,"research_summary":38,"research_vulnerable_code":38,"research_fix_diff":38,"research_exploit_outline":38,"research_model_used":38,"research_started_at":38,"research_completed_at":38,"research_error":38,"poc_status":38,"poc_video_id":38,"poc_summary":38,"poc_steps":38,"poc_tested_at":38,"poc_wp_version":38,"poc_php_version":38,"poc_playwright_script":38,"poc_exploit_code":38,"poc_has_trace":49,"poc_model_used":38,"poc_verification_depth":38},"CVE-2024-13459","fusedesk-authenticated-contributor-stored-cross-site-scripting","FuseDesk \u003C= 6.6.1 - Authenticated (Contributor+) Stored Cross-Site Scripting","The FuseDesk plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the plugin's 'fusedesk_newcase' shortcode in all versions up to, and including, 6.6.1 due to insufficient input sanitization and output escaping on user supplied attributes. This makes it possible for authenticated attackers, with contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.","\u003C=6.6.1","6.7","2025-02-11 21:06:40","2025-02-14 22:42:52",[80],"https:\u002F\u002Fwww.wordfence.com\u002Fthreat-intel\u002Fvulnerabilities\u002Fid\u002Fa69a99af-3d1d-4ad2-b6b5-e4fcea56be51?source=api-prod",[],{"slug":83,"display_name":7,"profile_url":8,"plugin_count":84,"total_installs":85,"avg_security_score":86,"avg_patch_time_days":87,"trust_score":88,"computed_at":89},"jeremyshapiro",5,8170,81,94,66,"2026-05-19T21:00:18.131Z",[91,116,138,156,176],{"slug":92,"name":93,"version":94,"author":95,"author_profile":96,"description":97,"short_description":98,"active_installs":99,"downloaded":100,"rating":101,"num_ratings":102,"last_updated":103,"tested_up_to":104,"requires_at_least":105,"requires_php":106,"tags":107,"homepage":111,"download_link":112,"security_score":113,"vuln_count":114,"unpatched_count":14,"last_vuln_date":115,"fetched_at":30},"infusionsoft-official-opt-in-forms","Keap Official Opt-in Forms","2.0.3","Keap","https:\u002F\u002Fprofiles.wordpress.org\u002Finfusionsoft\u002F","\u003Cp>Version 2.0 adds support for Personal Access Tokens (PAT) and Service Account Keys (SAK), which replace the Legacy API Key.\u003C\u002Fp>\n\u003Cp>Add one of these seven types of email list-builders to your WordPress website:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\n\u003Cp>Popup Opt-In Forms: Prompt your visitors to opt in without annoying them. You can set Keap’s popup opt-in forms to appear automatically after a specific amount of time, after visitors reach a particular point on your page, or even after visitors leave a comment or make a purchase.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Slide-In Opt-In Forms: The slide-in form is the pop-up’s smooth, subtle cousin. It slides in at the bottom of your visitor’s screen, and can be set to appear after a specific time or at a specific point on the page.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Widget Opt-In Forms: Use widget forms to create attractive opt-in forms for your sidebar, footer, or any other widget-friendly areas on your site.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Protected Content Opt-In Forms: Offering valuable content in exchange for an email address is one of the most effective ways to grow your email list. Protected content forms allow you to offer content your visitors can “unlock” by opting in.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Below Content Opt-In Forms: You can use “Below Content” forms to place an opt-in opportunity at the end of your blog posts or pages. Visitors who have read an entire post are highly engaged, so this is an effective way to turn that engagement into a conversion.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Inline Opt-In Forms: Want to insert an opt-in form in the middle of a blog post, rather than the end? Inline forms make it easy. You can display these forms virtually anywhere you’d like on any post or page on your website.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>Notification\u002FOpt-In Bar:  Increase your opt-ins, announce your promotions and drive traffic to the pages of your choice with our attention grabbing top-of-page banner.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>You can find out how all of your opt-in forms are performing right inside your Keap dashboard. We provide elegant visualizations of your conversion rates, impressions, subscriber counts, and more, so you can track your performance at a glance.\u003C\u002Fp>\n\u003Cp>You can also run split tests with Keap’s built-in split testing feature to discover what resonates with your audience and maximize your conversion rates.\u003C\u002Fp>\n\u003Cp>Additional documentation can be found on our \u003Ca href=\"https:\u002F\u002Fhelp.keap.com\u002Fhelp\u002Fcreate-a-wordpress-opt-in-form\" rel=\"nofollow ugc\">help center\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>Features\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Direct integration with the campaign builder with a new WordPress goal (see screenshot #4)\u003C\u002Fli>\n\u003Cli>Compatible with any WordPress theme\u003C\u002Fli>\n\u003Cli>All opt-in forms are 100% mobile responsive. You also have the option of disabling them on mobile, or hiding images on mobile.\u003C\u002Fli>\n\u003Cli>Built-in A\u002FB split testing\u003C\u002Fli>\n\u003Cli>100+ beautiful opt-in form templates, all of them 100% customizable\u003C\u002Fli>\n\u003Cli>Built-in analytics dashboard so you can see how each of your popups and email lists is performing\u003C\u002Fli>\n\u003Cli>10 different animations to choose from\u003C\u002Fli>\n\u003Cli>Time-based, scroll-based, and several action-based triggers for your popups\u003C\u002Fli>\n\u003Cli>Post, page, and category filtering so you can control exactly where and when your opt-in forms appear\u003C\u002Fli>\n\u003Cli>Easily customize colors, text, images, and more on every opt-in form.\u003C\u002Fli>\n\u003Cli>Insert custom CSS on any opt-in form.\u003C\u002Fli>\n\u003Cli>Import\u002Fexport your custom plugin settings so you can transfer what you’ve created to any other Keap account.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Keap Opt-In Forms is a fork of the Bloom Plugin by Elegant Themes released under GNU Public License version 2.0.\u003C\u002Fp>\n","Build your email subscriber list from visitors to your WordPress website with Keap's Official Opt-in Forms plugin.",1000,54092,38,14,"2025-03-31T14:17:00.000Z","6.7.5","6.0","8.0",[21,22,108,109,110],"keap-api","keap-wordpress","wordpress-popup-plugin","https:\u002F\u002Fwww.keap.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Finfusionsoft-official-opt-in-forms.zip",43,4,"2025-02-17 15:45:57",{"slug":117,"name":118,"version":119,"author":120,"author_profile":121,"description":122,"short_description":123,"active_installs":124,"downloaded":125,"rating":13,"num_ratings":126,"last_updated":127,"tested_up_to":16,"requires_at_least":128,"requires_php":129,"tags":130,"homepage":135,"download_link":136,"security_score":13,"vuln_count":28,"unpatched_count":69,"last_vuln_date":137,"fetched_at":30},"cf7-infusionsoft","Integration for Keap\u002Finfusionsoft and Contact Form 7, WPForms, Elementor, Formidable, Ninja Forms","1.2.3","CRM Perks","https:\u002F\u002Fprofiles.wordpress.org\u002Fcrmperks\u002F","\u003Cp>Contact Form 7 Keap\u002Finfusionsoft Plugin sends form submissions from \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcontact-form-7\u002F\" rel=\"ugc\">Contact Form 7\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwpforms-lite\u002F\" rel=\"ugc\">WPforms\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Felementor\u002F\" rel=\"ugc\">Elementor Forms\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fninja-forms\u002F\" rel=\"ugc\">Ninja Forms\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fformidable\u002F\" rel=\"ugc\">Formidable Forms\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcontact-form-entries\u002F\" rel=\"ugc\">Contact Form Entries\u003C\u002Fa> and many other popular contact form plugins to Infusionsoft\u002FKeap CRM when anyone submits a form. Learn more at \u003Ca href=\"https:\u002F\u002Fwww.crmperks.com\u002Fplugins\u002Fcontact-form-plugins\u002Fcontact-form-infusionsoft-plugin\u002F?utm_source=wordpress&utm_medium=directory&utm_campaign=infusionsoft_readme\" rel=\"nofollow ugc\">crmperks.com\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Contact Form 7 Keap\u002FInfusionsoft Setup\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Go to “infusionsoft Accounts” tab and add new account then connect your Keap\u002Finfusionsoft account.\u003C\u002Fli>\n\u003Cli>Go to “infusionsoft Feeds” tab then add new feed.\u003C\u002Fli>\n\u003Cli>Map required infusionsoft fields to Contact form 7 form fields.\u003C\u002Fli>\n\u003Cli>Send your test entry to infusionsoft crm.\u003C\u002Fli>\n\u003Cli>Go to “Infusionsoft Logs” tab and verify, if entry was sent to Keap\u002FInfusionsoft.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Connect infusionsoft account\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Connect any contact form 7 form to infusionsoft\u002FKeap by safe and secure Oauth 2.0. Additionally, You can connect multiple Keap\u002FInfusionsoft accounts.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Map infusionsoft fields\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Map any contact form 7 form fields to infusionsoft\u002FKeap object(Contacts, Company, Tasks, Order) fields. Also, You can map unlimited Keap\u002Finfusionsoft object fields to contact form 7 form fields.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Filter contact form 7  submissions\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Easily filter contact form 7 entries sent to infusionsoft\u002FKeap based on user input. For example , only send contact form entry to infusionsoft which contanins work email address.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Manually send entry to infusionsoft\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Send contact form 7 entries to infusionsoft when anyone submits a form. Later You can manually send contact form 7 entries to infusionsoft.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>infusionsoft logs\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>View a detailed log of each contact form 7 entry whether sent or not sent to infusionsoft and easily resend contact form 7 entry to infusionsoft CRM.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Send Data As infusionsoft object Notes\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Send one to many contact form 7 fields as infusionsoft Contact notes.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Create Or Update Contact in Infusionsoft\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>If a contact already exists in infusionsoft CRM, update it otherwise create a new contact.\u003C\u002Fp>\n\u003Ch3>Why we built this plugin\u003C\u002Fh3>\n\u003Cp>Contact Form 7 and some other popular contact forms are good but you can not send contact form submissions to any crm including infusionsoft. You can send to any contact form(contact form 7) submissions to infusionsoft with this free plugin.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>\u003Cstrong>Premium Version Features.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Following features are available in Pro version only \u003Ca href=\"https:\u002F\u002Fwww.crmperks.com\u002Fplugins\u002Fcontact-form-plugins\u002Fcontact-form-infusionsoft-plugin\u002F?utm_source=wordpress&utm_medium=directory&utm_campaign=infusionsoft_readme\" rel=\"nofollow ugc\">Contact Form Infusionsoft Pro\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Infusionsoft Custom fields.\u003C\u002Fli>\n\u003Cli>Phone Number fields of Infusionsoft Contact.\u003C\u002Fli>\n\u003Cli>Assign Tags to Infusionsoft Contacts based on user input.\u003C\u002Fli>\n\u003Cli>Infusionsoft Contact Attachments and affiliates tracking.\u003C\u002Fli>\n\u003Cli>Google Analytics Parameters and Geolocation of a visitor who submitted the form.\u003C\u002Fli>\n\u003Cli>Lookup lead’s email and phone number using email and phone lookup apis.\u003C\u002Fli>\n\u003Cli>20+ premium addons\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fblockquote>\n\u003Ch3>Want to send data to crm\u003C\u002Fh3>\n\u003Cp>We have Premium Extensions for 20+ CRMs.\u003Ca href=\"https:\u002F\u002Fwww.crmperks.com\u002Fplugin-category\u002Fcontact-form-plugins\u002F?utm_source=wordpress&utm_medium=directory&utm_campaign=infusionsoft_readme\" rel=\"nofollow ugc\">View All CRM Extensions\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Need Infusionsoft\u002FKeap Plugin for Woocommerce ?\u003C\u002Fh3>\n\u003Cp>We have Infusionsoft add-on for Woocommerce. \u003Ca href=\"https:\u002F\u002Fwww.crmperks.com\u002Fplugins\u002Fwoocommerce-plugins\u002Fwoocommerce-infusionsoft-plugin\u002F?utm_source=wordpress&utm_medium=directory&utm_campaign=infusionsoft_CRM_readme\" rel=\"nofollow ugc\">Woocommerce Infusionsoft Plugin\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Our free Infusionsoft\u002FKeap Plugins\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fgf-infusionsoft\u002F\" rel=\"ugc\">Gravity Forms Keap\u002FInfusionsoft\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-infusionsoft-woocommerce\u002F\" rel=\"ugc\">Keap\u002FInfusionsoft WooCommerce Plugin\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n","Send Contact Form 7, WPForms, Elementor, Ninja Forms, Contact Form Entries Plugin and many other contact form submissions to infusionsoft\u002FKeap.",300,14450,6,"2025-12-15T15:56:00.000Z","3.8","5.3",[131,132,133,22,134],"contact-form-7-infusionsoft","elementor-forms-infusionsoft","infusionsoft-wpforms-integration","ninja-forms-infusionsoft","https:\u002F\u002Fwww.crmperks.com\u002Fplugins\u002Fcontact-form-plugins\u002Fcontact-form-infusionsoft-plugin\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcf7-infusionsoft.1.2.3.zip","2021-08-26 00:00:00",{"slug":139,"name":140,"version":141,"author":120,"author_profile":121,"description":142,"short_description":143,"active_installs":124,"downloaded":144,"rating":145,"num_ratings":101,"last_updated":146,"tested_up_to":16,"requires_at_least":128,"requires_php":129,"tags":147,"homepage":152,"download_link":153,"security_score":154,"vuln_count":27,"unpatched_count":69,"last_vuln_date":155,"fetched_at":30},"gf-infusionsoft","WP Gravity Forms Keap\u002FInfusionsoft","1.2.7","\u003Cp>Gravity Forms infusionsoft Add-on automatically sends form submissions to Infusionsoft\u002FKeap CRM when someone submits a form. Learn more at \u003Ca href=\"https:\u002F\u002Fwww.crmperks.com\u002Fplugins\u002Fgravity-forms-plugins\u002Fgravity-forms-infusionsoft-plugin\u002F?utm_source=wordpress&utm_medium=directory&utm_campaign=infusionsoft_readme\" rel=\"nofollow ugc\">crmperks.com\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Gravity Forms infusionsoft\u002FKeap Add-on Setup\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Go to Forms -> Settings -> Infusionsoft then add new account.\u003C\u002Fli>\n\u003Cli>Go to Forms -> select any form -> Settings -> Keap\u002FInfusionsoft then create new feed.\u003C\u002Fli>\n\u003Cli>Map required Keap\u002FInfusionsoft fields to Gravity Forms form fields.\u003C\u002Fli>\n\u003Cli>Send your test entry to Infusionsoft CRM.\u003C\u002Fli>\n\u003Cli>Go to Forms -> select any form -> Settings -> Infusionsoft Logs and verify previously sent entries.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Connect infusionsoft\u002FKeap crm account\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Connect any gravity forms fields to infusionsoft-Keap account by safe and secure Oauth 2.0. Additionally, you can connect multiple Infusionsoft\u002FKeap crm accounts.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Mapping Keap\u002FInfusionsoft fields\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Simply select any infusionsoft\u002FKeap object(Contact, Company etc) then map gravity forms form fields to infusionsoft\u002FKeap object fields.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Filter Gravity Forms Keap\u002FInfusionsoft submissions\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Either send all gravity forms entries to infusionsoft\u002FKeap or filter entries sent to infusionsoft based on user input. For example , only send that entry to Keap\u002FInfusionsoft which contains work email address.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Manually send entries to infusionsoft\u002FKeap\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Automatically Send gravity forms submissions to infusionsoft\u002FKeap when user submits form. Also , you can manually send gravity forms submissions to infusionsoft\u002FKeap.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Gravity Forms Keap\u002FInfusionsoft logs\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>View a detailed log of each gravity forms submission whether sent or not sent to infusionsoft\u002FKeap and easily resend gravity forms submission to infusionsoft\u002FKeap.\u003Cbr \u002F>\n\u003Cstrong>Error Reporting\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>If there is an error while sending an entry to infusionsoft\u002FKeap CRM, an email containing the error details will be sent to the specified email address.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Send Data As infusionsoft object Notes\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>if a contact form has fields which can not be mapped to any infusionsoft\u002FKeap contact fields, So you can send such fields as infusionsoft\u002FKeap contact note.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Create Or Update Contact in Infusionsoft\u002FKeap\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>If a contact already exists in infusionsoft\u002FKeap, update it otherwise create a new contact.\u003C\u002Fp>\n\u003Cblockquote>\n\u003Cp>\u003Cstrong>Premium Version Features.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Following features are available in premium version \u003Ca href=\"https:\u002F\u002Fwww.crmperks.com\u002Fplugins\u002Fgravity-forms-plugins\u002Fgravity-forms-infusionsoft-plugin\u002F?utm_source=wordpress&utm_medium=directory&utm_campaign=infusionsoft_readme\" rel=\"nofollow ugc\">Gravity Forms Infusionsoft add-on Pro\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Custom fields particularly Phone Number fields fields.\u003C\u002Fli>\n\u003Cli>Assign Tags to Infusionsoft Contacts based on user input.\u003C\u002Fli>\n\u003Cli>Infusionsoft Contact Attachments and affiliates tracking.\u003C\u002Fli>\n\u003Cli>when a user submit a form, you can save gclid, utm parameters and Geo location.\u003C\u002Fli>\n\u003Cli>Lookup lead’s email and phone number using email or phone number lookup services when user submits a contact form.\u003C\u002Fli>\n\u003Cli>20+ premium addons\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fblockquote>\n\u003Ch3>Gravity forms Keap\u002Finfusionsoft add-on\u003C\u002Fh3>\n\u003Cp>Easily integrate Gravity Forms to Infusionsoft-Keap crm with this free Gravity Forms Infusionsoft add-on. You can Create\u002FUpdate a contact, company or Order in infusionsoft crm when anyone submits a contact form on your site.\u003C\u002Fp>\n\u003Ch3>Want to send Gravity Forms data to a different crms\u003C\u002Fh3>\n\u003Cp>We have Premium Gravity Forms add-ons for 20+ CRMs.\u003Ca href=\"https:\u002F\u002Fwww.crmperks.com\u002Fplugin-category\u002Fgravity-forms-plugins\u002F?utm_source=wordpress&utm_medium=directory&utm_campaign=infusionsoft_readme\" rel=\"nofollow ugc\">View All CRM Extensions\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Our free Infusionsoft\u002FKeap Plugins\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcf7-infusionsoft\u002F\" rel=\"ugc\">Contact Form 7 Keap\u002FInfusionsoft\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-infusionsoft-woocommerce\u002F\" rel=\"ugc\">Keap\u002FInfusionsoft WooCommerce Plugin\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Need Infusionsoft\u002FKeap Plugin for Woocommerce ?\u003C\u002Fh3>\n\u003Cp>We have Infusionsoft add-on for Woocommerce. \u003Ca href=\"https:\u002F\u002Fwww.crmperks.com\u002Fplugins\u002Fwoocommerce-plugins\u002Fwoocommerce-infusionsoft-plugin\u002F?utm_source=wordpress&utm_medium=directory&utm_campaign=infusionsoft_CRM_readme\" rel=\"nofollow ugc\">Woocommerce Infusionsoft Plugin\u003C\u002Fa>\u003C\u002Fp>\n","Gravity Forms Keap\u002Finfusionsoft Add-on sends Gravity Forms entries to infusionsoft\u002FKeap CRM.",20986,98,"2026-02-24T17:32:00.000Z",[148,149,150,151,22],"gravity-forms","gravity-forms-infusionsoft","gravity-forms-infusionsoft-by-keap","infusionsoft-gravity-forms-integration","https:\u002F\u002Fwww.crmperks.com\u002Fplugins\u002Fgravity-forms-plugins\u002Fgravity-forms-infusionsoft-plugin\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgf-infusionsoft.1.2.7.zip",96,"2025-09-22 00:00:00",{"slug":157,"name":158,"version":159,"author":160,"author_profile":161,"description":162,"short_description":163,"active_installs":164,"downloaded":165,"rating":13,"num_ratings":84,"last_updated":166,"tested_up_to":16,"requires_at_least":167,"requires_php":168,"tags":169,"homepage":174,"download_link":175,"security_score":13,"vuln_count":69,"unpatched_count":69,"last_vuln_date":38,"fetched_at":30},"systasis-gf-infusionsoft-feed","Gravity Forms Keap Feed","3.0.0","Systasis Computer Systems","https:\u002F\u002Fprofiles.wordpress.org\u002Fsystasiscomputersystems\u002F","\u003Ch3>The best Keap feed for Gravity Forms.\u003C\u002Fh3>\n\u003Cp>Integrates Gravity Forms with Keap (formerly Infusionsoft) CRM, allowing form submissions to be automatically sent to your Keap CRM account.\u003C\u002Fp>\n\u003Ch3>Features\u003C\u002Fh3>\n\u003Ch4>Easily create contacts under certain conditions\u003C\u002Fh4>\n\u003Cp>For example, Contact creation occurs only when the visitor enters an email address.\u003C\u002Fp>\n\u003Ch4>Affiliate tracking\u003C\u002Fh4>\n\u003Cp>Give your affiliates a link containing their Affiliate code to a Gravity Form. Keap will record the link click.\u003C\u002Fp>\n\u003Ch4>Leadsource assignment\u003C\u002Fh4>\n\u003Cp>Assign leadsources to a Keap contact.\u003C\u002Fp>\n\u003Ch4>Duplicate checking\u003C\u002Fh4>\n\u003Cp>Duplicates will be updated or created. Check on:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Company\u003C\u002Fstrong>, \u003Cstrong>Name\u003C\u002Fstrong>, \u003Cstrong>Email\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Name\u003C\u002Fstrong>, \u003Cstrong>Email\u003C\u002Fstrong>\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Email\u003C\u002Fstrong>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Upload to Contact Filebox\u003C\u002Fh4>\n\u003Cp>Optionally upload files to a Contact’s filebox using a form upload field.\u003C\u002Fp>\n\u003Ch4>Combine fields\u003C\u002Fh4>\n\u003Cp>Avoid assigning too many Keap custom fields. Combine values from multiple Gravity Form fields into one Keap custom Contact field.\u003C\u002Fp>\n\u003Ch4>Conditional or Unconditional API Goals\u003C\u002Fh4>\n\u003Cp>Trigger an Keap campaign based on submitted form values or on every Gravity Form submission.\u003C\u002Fp>\n\u003Ch4>Feed export and import\u003C\u002Fh4>\n\u003Cp>Gravity Forms’ Form Export\u002FImport service includes Feed definitions.\u003C\u002Fp>\n\u003Ch3>Configuration\u003C\u002Fh3>\n\u003Cp>See \u003Ca href=\"https:\u002F\u002Fsystasis.co\u002Fgravity-forms-infusionsoft-feed-configuration\" rel=\"nofollow ugc\">Configuration\u003C\u002Fa> for configuration instructions.\u003C\u002Fp>\n\u003Ch3>Deactivate\u003C\u002Fh3>\n\u003Cp>Use the following process to disable the plugin and clear the custom field cache:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cem>Plugins\u003C\u002Fem> > Systasis GF Infusionsoft Feed > \u003Cem>Deactivate\u003C\u002Fem>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Uninstall\u003C\u002Fh3>\n\u003Cp>This process \u003Cem>deletes all feeds\u003C\u002Fem>, clears all caches and deactivates the plugin.\u003Cbr \u002F>\nUse this process when you suspect the plugin is not operating correctly \u003Cem>and you want to delete all feeds\u003C\u002Fem>.\u003Cbr \u002F>\nThis process deactivates the plugin, it does not delete the plugin from the WordPress environment.\u003C\u002Fp>\n\u003Cp>Use the following process to \u003Cem>delete all feeds\u003C\u002Fem> and Deactivate the plugin.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cem>Plugins\u003C\u002Fem> > Systasis GF Infusionsoft Feed \u003Cem>Settings\u003C\u002Fem> > \u003Cem>Uninstall Add-On\u003C\u002Fem>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Delete\u003C\u002Fh3>\n\u003Cp>You must \u003Cem>Deactivate\u003C\u002Fem> or \u003Cem>Uninstall\u003C\u002Fem> the plugin before performing this process.\u003C\u002Fp>\n\u003Cp>Use the following process to remove the plugin from the WordPress environment:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cem>Plugins\u003C\u002Fem> > Systasis GF Infusionsoft Feed \u003Cem>Delete\u003C\u002Fem>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Additional Info\u003C\u002Fh3>\n\u003Ch3>Clear Cache\u003C\u002Fh3>\n\u003Cp>Due to Keap API usage limits, Gravity Forms stores Keap custom fields data for twelve hours.\u003Cbr \u002F>\nIf you make a change to your custom fields, you might not see it reflected immediately due to this data caching.\u003C\u002Fp>\n\u003Col>\n\u003Cli>Navigate to Gravity Forms Settings > Systasis Gravity Forms Feed Add-On\u003C\u002Fli>\n\u003Cli>Click the “Clear Custom Fields Cache” button\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch3>Affiliate Field Type\u003C\u002Fh3>\n\u003Cp>The Feed Add-On supports affiliate tracking using a custom field type.\u003Cbr \u002F>\nThe purpose of this field is to extract an Affiliate Code or ID from the URL, and send it to Keap via its link tracking service.\u003Cbr \u002F>\nYou will use this field as follows:\u003C\u002Fp>\n\u003Col>\n\u003Cli>Add an instance of it to a Gravity Form\u003C\u002Fli>\n\u003Cli>Configuring the resulting field to indicate the name of the URL query variable\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch3>Step One: Add an Affiliate field\u003C\u002Fh3>\n\u003Cp>Find the Affiliate ID field in the “Advanced Fields” section\u003C\u002Fp>\n\u003Cp>The Affiliate Id field is a \u003Cem>hidden\u003C\u002Fem> field on your form\u003Cbr \u002F>\nAdd the field to a form like any other field, usually at the top of the form.\u003C\u002Fp>\n\u003Ch3>Step Two: Configure an Affiliate field\u003C\u002Fh3>\n\u003Cp>The only configuration required for an Affiliate` field is to name the URL query parameter.\u003C\u002Fp>\n\u003Cp>The presence of this field triggers the Feed Add-On to create a link tracking record for the Affiliate in the newly created or updated Contact.\u003C\u002Fp>\n\u003Col>\n\u003Cli>Open the field’s configuration panel, then click the “General” tab\u003C\u002Fli>\n\u003Cli>Change the Field Label value to “Affiliate Code” from “Untitled”\u003C\u002Fli>\n\u003Cli>Click the “Advanced” tab\u003C\u002Fli>\n\u003Cli>Enter the name of the URL query parameter in the “Parameter Name” setting\n\u003Cul>\n\u003Cli>Name the field “affiliate” when the form will be loaded by an Infusionsoft Referral Partner link, found on the Referral Partner Center.\u003C\u002Fli>\n\u003Cli>The name choice is yours to make when the form will be loaded via links you create in emails or other web pages.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Ch3>Data Type Mapping\u003C\u002Fh3>\n\u003Cp>Describes how Gravity Forms data types map to Keap data types.\u003C\u002Fp>\n\u003Cp>These are suggested GF types. The GF Single Line Text data type will map to any Keap data type.\u003Cbr \u002F>\nFor example, Keap will not store a Single Line Text with the value “32-Jan-2018” as a Date data type.\u003C\u002Fp>\n\u003Cp>Keap data types that \u003Cstrong>do not\u003C\u002Fstrong> define value choices will reject a bad value when that value is out of range.\u003Cbr \u002F>\nKeap data types that define value choices will accept any value even when that value is not in the choice list.\u003C\u002Fp>\n\u003Cpre>\nKeap                    Gravity Forms      Comment\n-------------           ------------       -------\nContact File Box        File Upload\n\nCurrency                Number             2 decimal places\n\nDate                    Date\n\nDate\u002FTime               N\u002FA\n\nDay of Week             Drop Down          Use numbers 1 - 7 as values\n                                           See Note 1\n                        Number             Use GF min\u002Fmax\n\nDecimal Number          Number\n\nDrilldown               N\u002FA\n\nDropdown                Drop Down\n\nEmail                   Email\n\nMonth                   Drop Down          Use numbers 1 - 12 as values\n                                           See Note 1\n                        Number             Use GF min\u002Fmax\n\nList Box                Multi Select\n\nName                    Name (Full)\n\nPercent                 Number\n\nPhone Number            Phone\n\nRadio                   Radio Buttons\n\nSocial Security Number  N\u002FA\n\nState                   Drop Down          Use two-letter state abbreviation as values\n                                           See Note 1\n\nText                    Single Line Text   255 characters\n\nText Area               Checkboxes        \\\n                        Drop Down          \\\n                        Multi Select        > 64,000 characters, csv list of selected options\n                        Radio Buttons      \u002F See Note 1\n                                          \u002F See Note 2\n\nText Area               Paragraph Text     64,000 characters\n\nUser                    N\u002FA\n\nUser List Box           N\u002FA\n\nWebsite                 Website\n\nWhole Number            Number             Round half away from zero\n\nYear                    Drop Down          See Note 1\n                        Number             Use GF min\u002Fmax\n\nYes\u002FNo                  Checkboxes        \\ See note 3\n                        Drop Down          \\ See Note 1\n                                            > Yes = 1, No = 0\n                        Radio Buttons      \u002F\n\u003C\u002Fpre>\n\u003Cp>1   Ensure the default value is the empty value; make the first entry an empty value.\u003Cbr \u002F>\n2   Map combineable fields using the “Combine Fields” feature and setting the CSS class on the field’s \u003Cem>Appearance\u003C\u002Fem> tab.\u003Cbr \u002F>\n    Use the Keap Text Area datatype to store more than 255 combined characters.\u003Cbr \u002F>\n3   For opt-in, consider a Checkbox with a single option value “Yes”\u003C\u002Fp>\n","Sync form submissions between Gravity Forms and Keap. This version won't work after 31-Dec-2026. See https:\u002F\u002Fsystasis.co\u002Fcategory\u002Fgfif for more.",200,13206,"2026-03-30T21:46:00.000Z","5.0","7.0",[170,171,148,172,173],"add-on","crm","keap-infusionsoft","systasis","https:\u002F\u002Fsystasis.co","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsystasis-gf-infusionsoft-feed.3.0.zip",{"slug":177,"name":178,"version":179,"author":177,"author_profile":180,"description":181,"short_description":182,"active_installs":13,"downloaded":183,"rating":69,"num_ratings":69,"last_updated":184,"tested_up_to":104,"requires_at_least":185,"requires_php":18,"tags":186,"homepage":189,"download_link":190,"security_score":191,"vuln_count":69,"unpatched_count":69,"last_vuln_date":38,"fetched_at":30},"segmetrics","SegMetrics Marketing Analytics","1.1.3","https:\u002F\u002Fprofiles.wordpress.org\u002Fsegmetrics\u002F","\u003Ch3>\u003Ca href=\"https:\u002F\u002Fsegmetrics.io\" rel=\"nofollow ugc\">SegMetrics\u003C\u002Fa> is the premier analytics platform for marketing professionals.\u003C\u002Fh3>\n\u003Cp>With over 54 Million leads, $3.2 Billion in revenue, and half a million marketing campaigns, SegMetrics’ mission is to bring \u003Cstrong>smart\u003C\u002Fstrong>, \u003Cstrong>actionable\u003C\u002Fstrong>, data to marketers everywhere — without all the technical setup and hassle.\u003C\u002Fp>\n\u003Cp>SegMetrics connects to the marketing tools you already use to make sure that every dollar and lead is accounted for.\u003C\u002Fp>\n\u003Cp>Get 100% clarity on where your leads come from, how they act, and how much your marketing is really worth.\u003C\u002Fp>\n\u003Ch3>Let’s Get Started\u003C\u002Fh3>\n\u003Cp>Ready to start getting actionable insights into your marketing funnels? Here’s what you have to do next:\u003C\u002Fp>\n\u003Col>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fsegmetrics.io\u002Fpricing\" rel=\"nofollow ugc\">Sign up for a SegMetrics account\u003C\u002Fa> (With 14-day free trial)\u003C\u002Fli>\n\u003Cli>Install the SegMetrics plugin, and select “SegMetrics” from the Settings menu in your WordPress sidebar.\u003C\u002Fli>\n\u003Cli>Enter your SegMetrics Account ID and API Key, click “Save Changes,” and you’re done!\u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>If you need a little more help, check out our \u003Ca href=\"https:\u002F\u002Fdocs.segmetrics.io\u002Farticle\u002F50-installing-the-tracking-snippet\" rel=\"nofollow ugc\">documentation that walks you through installing the tracking snippet\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>Now that you’re all set up, you’ll be able to access all of SegMetrics’ attribution features.\u003Cbr \u002F>\nHere’s how SegMetrics connects with your marketing funnels to deliver accurate revenue and lead attribution.\u003C\u002Fp>\n\u003Ch3>By installing the SegMetrics plugin, you’ll be able to do things like:\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Analyze where leads are coming from\u003C\u002Fli>\n\u003Cli>Get return on ad spend for all your campaigns\u003C\u002Fli>\n\u003Cli>See exactly what pages a lead has visited and when\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Connect Your Favorite CRM, eCommerce and More\u003C\u002Fh4>\n\u003Cp>Easily connect your marketing platform with your ecommerce and all the other tools you use,\u003Cbr \u002F>\nincluding Infusionsoft, Ontraport, ActiveCampaign, Google Ads, Facebook, MailChimp, Klaviyo and much more.\u003C\u002Fp>\n\u003Ch4>Accurate data you can trust\u003C\u002Fh4>\n\u003Cp>SegMetrics connects directly to your CRM — giving you 100% accuracy in your revenue and lead reporting.\u003Cbr \u002F>\nGet actionable insights without any coding, spreadsheet exporting, or pivot tables. Get answers to your burning questions in seconds.\u003C\u002Fp>\n\u003Cp>SegMetrics is used by direct marketers and SaaS companies in a number of niches.\u003Cbr \u002F>\nBut if there’s one thing that unites them all in their marketing endeavors, it’s a \u003Cstrong>need for accurate data\u003C\u002Fstrong>. SegMetrics is built on our deep understanding of reliably getting the metrics businesses need to stay profitable.\u003C\u002Fp>\n\u003Ch4>SegMetrics deciphers the data so you don’t have to.\u003C\u002Fh4>\n\u003Cp>We built SegMetrics to be reliable, simple to set up, and easy to read. Because no matter the size or type of your business, success shouldn’t depend on wrestling some sense out of confusing or conflicting data. Get back to making clear-headed, informed decisions. We’ll handle the numbers.\u003C\u002Fp>\n\u003Ch4>Get Access to ALL Your Data\u003C\u002Fh4>\n\u003Cp>As soon as you sign up with SegMetrics, you get access to all your data — not just the data after you sign up.\u003C\u002Fp>\n\u003Cp>Give current trends more context by comparing old ones, or get to the bottom of long-unanswered questions.\u003C\u002Fp>\n\u003Ch4>Support You Can Rely On\u003C\u002Fh4>\n\u003Cp>The SegMetrics support team has extensive experience working closely with clients to meet their reporting needs.\u003C\u002Fp>\n\u003Cp>If you have a question or issue, we’ll help resolve it ASAP – even if it’s technologically convoluted or completely specific to your business.\u003C\u002Fp>\n","Connect your SegMetrics account to get unparalleled insights into your visitor journey.",4559,"2025-03-14T22:20:00.000Z","4.9",[187,21,23,177,188],"analytics","tracking","https:\u002F\u002Fsegmetrics.io","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsegmetrics.1.1.4.zip",92,{"attackSurface":193,"codeSignals":286,"taintFlows":334,"riskAssessment":388,"analyzedAt":404},{"hooks":194,"ajaxHandlers":243,"restRoutes":273,"shortcodes":274,"cronEvents":283,"entryPointCount":284,"unprotectedCount":285},[195,202,206,211,215,219,223,227,231,235,239],{"type":196,"name":197,"callback":198,"priority":199,"file":200,"line":201},"filter","block_categories_all","fusedesk_blocks_category",10,"fusedesk-blocks\u002Ffusedesk-blocks.php",97,{"type":203,"name":204,"callback":205,"file":200,"line":13},"action","init","fusedesk_blocks_init",{"type":196,"name":207,"callback":208,"priority":199,"file":209,"line":210},"plugin_action_links","fusedesk_plugin_action_links","fusedesk.php",31,{"type":203,"name":212,"callback":213,"file":209,"line":214},"admin_init","admin_init_fusedesk",39,{"type":203,"name":216,"callback":217,"file":209,"line":218},"admin_menu","admin_menu_fusedesk",40,{"type":203,"name":220,"callback":221,"file":209,"line":222},"wp_head","fusedesk_livechatwidget",1143,{"type":203,"name":224,"callback":225,"file":209,"line":226},"wp_footer","fusedesk_livechat_setcontact",1144,{"type":203,"name":228,"callback":229,"priority":84,"file":209,"line":230},"gform_loaded","gf_fusedesk_load",1145,{"type":203,"name":232,"callback":233,"priority":199,"file":209,"line":234},"gform_after_submission","gf_fusedesk_createcase",1146,{"type":203,"name":236,"callback":237,"file":209,"line":238},"plugins_loaded","fusedesk_load_translation_files",1147,{"type":203,"name":240,"callback":241,"file":209,"line":242},"wp_print_scripts","fusedesk_ajax_load_scripts",1170,[244,248,252,256,260,264,268,271],{"action":245,"nopriv":49,"callback":246,"hasNonce":49,"hasCapCheck":49,"file":209,"line":247},"fusedesk_reps","fusedesk_ajax_reps",52,{"action":249,"nopriv":49,"callback":250,"hasNonce":49,"hasCapCheck":49,"file":209,"line":251},"fusedesk_departments","fusedesk_ajax_departments",53,{"action":253,"nopriv":49,"callback":254,"hasNonce":49,"hasCapCheck":49,"file":209,"line":255},"fusedesk_casetags","fusedesk_ajax_casetags",54,{"action":257,"nopriv":49,"callback":258,"hasNonce":49,"hasCapCheck":49,"file":209,"line":259},"fusedesk_chatwidgets","fusedesk_ajax_chatwidgets",55,{"action":261,"nopriv":49,"callback":262,"hasNonce":49,"hasCapCheck":49,"file":209,"line":263},"fusedesk_newcase","fusedesk_ajax_newcase",1139,{"action":265,"nopriv":49,"callback":266,"hasNonce":49,"hasCapCheck":49,"file":209,"line":267},"fusedesk_search","fusedesk_ajax_search",1140,{"action":261,"nopriv":269,"callback":262,"hasNonce":49,"hasCapCheck":49,"file":209,"line":270},true,1141,{"action":265,"nopriv":269,"callback":266,"hasNonce":49,"hasCapCheck":49,"file":209,"line":272},1142,[],[275,277,280],{"tag":261,"callback":261,"file":209,"line":276},27,{"tag":278,"callback":278,"file":209,"line":279},"fusedesk_mycases",28,{"tag":281,"callback":281,"file":209,"line":282},"fusedesk_teamcases",29,[],11,8,{"dangerousFunctions":287,"sqlUsage":288,"outputEscaping":290,"fileOperations":28,"externalRequests":14,"nonceChecks":69,"capabilityChecks":69,"bundledLibraries":333},[],{"prepared":28,"raw":69,"locations":289},[],{"escaped":291,"rawEcho":292,"locations":293},253,19,[294,297,299,301,303,305,307,309,311,313,315,318,320,321,323,325,327,329,331],{"file":209,"line":295,"context":296},1024,"raw output",{"file":209,"line":298,"context":296},1044,{"file":209,"line":300,"context":296},1050,{"file":209,"line":302,"context":296},1056,{"file":209,"line":304,"context":296},1062,{"file":209,"line":306,"context":296},1081,{"file":209,"line":308,"context":296},1130,{"file":209,"line":310,"context":296},1568,{"file":209,"line":312,"context":296},1572,{"file":209,"line":314,"context":296},1576,{"file":316,"line":317,"context":296},"options.php",71,{"file":316,"line":319,"context":296},95,{"file":316,"line":13,"context":296},{"file":316,"line":322,"context":296},124,{"file":316,"line":324,"context":296},130,{"file":316,"line":326,"context":296},141,{"file":316,"line":328,"context":296},142,{"file":316,"line":330,"context":296},574,{"file":316,"line":332,"context":296},575,[],[335,351,360,369,378],{"entryPoint":336,"graph":337,"unsanitizedCount":28,"severity":40},"fusedesk_ajax_reps (fusedesk.php:1042)",{"nodes":338,"edges":349},[339,344],{"id":340,"type":341,"label":342,"file":209,"line":343},"n0","source","$_GET",1043,{"id":345,"type":346,"label":347,"file":209,"line":298,"wp_function":348},"n1","sink","echo() [XSS]","echo",[350],{"from":340,"to":345,"sanitized":49},{"entryPoint":352,"graph":353,"unsanitizedCount":28,"severity":40},"fusedesk_ajax_departments (fusedesk.php:1048)",{"nodes":354,"edges":358},[355,357],{"id":340,"type":341,"label":342,"file":209,"line":356},1049,{"id":345,"type":346,"label":347,"file":209,"line":300,"wp_function":348},[359],{"from":340,"to":345,"sanitized":49},{"entryPoint":361,"graph":362,"unsanitizedCount":28,"severity":40},"fusedesk_ajax_casetags (fusedesk.php:1054)",{"nodes":363,"edges":367},[364,366],{"id":340,"type":341,"label":342,"file":209,"line":365},1055,{"id":345,"type":346,"label":347,"file":209,"line":302,"wp_function":348},[368],{"from":340,"to":345,"sanitized":49},{"entryPoint":370,"graph":371,"unsanitizedCount":28,"severity":40},"fusedesk_ajax_chatwidgets (fusedesk.php:1060)",{"nodes":372,"edges":376},[373,375],{"id":340,"type":341,"label":342,"file":209,"line":374},1061,{"id":345,"type":346,"label":347,"file":209,"line":304,"wp_function":348},[377],{"from":340,"to":345,"sanitized":49},{"entryPoint":379,"graph":380,"unsanitizedCount":114,"severity":387},"\u003Cfusedesk> (fusedesk.php:0)",{"nodes":381,"edges":385},[382,384],{"id":340,"type":341,"label":383,"file":209,"line":343},"$_GET (x4)",{"id":345,"type":346,"label":347,"file":209,"line":298,"wp_function":348},[386],{"from":340,"to":345,"sanitized":49},"low",{"summary":389,"deductions":390},"The Fusedesk plugin version 6.8.1 exhibits a concerning security posture due to a significant number of unprotected entry points and a history of multiple medium-severity vulnerabilities, including Cross-Site Scripting. While the plugin demonstrates good practices in SQL query handling and output escaping, the presence of 8 unprotected AJAX handlers presents a substantial attack surface.  This lack of authentication on these handlers means that any unauthenticated user could potentially trigger plugin functionality, leading to unexpected behavior or exploitation if further vulnerabilities exist.\n\nTaint analysis indicates no critical or high-severity unsanitized flows, which is a positive sign. However, the fact that all 5 analyzed flows involved unsanitized paths, even if they didn't reach a critical severity, warrants caution. The plugin's history of 3 medium CVEs, all related to Cross-Site Scripting, is a significant red flag. While there is currently one unpatched vulnerability, the recurring nature of XSS issues suggests a persistent weakness in how user-supplied data is handled before being displayed.\n\nIn conclusion, Fusedesk v6.8.1 has notable strengths in its SQL and output escaping practices. However, these are overshadowed by the high number of unprotected AJAX endpoints and a history of XSS vulnerabilities. The potential for abuse of the open attack surface, combined with past XSS issues, indicates a moderate to high risk for users of this version.",[391,393,396,398,400,402],{"reason":392,"points":285},"Multiple unprotected AJAX handlers",{"reason":394,"points":395},"Unpatched CVEs",15,{"reason":397,"points":199},"Medium severity CVEs historically",{"reason":399,"points":84},"All taint flows had unsanitized paths",{"reason":401,"points":285},"No nonce checks on AJAX handlers",{"reason":403,"points":285},"No capability checks on AJAX handlers","2026-04-16T11:09:08.846Z",{"wat":406,"direct":417},{"assetPaths":407,"generatorPatterns":411,"scriptPaths":412,"versionParams":413},[408,409,410],"\u002Fwp-content\u002Fplugins\u002Ffusedesk\u002Ffusedesk.css","\u002Fwp-content\u002Fplugins\u002Ffusedesk\u002Ffusedesk.js","\u002Fwp-content\u002Fplugins\u002Ffusedesk\u002Ffusedesk-blocks\u002Ffusedesk-blocks.js",[],[409,410],[414,415,416],"fusedesk\u002Ffusedesk.css?ver=","fusedesk\u002Ffusedesk.js?ver=","fusedesk-blocks\u002Ffusedesk-blocks.js?ver=",{"cssClasses":418,"htmlComments":420,"htmlAttributes":430,"restEndpoints":440,"jsGlobals":443,"shortcodeOutput":445},[419],"fusedesk-live-chat",[421,422,423,424,425,426,427,428,429],"FuseDesk (WordPress Plugin)","Copyright (C) 2013-2026 Asandia, Corp.","These API endpoints let admins request our cached data via the WordPress API. We can even optionally","force a data refresh. Simply call:","\u002Fwp-admin\u002Fadmin-ajax.php?action=fusedesk_{dataSetName}&refresh={refresh}","where {dataSetName} is one of `reps`, `departments`, `casetags`, or `chatwidgets`","and {refresh} is truthy (i.e. `1`) to refresh the cache.","For example, to refresh our reps cache and return an array of reps, call:","\u002Fwp-admin\u002Fadmin-ajax.php?action=fusedesk_reps&refresh=1",[431,432,433,434,435,436,437,438,439],"data-fusedesk-appname","data-fusedesk-apikey","data-fusedesk-defaultrep","data-fusedesk-defaultdepartment","data-fusedesk-planname","data-fusedesk-footerlink","data-fusedesk-partnercode","data-fusedesk-livechatid","data-fusedesk-livechat-setcontact",[441,442],"\u002Fwp-json\u002Ffusedesk\u002Fv1\u002Fsettings","\u002Fwp-json\u002Ffusedesk\u002Fv1\u002Fpartners",[444],"fusedesk_params",[446,447,448],"[fusedesk_newcase]","[fusedesk_mycases]","[fusedesk_teamcases]",{"error":269,"url":450,"statusCode":451,"statusMessage":452,"message":452},"http:\u002F\u002Flocalhost\u002Fapi\u002Fplugins\u002Ffusedesk\u002Fbundle",404,"no bundle for this plugin yet",{"slug":4,"current_version":6,"total_versions":102,"versions":454},[455,461,468,477,485,495,505,515,525,535,545,555,565,575],{"version":6,"download_url":25,"svn_tag_url":456,"released_at":38,"has_diff":49,"diff_files_changed":457,"diff_lines":38,"trac_diff_url":458,"vulnerabilities":459,"is_current":269},"https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.8.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.8&new_path=%2Ffusedesk%2Ftags%2F6.8.1",[460],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":62,"download_url":462,"svn_tag_url":463,"released_at":38,"has_diff":49,"diff_files_changed":464,"diff_lines":38,"trac_diff_url":465,"vulnerabilities":466,"is_current":49},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.8.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.8\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.7.1&new_path=%2Ffusedesk%2Ftags%2F6.8",[467],{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":469,"download_url":470,"svn_tag_url":471,"released_at":38,"has_diff":49,"diff_files_changed":472,"diff_lines":38,"trac_diff_url":473,"vulnerabilities":474,"is_current":49},"6.7.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.7.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.7.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.7&new_path=%2Ffusedesk%2Ftags%2F6.7.1",[475,476],{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":76,"download_url":478,"svn_tag_url":479,"released_at":38,"has_diff":49,"diff_files_changed":480,"diff_lines":38,"trac_diff_url":481,"vulnerabilities":482,"is_current":49},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.7.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.7\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.6.1&new_path=%2Ffusedesk%2Ftags%2F6.7",[483,484],{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":486,"download_url":487,"svn_tag_url":488,"released_at":38,"has_diff":49,"diff_files_changed":489,"diff_lines":38,"trac_diff_url":490,"vulnerabilities":491,"is_current":49},"6.6.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.6.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.6.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.6&new_path=%2Ffusedesk%2Ftags%2F6.6.1",[492,493,494],{"id":71,"url_slug":72,"title":73,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":76},{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":496,"download_url":497,"svn_tag_url":498,"released_at":38,"has_diff":49,"diff_files_changed":499,"diff_lines":38,"trac_diff_url":500,"vulnerabilities":501,"is_current":49},"6.6","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.6.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.6\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.5&new_path=%2Ffusedesk%2Ftags%2F6.6",[502,503,504],{"id":71,"url_slug":72,"title":73,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":76},{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":506,"download_url":507,"svn_tag_url":508,"released_at":38,"has_diff":49,"diff_files_changed":509,"diff_lines":38,"trac_diff_url":510,"vulnerabilities":511,"is_current":49},"6.5","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.5.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.5\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.4&new_path=%2Ffusedesk%2Ftags%2F6.5",[512,513,514],{"id":71,"url_slug":72,"title":73,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":76},{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":516,"download_url":517,"svn_tag_url":518,"released_at":38,"has_diff":49,"diff_files_changed":519,"diff_lines":38,"trac_diff_url":520,"vulnerabilities":521,"is_current":49},"6.4","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.4.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.4\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.3&new_path=%2Ffusedesk%2Ftags%2F6.4",[522,523,524],{"id":71,"url_slug":72,"title":73,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":76},{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":526,"download_url":527,"svn_tag_url":528,"released_at":38,"has_diff":49,"diff_files_changed":529,"diff_lines":38,"trac_diff_url":530,"vulnerabilities":531,"is_current":49},"6.3","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.3.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.3\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.2.1&new_path=%2Ffusedesk%2Ftags%2F6.3",[532,533,534],{"id":71,"url_slug":72,"title":73,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":76},{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":536,"download_url":537,"svn_tag_url":538,"released_at":38,"has_diff":49,"diff_files_changed":539,"diff_lines":38,"trac_diff_url":540,"vulnerabilities":541,"is_current":49},"6.2.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.2.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.2.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.2&new_path=%2Ffusedesk%2Ftags%2F6.2.1",[542,543,544],{"id":71,"url_slug":72,"title":73,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":76},{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":546,"download_url":547,"svn_tag_url":548,"released_at":38,"has_diff":49,"diff_files_changed":549,"diff_lines":38,"trac_diff_url":550,"vulnerabilities":551,"is_current":49},"6.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.1.1&new_path=%2Ffusedesk%2Ftags%2F6.2",[552,553,554],{"id":71,"url_slug":72,"title":73,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":76},{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":556,"download_url":557,"svn_tag_url":558,"released_at":38,"has_diff":49,"diff_files_changed":559,"diff_lines":38,"trac_diff_url":560,"vulnerabilities":561,"is_current":49},"6.1.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.1.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.1.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.1&new_path=%2Ffusedesk%2Ftags%2F6.1.1",[562,563,564],{"id":71,"url_slug":72,"title":73,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":76},{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":566,"download_url":567,"svn_tag_url":568,"released_at":38,"has_diff":49,"diff_files_changed":569,"diff_lines":38,"trac_diff_url":570,"vulnerabilities":571,"is_current":49},"6.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Ffusedesk%2Ftags%2F6.0&new_path=%2Ffusedesk%2Ftags%2F6.1",[572,573,574],{"id":71,"url_slug":72,"title":73,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":76},{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38},{"version":105,"download_url":576,"svn_tag_url":577,"released_at":38,"has_diff":49,"diff_files_changed":578,"diff_lines":38,"trac_diff_url":38,"vulnerabilities":579,"is_current":49},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffusedesk.6.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Ffusedesk\u002Ftags\u002F6.0\u002F",[],[580,581,582],{"id":71,"url_slug":72,"title":73,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":76},{"id":57,"url_slug":58,"title":59,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":62},{"id":34,"url_slug":35,"title":36,"severity":40,"cvss_score":41,"vuln_type":43,"patched_in_version":38}]