[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fGxHrsMFyhoIvX7Oxi5hx6DROKzLehNWR3oy8enc7jGY":3},{"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":13,"last_updated":14,"tested_up_to":15,"requires_at_least":16,"requires_php":17,"tags":18,"homepage":23,"download_link":24,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27,"vulnerabilities":28,"developer":29,"crawl_stats":26,"alternatives":35,"analysis":140,"fingerprints":183},"iframe-plus-get-parameters","Iframe plus GET Parameters","1.0.2","Tron","https:\u002F\u002Fprofiles.wordpress.org\u002Ftronusa\u002F","\u003Cp>This plugin extends iframes in WordPress and passes GET parameters to the iframe. Can be used to prepopulate forms that pull data from php $_GET variables, also know as the query string.\u003C\u002Fp>\n","Passes GET parameters to iframes.",10,871,0,"2023-04-26T23:21:00.000Z","6.2.9","5.4.12","5.6",[19,20,21,22],"php-_get-variables","query-string","url-get-params","url-parameters","","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fiframe-plus-get-parameters.1.0.2.zip",85,null,"2026-03-15T15:16:48.613Z",[],{"slug":30,"display_name":7,"profile_url":8,"plugin_count":31,"total_installs":11,"avg_security_score":25,"avg_patch_time_days":32,"trust_score":33,"computed_at":34},"tronusa",2,30,84,"2026-04-04T17:26:43.982Z",[36,59,81,102,122],{"slug":37,"name":38,"version":39,"author":40,"author_profile":41,"description":42,"short_description":43,"active_installs":44,"downloaded":45,"rating":46,"num_ratings":47,"last_updated":48,"tested_up_to":49,"requires_at_least":50,"requires_php":23,"tags":51,"homepage":54,"download_link":55,"security_score":56,"vuln_count":57,"unpatched_count":13,"last_vuln_date":58,"fetched_at":27},"url-params","URL Params","2.5","Jeremy B. Shapiro","https:\u002F\u002Fprofiles.wordpress.org\u002Fjeremyshapiro\u002F","\u003Cp>The URL Params WordPress Plugin allows you to access URL parameters in the Query String of the URL.\u003C\u002Fp>\n\u003Cp>The plugin even allows you to specify a default value in the shortcode if the parameter isn’t set, so if you want to say “Hello, FirstName” and FirstName isn’t set, it could say something like “Hello, Friend!”\u003C\u002Fp>\n\u003Cp>To specify a backup url parameter, enter multiple parameters seperated by commas. The plugin will check for each parameter, in order, until a matching one is found and return that. Failing finding any of the parameters you listed, the default will be returned. For example, you can specify \u003Ccode>[urlparam param=\"FirstName, First, name\" default=\"Friend\" \u002F]\u003C\u002Fcode> to check for FirstName, and if not found, then First, if not found, then name, and if not, then just return “Friend”.\u003C\u002Fp>\n\u003Cp>If the parameter is a date, you can also specify the \u003Ccode>dateformat\u003C\u002Fcode> option using a \u003Ca href=\"http:\u002F\u002Fphp.net\u002Fmanual\u002Fen\u002Ffunction.date.php\" rel=\"nofollow ugc\">PHP friendly date format\u003C\u002Fa>, for example \u003Ccode>[urlparam param=\"somedate\" dateformat=\"F Js\" \u002F]\u003C\u002Fcode>. Note that PHP only returns dates formatted in English regardless of locale settings.\u003C\u002Fp>\n\u003Cp>This is great if you have personalized links, like from Infusionsoft or Keap, as it lets you personalize a landing page with a persons name.\u003C\u002Fp>\n\u003Cp>You can also use this to pre-fill out form fields for folks based on the querystring. For example, if their first name is passed in the URL, your landing page can greet the viewer by name and pre-fill their name on a form.\u003C\u002Fp>\n\u003Ch3>Usage\u003C\u002Fh3>\n\u003Cp>Use the shortcode urlparam with the optional parameter of “default”. For example \u003Ccode>[urlparam param=\"FirstName\" \u002F]\u003C\u002Fcode> or \u003Ccode>[urlparam param=\"FirstName\" default=\"Friend\"\u002F]\u003C\u002Fcode>.\u003C\u002Fp>\n\u003Cp>For conditional content use \u003Ccode>[ifurlparam][\u002Fifurlparam]\u003C\u002Fcode>. For example, \u003Ccode>[ifurlparam param=\"FirstName\"]Hey, I know you, [urlparam param=\"FirstName\"]![\u002Fifurlparam]\u003C\u002Fcode> would greet known visitors, but display nothing to users without a FirstName in the query string.\u003C\u002Fp>\n\u003Cp>If you want to show content when a value does NOT exist, you can set \u003Ccode>empty\u003C\u002Fcode> in \u003Ccode>[ifurlparam]\u003C\u002Fcode>. For example \u003Ccode>[ifurlparam param=\"FirstName\" empty=\"1\"]Welcome to the site, visitor![\u002Fifurlparam]\u003C\u002Fcode> would greet visitors without a FirstName in the query string, but display nothing for visitors with FirstName in the query string.\u003C\u002Fp>\n\u003Cp>If you want to show content only to visitors with a specific value in their query string, you can set \u003Ccode>is\u003C\u002Fcode> in \u003Ccode>[ifurlparam]\u003C\u002Fcode>. For example, \u003Ccode>[ifurlparam param=\"FirstName\" is=\"Bob\"]Hi, Bob![\u002Fifurlparam]\u003C\u002Fcode>, would only greet visitors with the FirstName param set to Bob.\u003C\u002Fp>\n\u003Cp>If you want to have urlparam return an HTML attribute, for example to use in pre-setting the value of input or hidden input fields, pass in the optional \u003Ccode>attr\u003C\u002Fcode> parameter. You might set a value attribute for an input field like so: \u003Ccode>\u003Cinput type=\"text\" name=\"firstname\" [urlparam attr=\"value\" param='FirstName']>\u003C\u002Fcode> or you might set a src attribute for an image tag like so: \u003Ccode>\u003Cimg [urlparam attr=\"src\" param='imgurl']>\u003C\u002Fcode>\u003C\u002Fp>\n\u003Cp>If you want urlparam to return an entire HTML tag, for example in creating an input field, pass in the optional \u003Ccode>htmltag\u003C\u002Fcode> parameter. For example, \u003Ccode>[urlparam htmltag=\"input\" type=\"text\" name=\"firstname\" id=\"first\" attr=\"value\" param=\"FirstName\" default=\"Bob\" \u002F]\u003C\u002Fcode> will produce something like \u003Ccode>\u003Cinput type=\"text\" name=\"firstname\" id=\"first\" value=\"Bob\" \u002F>\u003C\u002Fcode>\u003C\u002Fp>\n\u003Ch3>Security\u003C\u002Fh3>\n\u003Cp>To help protect your site against \u003Ca href=\"http:\u002F\u002Fen.wikipedia.org\u002Fwiki\u002FCross-site_scripting\" rel=\"nofollow ugc\">Reflected Cross Site Scripting\u003C\u002Fa>, we sanitize output with \u003Ca href=\"https:\u002F\u002Fcodex.wordpress.org\u002FFunction_Reference\u002Fesc_html\" rel=\"nofollow ugc\">esc_html()\u003C\u002Fa> which prevents any HTML tags from being passed in and displayed. This would prevent someone from passing in javascript, for example, and having it execute on your site.\u003C\u002Fp>\n\u003Cp>Starting in the \u003Ca href=\"https:\u002F\u002Fmake.wordpress.org\u002Fcore\u002F2015\u002F07\u002F23\u002Fchanges-to-the-shortcode-api\u002F\" rel=\"nofollow ugc\">WordPress 4.2.3 security auto-update\u003C\u002Fa>, you can no longer include shortcodes in HTML attributes. Previous to this WordPress update, you could set a field value like this: \u003Ccode>\u003Cinput type=\"text\" name=\"firstname\" value=\"[urlparam param='FirstName']\">\u003C\u002Fcode>. Now you have to set it like this: \u003Ccode>\u003Cinput type=\"text\" name=\"firstname\" [urlparam attr=\"value\" param='FirstName']>\u003C\u002Fcode> or  \u003Ccode>[urlparam htmltag=\"input\" type=\"text\" name=\"firstname\" attr=\"value\" param=\"FirstName\" \u002F]\u003C\u002Fcode>. If you are still using this shortcode the old way, unfortunately, WordPress simply won’t process the shortcode and will return the full shortcode text unprocessed.\u003C\u002Fp>\n\u003Cp>To prevent unprivileged users (like Contributors) from using this shortcode to have privileged users (like Admins) accidentally execute arbitrary javascript via HTML attributes (like \u003Ccode>onclick\u003C\u002Fcode>, \u003Ccode>onmouseover\u003C\u002Fcode>, etc), html tags and attributes are sanitized.\u003C\u002Fp>\n\u003Cp>If you do need have a need to set certain sanitized tags or attributes, at your own risk, you can manually allow these from the URL Params options page under Settings.\u003C\u002Fp>\n","Short Code to grab any URL parameter from the Query String and display it or display conditional content.",8000,100996,100,37,"2024-12-17T19:03:00.000Z","6.7.5","3.0",[20,52,22,37,53],"url","urlparam","http:\u002F\u002Fasandia.com\u002Fwordpress-plugins\u002Furlparams\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Furl-params.2.5.zip",92,1,"2023-04-25 00:00:00",{"slug":60,"name":61,"version":62,"author":63,"author_profile":64,"description":65,"short_description":66,"active_installs":67,"downloaded":68,"rating":56,"num_ratings":69,"last_updated":70,"tested_up_to":71,"requires_at_least":72,"requires_php":17,"tags":73,"homepage":78,"download_link":79,"security_score":46,"vuln_count":57,"unpatched_count":13,"last_vuln_date":80,"fetched_at":27},"wp-performance-score-booster","WP Performance Score Booster – Optimize Speed, Enable Cache & Page Preload","2.2.3","Dipak C. Gajjar","https:\u002F\u002Fprofiles.wordpress.org\u002Fdipakcg\u002F","\u003Cp>\u003Cstrong>WP Performance Score Booster makes website faster, speeds up page load time, and instantly improves website performance scores in tools like Google PageSpeed Insights, GTmetrix, Pingdom, and more.\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch4>This plugin will…\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Remove any query strings from static resources like CSS & JS files\u003C\u002Fli>\n\u003Cli>Enable GZIP compression (compress text, html, javascript, css, xml and so on)\u003C\u002Fli>\n\u003Cli>Leverage browser caching (expires headers) for better cache control\u003C\u002Fli>\n\u003Cli>Preload a page (on mouse hover) right before a user click on a link\u003C\u002Fli>\n\u003Cli>Disable ETag and set Cache-Control headers\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cspan class=\"embed-youtube\" style=\"text-align:center; display: block;\">\u003Ciframe loading=\"lazy\" class=\"youtube-player\" width=\"750\" height=\"422\" src=\"https:\u002F\u002Fwww.youtube.com\u002Fembed\u002FnEFZLFyZNcE?version=3&rel=1&showsearch=0&showinfo=1&iv_load_policy=1&fs=1&hl=en-US&autohide=2&wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation allow-popups-to-escape-sandbox\">\u003C\u002Fiframe>\u003C\u002Fspan>\n\u003Cp>\u003Cstrong>Like this plugin? You’ll love my other plugin: \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-super-minify\u002F\" rel=\"ugc\">WP Super Minify\u003C\u002Fa>\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Ch4>Development & Support\u003C\u002Fh4>\n\u003Cp>Follow the development of this plugin on \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fdipakcg\u002Fwp-performance-score-booster\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>P.S. It is always the best policy to open a \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Fplugin\u002Fwp-performance-score-booster#new-topic-0\" rel=\"ugc\">support thread\u003C\u002Fa> first before posting any negative review.\u003C\u002Fp>\n","Make website faster, speed up page load time and improve performance scores in tools like Google PageSpeed Insights, GTmetrix, Pingdom, and more.",10000,735375,339,"2026-02-10T11:59:00.000Z","6.9.4","3.5",[74,75,76,20,77],"optimize","performance","preload","speed","https:\u002F\u002Fgithub.com\u002Fdipakcg\u002Fwp-performance-score-booster","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-performance-score-booster.2.2.3.zip","2021-10-18 00:00:00",{"slug":82,"name":83,"version":84,"author":85,"author_profile":86,"description":87,"short_description":88,"active_installs":89,"downloaded":90,"rating":46,"num_ratings":31,"last_updated":91,"tested_up_to":92,"requires_at_least":93,"requires_php":23,"tags":94,"homepage":100,"download_link":101,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"wp-theme-optimizer","WP Theme Optimizer","1.1.4","d","https:\u002F\u002Fprofiles.wordpress.org\u002Fdsgnr\u002F","\u003Cp>Optimize your WordPress theme header by removing excess tags and scripts. Make your site faster and more secure by hiding WordPress tags.\u003C\u002Fp>\n\u003Ch3>Features\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Remove CSS and JS versions\u003C\u002Fli>\n\u003Cli>Remove WP Generator tag\u003C\u002Fli>\n\u003Cli>Remove OEmbed Links\u003C\u002Fli>\n\u003Cli>Remove jQuery Migrate\u003C\u002Fli>\n\u003Cli>Remove emoji-release.js\u003C\u002Fli>\n\u003Cli>Remove recent comments inline CSS\u003C\u002Fli>\n\u003Cli>Remove RSD Link\u003C\u002Fli>\n\u003Cli>Remove RSS feeds\u003C\u002Fli>\n\u003Cli>Remove wlwmanifest.xml\u003C\u002Fli>\n\u003Cli>Remove WP JSON link\u003C\u002Fli>\n\u003Cli>Remove WP Shortlink\u003C\u002Fli>\n\u003Cli>Remove Next\u002FPrevious post links\u003C\u002Fli>\n\u003Cli>Remove Yoast SEO comments in front-end HTML\u003C\u002Fli>\n\u003Cli>Option to Minify front-end HTML\u003C\u002Fli>\n\u003Cli>Remove DNS prefetch tags\u003C\u002Fli>\n\u003C\u002Ful>\n","Optimize your WordPress theme header by removing excess tags and scripts. Make your site faster and more secure by hiding WordPress tags.",400,12051,"2016-11-07T07:45:00.000Z","4.6.30","3.0.1",[95,96,97,98,99],"optimiser","optimizer","remove-header-information","remove-query-strings-from-static-resources","theme","www.themeoptimizer.io","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-theme-optimizer.zip",{"slug":103,"name":104,"version":105,"author":106,"author_profile":107,"description":108,"short_description":109,"active_installs":46,"downloaded":110,"rating":46,"num_ratings":111,"last_updated":112,"tested_up_to":113,"requires_at_least":114,"requires_php":23,"tags":115,"homepage":120,"download_link":121,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"wp-version-in-query-string-modifier","WP Version in Query String Modifier","1.0.0.7","joesat","https:\u002F\u002Fprofiles.wordpress.org\u002Fjoesat\u002F","\u003Cp>Depending on your needs, this plugin is useful for:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>updating the version value to an incrementing number (with a single click) for cache-busting purposes (this is the default value)\u003C\u002Fli>\n\u003Cli>removing the version parameter for optimization purposes\u003C\u002Fli>\n\u003Cli>option to disable modifying the url without disabling the plugin\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>The author have dealt with issues when the server is running ATS, Varnish or similar cache utility that the author has no control over. Sometimes cache files stick around for a while and users have no control over caching applications. If you want your css, javascript, image or other asset updates to be reflected instantly, this is the perfect solution for you.\u003C\u002Fp>\n\u003Cp>The plugin has been tested extensively with WP_DEBUG enabled and works seamlessly with multi-site network setup.\u003C\u002Fp>\n\u003Cp>For questions, suggestions or issues with this plugin, visit the plugin support page or contact me at wp [dot] joesat [at] gmail [dot ]com.\u003C\u002Fp>\n","Removes or modifies the version (query string 'ver' parameter) in media resources' url.",3527,4,"2016-07-31T00:04:00.000Z","4.5.33","3.9.3",[116,20,117,118,119],"optimization","remove-query-string","remove-version","version","https:\u002F\u002Fwordpress.org\u002Fplugins\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-version-in-query-string-modifier.1.0.0.7.zip",{"slug":123,"name":124,"version":125,"author":126,"author_profile":127,"description":128,"short_description":129,"active_installs":13,"downloaded":130,"rating":13,"num_ratings":13,"last_updated":131,"tested_up_to":71,"requires_at_least":132,"requires_php":133,"tags":134,"homepage":23,"download_link":139,"security_score":46,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"mdi-persist-query-string","MDI Persist Query String","1.0.0","Medium Interactive","https:\u002F\u002Fprofiles.wordpress.org\u002Fmediuminteractive\u002F","\u003Cp>MDI Persist Query String automatically captures and persists specific URL parameters (like UTM tags and campaign data) across multiple page visits. This is essential for accurate marketing attribution and analytics tracking.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Persistent UTM Parameters for Accurate Marketing Attribution\u003C\u002Fstrong>\u003Cbr \u002F>\nAre You Missing Attribution On Your Marketing Campaigns?\u003Cbr \u002F>\nYou launch an ad campaign, post on social media, send an email blast, or invest in a press release. Traffic starts coming in—but when you look at your analytics or CRM, attribution is incomplete or missing altogether. Visitors arrive on your site with UTM parameters in the URL, click to another page, fill out a form, and the original source data disappears. This leads to unclear reporting, unreliable conversion data, and marketing decisions based on guesses instead of facts. This plugin solves that problem.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>What This Plugin Does\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Cstrong>Persistent UTM Parameters\u003C\u002Fstrong> ensures that UTM parameters—and other query parameters you define—persist as users navigate your website.\u003Cbr \u002F>\nIf a visitor arrives on your site with tracking parameters in the URL, those parameters are automatically carried forward as they move from page to page. When the visitor eventually submits a form, requests a quote, or reaches a key conversion point, the original attribution data is still intact.\u003Cbr \u002F>\nThis allows you to correctly attribute form submissions, lead sources, campaign performance, content engagement, and conversions with confidence.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Why This Matters\u003C\u002Fstrong>\u003Cbr \u002F>\nWithout persistent parameters, attribution is often lost after the first page view, forms submit without source data, analytics platforms misclassify traffic, and even high-cost campaigns can appear ineffective.\u003Cbr \u002F>\nWith persistent parameters in place, source, medium, and campaign data remain accurate throughout the user journey. Marketing ROI becomes measurable, CRM records receive clean attribution data, and analytics reflect how users actually discover, engage with, and convert on your site.\u003Cbr \u002F>\nThis is especially important for marketing teams, agencies, lead-generation websites, SaaS companies, service businesses, and anyone who relies on accurate attribution to make informed decisions.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Fully Customizable Parameter Support\u003C\u002Fstrong>\u003Cbr \u002F>\nWhile UTMs are the most common use case, this plugin is not limited to them. You can choose which query parameters should persist, include custom parameters beyond standard UTMs, and adapt the plugin to your existing analytics, CRM, or form setup. This flexibility supports advanced marketing stacks, custom tracking needs, and non-standard attribution models.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Simple Setup — Expert Help Available\u003C\u002Fstrong>\u003Cbr \u002F>\nThe plugin is designed to work out of the box with minimal configuration. For more advanced setups—such as passing parameters into specific form fields, CRMs, or analytics platforms—expert help is available to ensure everything is configured correctly.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>GET SUPPORT\u003C\u002Fstrong>\u003Cbr \u002F>\n\u003Ca href=\"https:\u002F\u002Fmediuminteractive.com\u002Fcontact\" rel=\"nofollow ugc\">https:\u002F\u002Fmediuminteractive.com\u002Fcontact\u003C\u002Fa>\u003C\u002Fp>\n","Persist query string parameters across page visits for tracking and analytics purposes.",129,"2026-02-11T15:48:00.000Z","5.5","7.0",[135,136,20,137,138],"analytics","marketing","tracking","utm","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmdi-persist-query-string.1.0.0.zip",{"attackSurface":141,"codeSignals":165,"taintFlows":173,"riskAssessment":174,"analyzedAt":182},{"hooks":142,"ajaxHandlers":157,"restRoutes":158,"shortcodes":159,"cronEvents":164,"entryPointCount":57,"unprotectedCount":13},[143,149,155],{"type":144,"name":145,"callback":146,"priority":11,"file":147,"line":148},"filter","plugin_row_meta","wpp_tron_iframe_plugin_row_meta","row_meta.php",38,{"type":150,"name":151,"callback":152,"file":153,"line":154},"action","wp_enqueue_scripts","wpp_tron_iframe_plus_admin_load_js","wp_enqueue_scripts.php",29,{"type":150,"name":156,"callback":152,"file":153,"line":32},"admin_enqueue_scripts",[],[],[160],{"tag":161,"callback":161,"file":162,"line":163},"iframex","_.iframex.php",96,[],{"dangerousFunctions":166,"sqlUsage":167,"outputEscaping":169,"fileOperations":13,"externalRequests":13,"nonceChecks":13,"capabilityChecks":13,"bundledLibraries":172},[],{"prepared":13,"raw":13,"locations":168},[],{"escaped":170,"rawEcho":13,"locations":171},3,[],[],[],{"summary":175,"deductions":176},"The \"iframe-plus-get-parameters\" plugin v1.0.2 exhibits a generally strong security posture based on the provided static analysis and vulnerability history. The code demonstrates good practices by utilizing prepared statements for all SQL queries and properly escaping all identified output.  Crucially, there are no critical or high severity taint flows, and the absence of dangerous function calls, file operations, and external HTTP requests further reduces the attack surface. The plugin also has a clean vulnerability history with no recorded CVEs, suggesting consistent security development and maintenance.\n\nDespite the positive findings, a minor concern arises from the lack of explicit nonce checks and capability checks on its single shortcode entry point. While the static analysis did not detect any unsanitized paths or unprotected entry points, the absence of these standard WordPress security mechanisms for shortcodes means that, in certain contexts or if the shortcode's functionality were to change, it could potentially be susceptible to CSRF attacks if it performs sensitive actions.  However, given the limited attack surface (only one shortcode) and the lack of detected dangerous functions, the immediate risk is assessed as low. Overall, the plugin is secure in its current state, but implementing nonce and capability checks on the shortcode would further enhance its resilience against potential future threats.",[177,180],{"reason":178,"points":179},"Missing nonce checks",5,{"reason":181,"points":179},"Missing capability checks","2026-03-17T01:40:45.729Z",{"wat":184,"direct":191},{"assetPaths":185,"generatorPatterns":187,"scriptPaths":188,"versionParams":189},[186],"\u002Fwp-content\u002Fplugins\u002Fiframe-plus-get-parameters\u002Fassets\u002Fjs\u002Fwpp.js",[],[186],[190],"iframe-plus-get-parameters\u002Fasets\u002Fjs\u002Fwpp.js?ver=1.0.0",{"cssClasses":192,"htmlComments":193,"htmlAttributes":194,"restEndpoints":197,"jsGlobals":198,"shortcodeOutput":200},[],[],[195,196],"name='myIframe'","id='myIframe'",[],[199],"jQuery",[201,202,203,204,205,206,207],"\u003Ciframe src='","' name='myIframe' id='myIframe' width='","' height='","' frameborder='","' scrolling='","' style='height:100%;' \u002F>\u003C\u002Fiframe>","\u003Cscript src='\u002Fwp-content\u002Fplugins\u002Fiframe-plus-get-parameters\u002Fassets\u002Fjs\u002Fwpp.js'>\u003C\u002Fscript>"]