[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fmR4CYsP0R8UHBLCYSs7YC4RdxHttwavxb2F-fiR9fpU":3},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":5,"active_installs":10,"downloaded":11,"rating":12,"num_ratings":12,"last_updated":13,"tested_up_to":14,"requires_at_least":15,"requires_php":16,"tags":17,"homepage":20,"download_link":21,"security_score":22,"vuln_count":12,"unpatched_count":12,"last_vuln_date":23,"fetched_at":24,"vulnerabilities":25,"developer":26,"crawl_stats":23,"alternatives":31,"analysis":130,"fingerprints":252},"clear-cloudfront-cache","Clear CloudFront Cache","1.0.0","yamaimo","https:\u002F\u002Fprofiles.wordpress.org\u002Fkinocchi\u002F","\u003Cp>It is a plugin that can easily delete the CloudFront cache.\u003Cbr \u002F>\nSetting is easy with only 2 steps.\u003Cbr \u002F>\n* Configure IAM\u003Cbr \u002F>\n* Set a CloudFront distribution ID for this plugin\u003C\u002Fp>\n\u003Ch3>Arbitrary section 1\u003C\u002Fh3>\n",30,862,0,"2023-04-01T02:48:00.000Z","6.1.10","6.1.1","7.0",[18,19],"aws","cloudfront","","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fclear-cloudfront-cache.zip",85,null,"2026-03-15T15:16:48.613Z",[],{"slug":27,"display_name":7,"profile_url":8,"plugin_count":28,"total_installs":10,"avg_security_score":22,"avg_patch_time_days":10,"trust_score":29,"computed_at":30},"kinocchi",1,84,"2026-04-05T02:46:15.814Z",[32,53,74,90,112],{"slug":33,"name":34,"version":35,"author":36,"author_profile":37,"description":38,"short_description":39,"active_installs":40,"downloaded":41,"rating":42,"num_ratings":43,"last_updated":44,"tested_up_to":45,"requires_at_least":46,"requires_php":47,"tags":48,"homepage":50,"download_link":51,"security_score":52,"vuln_count":12,"unpatched_count":12,"last_vuln_date":23,"fetched_at":24},"c3-cloudfront-clear-cache","C3 Cloudfront Cache Controller","7.3.1","hide","https:\u002F\u002Fprofiles.wordpress.org\u002Fhideokamoto\u002F","\u003Cp>This is simple plugin that clear all cloudfront cache if you publish posts.\u003Cbr \u002F>\nYou can easy use CloudFront in front of WordPress.\u003C\u002Fp>\n\u003Ch3>Fixtures\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\n\u003Cp>wp_is_mobile()\u003Cbr \u002F>\nCheck device viewer type by CloudFront header.\u003Cbr \u002F>\nNow supports \u003Ccode>HTTP_CLOUDFRONT_IS_MOBILE_VIEWER\u003C\u002Fcode> and \u003Ccode>HTTP_CLOUDFRONT_IS_TABLET_VIEWER\u003C\u002Fcode>.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>preview url\u003Cbr \u002F>\nIn preview page, plugin add \u003Ccode>post_date\u003C\u002Fcode> query to avoid CloudFront cache.\u003Cbr \u002F>\nAnd set \u003Ccode>wordpress_loginuser_last_visit\u003C\u002Fcode> cookie for avoid CloudFront cache too.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>The \u003Ccode>wordpress_loginuser_last_visit\u003C\u002Fcode> cookie will be removed if user sign out.\u003C\u002Fp>\n\u003Ch4>Invalidation(Clear Cache) Page URL\u003C\u002Fh4>\n\u003Cp>This plugin send following page url to CloudFront Invalidation API.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>TOP page URL\u003C\u002Fli>\n\u003Cli>Published Post Page URL\u003C\u002Fli>\n\u003Cli>Category Archive Page URL\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>AWS IAM Policy Example\u003C\u002Fh3>\n\u003Cpre>\u003Ccode>{\n    \"Version\": \"2012-10-17\",\n    \"Statement\": [\n        {\n            \"Action\": [\n                \"cloudfront:GetDistribution\",\n                \"cloudfront:ListInvalidations\",\n                \"cloudfront:GetStreamingDistribution\",\n                \"cloudfront:GetDistributionConfig\",\n                \"cloudfront:GetInvalidation\",\n                \"cloudfront:CreateInvalidation\"\n            ],\n            \"Effect\": \"Allow\",\n            \"Resource\": \"*\"\n        }\n    ]\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Note:\u003C\u002Fstrong> The \u003Ccode>cloudfront:GetInvalidation\u003C\u002Fcode> permission is required for viewing detailed invalidation information. If this permission is not granted, the detail view feature will be disabled gracefully without affecting other plugin functionality.\u003C\u002Fp>\n\u003Ch3>Adding your configuration through env vars\u003C\u002Fh3>\n\u003Cp>The plugin can be configured by defining the following variables:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>AWS_ACCESS_KEY_ID\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>AWS_SECRET_ACCESS_KEY\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>C3_DISTRIBUTION_ID\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>You can put these variables like the code into the wp-config.php\u003C\u002Fp>\n\u003Cpre>\u003Ccode>php\ndefine( 'AWS_ACCESS_KEY_ID', '' );\ndefine( 'AWS_SECRET_ACCESS_KEY', '' );\ndefine( 'C3_DISTRIBUTION_ID', '' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch3>Cookie\u003C\u002Fh3>\n\u003Cp>This plugin set a Cookie named \u003Ccode>wordpress_loginuser_last_visit\u003C\u002Fcode> to the user.\u003Cbr \u002F>\nIt prevents CDN caching when the user is previewing his posts or contents.\u003Cbr \u002F>\nOnce logging out from Dashboard, plugin removes this cookie from user.\u003C\u002Fp>\n\u003Ch3>7.1.0\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Feature] Add invalidation detail view with modal popup showing invalidation paths, caller reference, and status\u003C\u002Fli>\n\u003Cli>[Fix] Fix invalid path returned for post type without archive page\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>7.0.1\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Update] Improved AWS API call processing for better security and PHP 8.x compatibility\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>7.0.0\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Breaking Change] Remove AWS SDK dependency and implement custom HTTP CloudFront API client\u003C\u002Fli>\n\u003Cli>[Update] Add comprehensive invalidation logging with c3_log_invalidation_list filter\u003C\u002Fli>\n\u003Cli>[Update] Add configurable CloudFront region and HTTP timeout settings\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>6.1.6\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Fix] Fixed PHP 8 syntax errors by adding nullable type hints\u003C\u002Fli>\n\u003Cli>[Fix] Fixed deprecation warnings about creation of dynamic properties in Invalidation_Service.php\u003C\u002Fli>\n\u003Cli>[Fix] Fixed deprecation warnings about creation of dynamic properties in Cron_Service.php\u003C\u002Fli>\n\u003Cli>[Fix] Fixed PHP 7.4 syntax errors in test files\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>6.1.5\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Fix] Changed to install the AWS SDK using composer instead of aws.phar.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>6.1.4\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Update] Support post_type_archive_link\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>6.1.3\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Fix] Lost filter c3_invalidation_items From v6.0.0\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>6.1.2\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Fix] php version compare issue\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>6.1.1\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Fix] Plugin deactivation issue\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>6.1.0\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Update] Flush cache by post_ids\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>6.0.0\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Breaking Change] Re-write entire code\u003C\u002Fli>\n\u003Cli>[Update] Add \u003Ccode>c3_log_cron_invalidation_task\u003C\u002Fcode> filter to show cron job Logs\u003C\u002Fli>\n\u003Cli>[Update] Add \u003Ccode>c3_aws_sdk_path\u003C\u002Fcode> filter to change or remove bundled AWS SDK path\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>5.5.1\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Update] Replace the top level menu with a Settings submenu\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.5.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Update] Can use defined variables for AWS Credentials\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.4.2\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Bug fix] Set cookie path in preview page\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.4.1\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Bug fix] Undefined Paths index in invalidation query cron event\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.4.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Update] Update preview fix plugin\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.3.4\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Bug fix] Small bug fix\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.3.3\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Change SDK] replace sdk\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.3.2\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Bug fix] Use EC2 role if using as AMIMOTO Managed hosting\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.3.1\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Add filter] Can select AWS SDK version by filter\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.3.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Update SDK] Use AWS SDK v3 when you using php 5.6 or later\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.2.1\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[For AMIMOTO Managed] bug fix to run by WP-CLI\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.2.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Add filter] We can disable to register wp-cron that retry request invalidation.\u003C\u002Fli>\n\u003Cli>[Readme] Update readme to see IAM Policy example.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.1.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>[Update preview fixture] Set cookie to avoid CloudFront cache if user sign in\u003C\u002Fli>\n\u003Cli>[Update preview fixture] Unset cookie for avoide CloudFront cache if user sign out\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>5.0.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Support CloudFront viewer params on \u003Ccode>wp_is_mobile()\u003C\u002Fcode>.(4.9.0 or later)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>4.4.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Fix small bug\u003C\u002Fli>\n\u003Cli>Add some feature for AMIMOTO Managed hosting user\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>4.3.1\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Fix cron interval\u003C\u002Fli>\n\u003Cli>add filters \u003Ccode>'c3_invalidation_interval\u003C\u002Fcode>, \u003Ccode>c3_invalidation_cron_interval\u003C\u002Fcode>, \u003Ccode>c3_invalidation_item_limits\u003C\u002Fcode>.\u003C\u002Fli>\n\u003Cli>update default invalidation interval & items.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>4.3.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Schedule cron event if you published many post at the same time\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>4.2.1\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Fix ‘c3_credential’ filter position\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>4.2.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Support AMIMOT Dashboard\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>4.1.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Show Invalidation Logs\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>4.0.3\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Auto Deploy by Travis\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>4.0.2\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Add WP-CLI param check ( wp c3 flush)\u003C\u002Fli>\n\u003Cli>change transient_key\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>4.0.1\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Bug fix ( conflict Nephila Clavata )\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>4.0.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Support AWS SDK Version3\u003C\u002Fli>\n\u003Cli>Remove action hook -> ‘c3_add_setting_before’\u003Cbr \u002F>\nuse ‘c3_after_title’ filter hook instead.\u003C\u002Fli>\n\u003Cli>Remove action hook -> ‘c3_add_setting_after’\u003Cbr \u002F>\nuse ‘c3_after_auth_form’ filter hook instead.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>3.0.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Include CF Preview Fix plugin\u003C\u002Fli>\n\u003Cli>Rename\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.4.3\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Fix Catch Exception BUG\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.4.2\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Fix CLI BUG\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.4.1\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Fix CLI BUG\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.4.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Add WP-CLI Command ( Update Settings )\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.3.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Add WP-CLI Command\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.2.2\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Force Invalidation\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.2.1\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Fix Typo\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.2.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Add Filter for using EC2 Instance Role.\u003C\u002Fli>\n\u003Cli>Translationable in t.w.org\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.1.1\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Fix too many invalidation url error.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.1.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Add hook to customize invalidation URL\u003C\u002Fli>\n\u003Cli>support new invalidation url, terms.\u003C\u002Fli>\n\u003Cli>Manualy invalidation button added\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.0.2\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Change AWS SDK\u003C\u002Fli>\n\u003Cli>code refactoring by wokamoto\u003C\u002Fli>\n\u003Cli>Invalidation URL\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>2.0.1\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Change AWS SDK\u003C\u002Fli>\n\u003Cli>code refactoring by wokamoto\u003C\u002Fli>\n\u003Cli>Invalidation URL\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>1.0\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Initial released.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>6.1.0\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>[Fix] Plugin deactivation issue\u003C\u002Fli>\n\u003C\u002Ful>\n","This is simple plugin that clear all cloudfront cache if you publish posts.",3000,272378,86,3,"2026-02-18T06:51:00.000Z","6.8.5","4.9.0","7.4",[18,49,19],"cdn","https:\u002F\u002Fgithub.com\u002Famimoto-ami\u002Fc3-cloudfront-clear-cache","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fc3-cloudfront-clear-cache.7.3.1.zip",100,{"slug":54,"name":55,"version":56,"author":57,"author_profile":58,"description":59,"short_description":60,"active_installs":61,"downloaded":62,"rating":63,"num_ratings":64,"last_updated":65,"tested_up_to":66,"requires_at_least":67,"requires_php":47,"tags":68,"homepage":71,"download_link":72,"security_score":52,"vuln_count":28,"unpatched_count":12,"last_vuln_date":73,"fetched_at":24},"aws-cdn-by-wpadmin","WPAdmin AWS CDN","4.0.1","luckychingi","https:\u002F\u002Fprofiles.wordpress.org\u002Fluckychingi\u002F","\u003Cp>The new & improved Amazon Cloudfront Distribution Plugin by WPAdmin. Setup Amazon Cloudfront CDN for your website. Now with intuitive layout and more flexibility. The new & improved Amazon Cloudfront Distribution Plugin by WPAdmin. Setup Amazon Cloudfront CDN for your website. Now with intuitive layout and more flexibility. Also supports WordPress Multisite installation (not tested though).\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Key Features:\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>One-click distribution creation\u003C\u002Fstrong> – Create CloudFront distributions directly from WordPress\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Full CDN settings control\u003C\u002Fstrong> – Configure cache policy, TLS version, price class, and compression\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Custom domain support\u003C\u002Fstrong> – Use your own CDN domain (e.g., cdn.yoursite.com)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>SSL certificate management\u003C\u002Fstrong> – Request free SSL certificates from AWS Certificate Manager\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Smart URL rewriting\u003C\u002Fstrong> – Automatically rewrites media, CSS, and JS URLs to use CloudFront\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Granular exclusions\u003C\u002Fstrong> – Exclude specific pages and assets containing certain keywords\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Sub-folder & sub-domain support\u003C\u002Fstrong> – Works with all WordPress installation types\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Cache invalidation\u003C\u002Fstrong> – Purge CloudFront cache directly from WordPress\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Enable\u002Fdisable toggle\u003C\u002Fstrong> – Instantly switch CDN on or off without losing settings\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Built-in documentation\u003C\u002Fstrong> – Comprehensive how-it-works guide and FAQ\u003C\u002Fli>\n\u003C\u002Ful>\n","Setup Amazon Cloudfront CDN for your website. Now with intuitive layout and more flexibility.",500,90059,94,53,"2026-02-12T14:21:00.000Z","6.9.4","5.6",[69,18,49,19,70],"amazon","free","https:\u002F\u002Fwpadmin.ca\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Faws-cdn-by-wpadmin.4.0.1.zip","2023-07-11 00:00:00",{"slug":75,"name":76,"version":77,"author":78,"author_profile":79,"description":80,"short_description":81,"active_installs":12,"downloaded":82,"rating":12,"num_ratings":12,"last_updated":83,"tested_up_to":66,"requires_at_least":84,"requires_php":85,"tags":86,"homepage":88,"download_link":89,"security_score":52,"vuln_count":12,"unpatched_count":12,"last_vuln_date":23,"fetched_at":24},"frontpup","FrontPup","1.3.1","Painless Analytics","https:\u002F\u002Fprofiles.wordpress.org\u002Fpainlessanalytics\u002F","\u003Cp>Welcome to FrontPup, your CloudFront companion.\u003C\u002Fp>\n\u003Cp>FrontPup allows you to maximize your WordPress website using the AWS CloudFront Content Delivery Network (CDN).\u003C\u002Fp>\n\u003Ch3>REQUIREMENTS\u003C\u002Fh3>\n\u003Cp>You \u003Cstrong>must\u003C\u002Fstrong> be using the Amazon Web Services (AWS) \u003Ca href=\"https:\u002F\u002Faws.amazon.com\u002Fcloudfront\u002F\" rel=\"nofollow ugc\">CloudFront\u003C\u002Fa> service to utilize this plugin.\u003C\u002Fp>\n\u003Ch3>FrontPup Features\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Non-intrusive Clear Cache (new) admin bar menu option, now you can clear the cache in any view without impacting other work.\u003C\u002Fli>\n\u003Cli>Clear CloudFront Cache (creates an Invalidation request)\u003C\u002Fli>\n\u003Cli>Set no-cache headers for all pages (great for development or testing)\u003C\u002Fli>\n\u003Cli>Set public and private Cache-Control headers for caching in CloudFront and Browsers\u003C\u002Fli>\n\u003Cli>Set separate max-age (browser) and s-maxage (CloudFront) cache duration values\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Non-intrusive Clear Cache (new)\u003C\u002Fh3>\n\u003Cp>The Non-intrusive Clear Cache admin bar menu option can clear your cache in any view without causing any disruption to your work. The \u003Cem>Clear CloudFront Cache\u003C\u002Fem> option is found under the “FrontPup” menu. Requests are performed behind the scenes. The returned status is added to the menu bar as an italics message in the menu. Feedback is reported with the icon to the left of the FrontPup menu option.\u003C\u002Fp>\n\u003Ch3>Turbocharge your WordPress Website with CloudFront\u003C\u002Fh3>\n\u003Cp>Using Amazon CloudFront in front of your WordPress website offers significant benefits by improving performance, security, and scalability. CloudFront is a Delivery Network (CDN) with over 750+ Points of Presence (PoPs) around the world plus over 1,100 PoPs within ISP networks. This highly optimized network makes it \u003Cem>extremely efficient\u003C\u002Fem> at delivering your website to your visitors anywhere around the world. “PoP” locations are designed to reduce latency by caching content closer to your site’s visitors.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Performance\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Faster Loading Times\u003C\u002Fstrong>, static content (pages, images, CSS, JavaScript) is cached at “edge locations” around the world\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Improved User Experience\u003C\u002Fstrong>, Faster load times lead to higher user engagement, reduced bounce rates, and improved search engine optimization (SEO) rankings\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Reduced Server Load\u003C\u002Fstrong>, by serving cached content from edge locations, CloudFront minimizes requests to your WordPress website\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>When your website is optimized for performance your \u003Ca href=\"https:\u002F\u002Fpagespeed.web.dev\u002F\" rel=\"nofollow ugc\">PageSpeed Lighthouse scores\u003C\u002Fa> should improve.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Enhanced Security\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>DDoS Protection\u003C\u002Fstrong>, includes AWS Shield Standard\u003C\u002Fli>\n\u003Cli>\u003Cstrong>SSL\u002FTLS Security\u003C\u002Fstrong>, force https only and includes free SSL Certificates\u003C\u002Fli>\n\u003Cli>\u003Cstrong>AWS WAF\u003C\u002Fstrong>, a Web Application Firewall with a depth of options including specific WordPress protections (may incur additional costs)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>You should achieve a grade of “A” on \u003Ca href=\"https:\u002F\u002Fwww.ssllabs.com\u002Fssltest\u002F\" rel=\"nofollow ugc\">Qualys SSL Server Test\u003C\u002Fa> when CloudFront is configured with the recommended TLSv1.2_2021 or newer security policy.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Scalability and Reliability\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Global Reach\u003C\u002Fstrong> with over 750 PoPs plus over 1,100 PoPs within ISP networks\u003C\u002Fli>\n\u003Cli>\u003Cstrong>High Availability\u003C\u002Fstrong>, can serve cached content when site is down\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Cost Efficiency\u003C\u002Fstrong>, can be cost-effective, especially for websites with high traffic with the new \u003Ca href=\"https:\u002F\u002Fdocs.aws.amazon.com\u002FAmazonCloudFront\u002Flatest\u002FDeveloperGuide\u002Fflat-rate-pricing-plan.html\" rel=\"nofollow ugc\">CloudFront flat-rate pricing plans\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Technology\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>IPv6\u003C\u002Fstrong>, a superior protocol to IPv4 and in some regions of the world is the only protocol that is available\u003C\u002Fli>\n\u003Cli>\u003Cstrong>HTTP\u002F2 and HTTP\u002F3\u003C\u002Fstrong> improve web performance through faster loading speeds, enhanced security, and better resource handling\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Gzip and Brotli compression\u003C\u002Fstrong>, smaller file sizes improve application performance by delivering your content faster to visitors\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Multi-Proxy\u003C\u002Fstrong>, route specific path patterns to other web applications easily by adding additional “Origins”, allowing you to host more than just WordPress with the same hostname\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Learn more about \u003Ca href=\"https:\u002F\u002Faws.amazon.com\u002Fcloudfront\u002F\" rel=\"nofollow ugc\">AWS CloudFront\u003C\u002Fa>.\u003C\u002Fp>\n\u003Ch3>Developed by an AWS Community Builder\u003C\u002Fh3>\n\u003Cp>FrontPup is developed and maintained by \u003Ca href=\"https:\u002F\u002Fangelo.mandato.com\" rel=\"nofollow ugc\">Angelo Mandato\u003C\u002Fa>, an \u003Ca href=\"https:\u002F\u002Fbuilder.aws.com\u002Fcommunity\u002F@angelomandato\" rel=\"nofollow ugc\">AWS Community Builder\u003C\u002Fa>. Angelo has been developing WordPress plugins and themes since 2005 and has been architecting applications including WordPress hosted on Amazon Web Services since 2007.\u003C\u002Fp>\n","Your AWS CloudFront companion. Clear cache and optimize your CloudFront distribution for your WordPress website",255,"2026-03-07T04:10:00.000Z","6.0","8.1",[69,18,49,19,87],"lightsail","https:\u002F\u002Fwww.painlessanalytics.com\u002Ffrontpup-cloudfront-wordpress-plugin\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffrontpup.1.3.1.zip",{"slug":91,"name":92,"version":93,"author":94,"author_profile":95,"description":96,"short_description":97,"active_installs":98,"downloaded":99,"rating":100,"num_ratings":101,"last_updated":102,"tested_up_to":66,"requires_at_least":103,"requires_php":103,"tags":104,"homepage":110,"download_link":111,"security_score":52,"vuln_count":12,"unpatched_count":12,"last_vuln_date":23,"fetched_at":24},"gosmtp","GoSMTP – SMTP for WordPress","1.1.9","Softaculous","https:\u002F\u002Fprofiles.wordpress.org\u002Fsoftaculous\u002F","\u003Cp>GoSMTP allows you to send emails from your WordPress over SMTP or many of the popular email sending services. Many web hosting companies have strict mail sending rules and limitations which restrict email deliverability. With GoSMTP, you will not be using your hosting providers PHP email but rather sending emails over SMTP or using API’s of various email providers.\u003C\u002Fp>\n\u003Cp>GoSMTP supports many of your preferred SMTP provider(s) :\u003Cbr \u002F>\n1) SMTP.com\u003Cbr \u002F>\n2) Sendinblue\u003Cbr \u002F>\n3) Mailgun\u003Cbr \u002F>\n4) Sendgrid\u003Cbr \u002F>\n5) Sparkpost\u003Cbr \u002F>\n6) Sendlayer\u003Cbr \u002F>\n7) Postmark\u003Cbr \u002F>\n8) Maileroo\u003Cbr \u002F>\n9) ElasticEmail (Pro)\u003Cbr \u002F>\n10) SMTP2Go (Pro)\u003Cbr \u002F>\n11) Gmail, Gsuite, Google Workspace (Pro)\u003Cbr \u002F>\n12) Outlook \u002F Office 365 (Pro)\u003Cbr \u002F>\n13) AWS (Pro)\u003Cbr \u002F>\n14) Zoho (Pro)\u003Cbr \u002F>\n15) Resend (Pro)\u003Cbr \u002F>\n16) MailerSend (Pro)\u003Cbr \u002F>\n17) Or any custom SMTP provider\u003C\u002Fp>\n\u003Cp>WordPress uses the PHP mail function to send emails generated by WordPress. The PHP mail function sends emails over the IP of your hosting provider’s servers which can have a bad reputation and be blacklisted by many email providers like Gmail, Yahoo, Office 365, Zoho, etc. causing your WordPress originated emails to land in the SPAM folder of your users. By using GoSMTP you ensure that your emails reach the inbox of your user(s).\u003C\u002Fp>\n\u003Cp>You can find our \u003Ca href=\"https:\u002F\u002Fgosmtp.net\u002Fdocs\" rel=\"nofollow ugc\">official documentation\u003C\u002Fa> on our Website \u003Ca href=\"https:\u002F\u002Fgosmtp.net\u002F\" rel=\"nofollow ugc\">GoSMTP.net\u003C\u002Fa> We are also active in our community support forums on wordpress.org if you are one of our free users. Our Premium Support Ticket System is at \u003Ca href=\"https:\u002F\u002Fsoftaculous.deskuss.com\u002Fopen.php?topicId=17\" rel=\"nofollow ugc\">https:\u002F\u002Fsoftaculous.deskuss.com\u002Fopen.php?topicId=17\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fgosmtp.net\" title=\"GoSMTP Homepage\" rel=\"nofollow ugc\">Home Page\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fsoftaculous.deskuss.com\u002Fopen.php?topicId=17\" title=\"GoSMTP Support\" rel=\"nofollow ugc\">Support\u003C\u002Fa> | \u003Ca href=\"http:\u002F\u002Fgosmtp.net\u002Fdocs\" title=\"Documents\" rel=\"nofollow ugc\">Documents\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>GoSMTP PRO\u003C\u002Fh3>\n\u003Cp>GoSMTP Pro has many other powerful features and services. \u003Ca href=\"https:\u002F\u002Fgosmtp.net\u002Fpricing\" title=\"Pricing\" rel=\"nofollow ugc\">Click here to purchase now !\u003C\u002Fa> :\u003C\u002Fp>\n\u003Ch3>Email Logs\u003C\u002Fh3>\n\u003Cp>With Email Logging you view all emails sent from your site. This is necessary to keep email records and for auditing outgoing emails. Its also helpful to debug any outgoing email issues.\u003C\u002Fp>\n\u003Ch3>Resend Emails\u003C\u002Fh3>\n\u003Cp>You can resend any email, from the email log wizard. You can also resend multiple emails in bulk.\u003C\u002Fp>\n\u003Ch3>Notifications\u003C\u002Fh3>\n\u003Cp>You can get notified about failed email delivery on your configured channel, we currently support Mail, Slack and Discord.\u003C\u002Fp>\n\u003Ch3>Premium Features\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Forward Emails\u003C\u002Fli>\n\u003Cli>Email Reports\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Coming Soon\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Track Email Views\u003C\u002Fli>\n\u003Cli>Track Clicks\u003C\u002Fli>\n\u003Cli>Print Emails\u003C\u002Fli>\n\u003Cli>Multi Email Provider Support\u003C\u002Fli>\n\u003Cli>Multisite Support\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Credits\u003C\u002Fh3>\n\u003Cp>GoSMTP’s Mailer API connecters are derived from Fluent SMTP \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Ffluent-smtp\u002F\" rel=\"ugc\">https:\u002F\u002Fwordpress.org\u002Fplugins\u002Ffluent-smtp\u002F\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>How to install GoSMTP\u003C\u002Fh3>\n\u003Cp>Go To your WordPress install -> Plugins -> Add New Button -> In Search Box search For GoSMTP -> Click on Install.\u003C\u002Fp>\n","Send emails from your WordPress site using your preferred SMTP provider like Gmail, Outlook, AWS, Zoho, SMTP.com, Brevo (formerly Sendinblue), Mailgun &hellip;",500000,2092314,82,8,"2026-02-25T13:01:00.000Z","5.5",[105,106,107,108,109],"aws-smtp","gmail-smtp","sendgrid-smtp","smtp","wordpress-smtp","https:\u002F\u002Fgosmtp.net","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fgosmtp.1.1.9.zip",{"slug":113,"name":114,"version":115,"author":116,"author_profile":117,"description":118,"short_description":119,"active_installs":40,"downloaded":120,"rating":29,"num_ratings":121,"last_updated":122,"tested_up_to":45,"requires_at_least":123,"requires_php":124,"tags":125,"homepage":127,"download_link":128,"security_score":63,"vuln_count":43,"unpatched_count":12,"last_vuln_date":129,"fetched_at":24},"smtp-amazon-ses","SMTP for Amazon SES – YaySMTP","1.9.1","YayCommerce","https:\u002F\u002Fprofiles.wordpress.org\u002Fyaycommerce\u002F","\u003Cp>\u003Cstrong>Send WordPress emails through Amazon SES server using YaySMTP\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Amazon Simple Email Service (SES)\u003C\u002Fstrong> is a versatile mail service provider. It is a powerhouse for sending emails, but tapping into its full potential within WordPress can be tricky… until now!\u003C\u002Fp>\n\u003Cp>Introducing YaySMTP, your seamless bridge between \u003Cstrong>Amazon SES and WordPress\u003C\u002Fstrong> for turbocharged email delivery.\u003C\u002Fp>\n\u003Cp>It costs nothing to connect with AWS \u002F Amazon SES.\u003C\u002Fp>\n\u003Cp>YaySMTP for WP SES comes without baffling configuration options. Any WordPress beginner can set it up successfully.\u003C\u002Fp>\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\u002FsiEe9YyPg6k?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>Moreover, this WP SES plugin provides advanced options that you can’t find in other Amazon SES SMTP free plugins.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>Easy to set up\u003C\u002Fstrong>: Clear interface and simple user experience. \u003C\u002Fli>\n\u003Cli>\u003Cstrong>Boosted deliverability\u003C\u002Fstrong>: Experience lightning-fast email sending and enhanced reliability—no more frustrating delays.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Email log\u003C\u002Fstrong>: Set time frame for auto-delete, show\u002Fhide columns.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Email actions\u003C\u002Fstrong>: Display, search, view, and delete emails easily.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Send test email\u003C\u002Fstrong>: One click to send an email for testing.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Compact UI\u003C\u002Fstrong>: Do everything without leaving the page or browser tab.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Detailed tracking\u003C\u002Fstrong>: Monitor email performance like a pro with comprehensive analytics and insights into opens, clicks, senders, etc.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Export\u002FImport\u003C\u002Fstrong>: Quickly export your CSV files to reserve the email sending history.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>⚡️ HOW IT WORKS\u003C\u002Fh3>\n\u003Cp>YaySMTP plugin makes Amazon SES server and your WordPress site become friends very quickly.\u003C\u002Fp>\n\u003Cp>To enable SES SMTP for your WordPress emails, you will need to register an \u003Ca href=\"https:\u002F\u002Fportal.aws.amazon.com\u002Fbilling\u002Fsignup#\u002Fstart\" rel=\"nofollow ugc\">AWS account\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>Amazon’s SMTP service provider offers an affordable Pay-as-you-go plan, if not the best and cheapest.\u003C\u002Fp>\n\u003Cp>The configuration process is easy. Just follow our \u003Ca href=\"https:\u002F\u002Fyaycommerce.gitbook.io\u002Fyaysmtp\u002Fhow-to-set-up-smtps\u002Fhow-to-connect-amazon-ses\" rel=\"nofollow ugc\">WP SES documentation\u003C\u002Fa>, and it takes you only a few minutes.\u003C\u002Fp>\n\u003Cp>If you want hands-free setup support, just buy \u003Ca href=\"https:\u002F\u002Fyaycommerce.com\u002Fyaysmtp-wordpress-mail-smtp\u002F\" rel=\"nofollow ugc\">YaySMTP\u003C\u002Fa> and let us handle all the config. Our team is always ready to help you unleash the full power of WordPress SMTP and Amazon SES.\u003C\u002Fp>\n\u003Ch3>🎏 Supported Themes and Plugins\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>Complete compatibility with all themes, page builders, and major plugins.\u003C\u002Fli>\n\u003Cli>Perfect with \u003Ca href=\"https:\u002F\u002Fyaycommerce.com\u002Fyaymail-woocommerce-email-customizer\u002F\" rel=\"nofollow ugc\">YayMail – WooCommerce Email Customizer\u003C\u002Fa> plugin.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>📝 Documentation and Support\u003C\u002Fh3>\n\u003Cp>If you’re having issues, do let us know, and we’ll be \u003Ca href=\"https:\u002F\u002Fyaycommerce.com\u002Fsupport\u002F\" rel=\"nofollow ugc\">happy to help\u003C\u002Fa>.\u003C\u002Fp>\n","Send WordPress emails through Amazon SES server using YaySMTP",35201,10,"2025-07-12T04:16:00.000Z","4.0","5.3",[69,18,126,108,109],"ses","https:\u002F\u002Fyaycommerce.com\u002Fyaysmtp-wordpress-mail-smtp","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsmtp-amazon-ses.zip","2025-07-16 00:00:00",{"attackSurface":131,"codeSignals":151,"taintFlows":209,"riskAssessment":237,"analyzedAt":251},{"hooks":132,"ajaxHandlers":147,"restRoutes":148,"shortcodes":149,"cronEvents":150,"entryPointCount":12,"unprotectedCount":12},[133,139,143],{"type":134,"name":135,"callback":136,"file":137,"line":138},"action","init","CloudFrontCacheClear::init","cloufront-cache-clear.php",13,{"type":134,"name":140,"callback":141,"file":137,"line":142},"admin_menu","set_plugin_menu",36,{"type":134,"name":144,"callback":145,"file":137,"line":146},"admin_init","save_config",39,[],[],[],[],{"dangerousFunctions":152,"sqlUsage":197,"outputEscaping":200,"fileOperations":203,"externalRequests":204,"nonceChecks":28,"capabilityChecks":12,"bundledLibraries":205},[153,158,162,165,168,171,175,179,183,187,190,193],{"fn":154,"file":155,"line":156,"context":157},"unserialize","aws\\Aws\\Common\\Model\\MultipartUpload\\AbstractTransferState.php",155,"$data = unserialize($serialized);",{"fn":154,"file":159,"line":160,"context":161},"aws\\Aws\\Common\\Model\\MultipartUpload\\AbstractUploadId.php",68,"$this->loadData(unserialize($serialized));",{"fn":154,"file":163,"line":164,"context":161},"aws\\Aws\\Common\\Model\\MultipartUpload\\AbstractUploadPart.php",81,{"fn":154,"file":166,"line":167,"context":157},"aws\\Aws\\Glacier\\Model\\MultipartUpload\\UploadPartGenerator.php",196,{"fn":154,"file":169,"line":160,"context":170},"aws\\Doctrine\\Common\\Cache\\FilesystemCache.php","return unserialize($data);",{"fn":154,"file":172,"line":173,"context":174},"aws\\Doctrine\\Common\\Cache\\MongoDBCache.php",95,"return unserialize($document[self::DATA_FIELD]->bin);",{"fn":154,"file":176,"line":177,"context":178},"aws\\Doctrine\\Common\\Cache\\RiakCache.php",79,"return unserialize($object->getContent());",{"fn":154,"file":180,"line":181,"context":182},"aws\\Doctrine\\Common\\Cache\\XcacheCache.php",40,"return $this->doContains($id) ? unserialize(xcache_get($id)) : false;",{"fn":154,"file":184,"line":185,"context":186},"aws\\Guzzle\\Plugin\\Cache\\DefaultCacheStorage.php",57,"foreach (unserialize($manifest) as $entry) {",{"fn":154,"file":184,"line":188,"context":189},92,"foreach (unserialize($entries) as $entry) {",{"fn":154,"file":184,"line":191,"context":192},117,"$entries = unserialize($entries);",{"fn":154,"file":194,"line":195,"context":196},"aws\\Symfony\\Component\\ClassLoader\\ClassCollectionLoader.php",71,"$meta = unserialize(file_get_contents($metadata));",{"prepared":198,"raw":12,"locations":199},7,[],{"escaped":201,"rawEcho":12,"locations":202},9,[],67,2,[206],{"name":207,"version":23,"knownCves":208},"Guzzle",[],[210,229],{"entryPoint":211,"graph":212,"unsanitizedCount":12,"severity":228},"save_config (cloufront-cache-clear.php:81)",{"nodes":213,"edges":225},[214,219],{"id":215,"type":216,"label":217,"file":137,"line":218},"n0","source","$_POST",91,{"id":220,"type":221,"label":222,"file":137,"line":223,"wp_function":224},"n1","sink","update_option() [Settings Manipulation]",96,"update_option",[226],{"from":215,"to":220,"sanitized":227},true,"low",{"entryPoint":230,"graph":231,"unsanitizedCount":12,"severity":228},"\u003Ccloufront-cache-clear> (cloufront-cache-clear.php:0)",{"nodes":232,"edges":235},[233,234],{"id":215,"type":216,"label":217,"file":137,"line":218},{"id":220,"type":221,"label":222,"file":137,"line":223,"wp_function":224},[236],{"from":215,"to":220,"sanitized":227},{"summary":238,"deductions":239},"The \"clear-cloudfront-cache\" plugin version 1.0.0 exhibits a generally good security posture with several strong practices in place.  The absence of any recorded vulnerabilities in its history, coupled with 100% usage of prepared statements for SQL queries and proper output escaping, are significant strengths. The plugin also demonstrates good input validation by having zero unsanitized paths identified in taint analysis, suggesting a low risk of injection-based attacks.  Furthermore, the limited attack surface with no exposed AJAX handlers, REST API routes, or shortcodes without proper checks is commendable.\n\nHowever, there are notable areas for concern. The presence of 12 instances of the `unserialize` function is a significant risk. Unserialization of untrusted user input can lead to Remote Code Execution (RCE) or denial-of-service attacks if not handled with extreme caution and strict validation of the unserialized data. While no capability checks were explicitly found on entry points, the limited attack surface might mitigate this risk in this specific version. The bundling of Guzzle, a third-party library, also presents a potential risk if it's an outdated version, which could introduce vulnerabilities from the library itself. The single nonce check is also minimal given the potential for attacks if multiple actions are handled without proper CSRF protection.\n\nOverall, the plugin is built on a relatively secure foundation with good practices in core areas like database interaction and output handling. The historical lack of vulnerabilities is a positive sign. However, the heavy reliance on `unserialize` without further context on how it's used or protected is a substantial security weakness that needs immediate attention. The potential for a bundled, outdated library also warrants investigation. A future assessment should focus on the specific usage of `unserialize` and the version of the Guzzle library.",[240,243,246,249],{"reason":241,"points":242},"Use of unserialize function (12 instances)",15,{"reason":244,"points":245},"Bundled library (Guzzle)",4,{"reason":247,"points":248},"Limited nonce checks (1 total)",5,{"reason":250,"points":248},"No capability checks on entry points","2026-03-16T22:30:59.070Z",{"wat":253,"direct":258},{"assetPaths":254,"generatorPatterns":255,"scriptPaths":256,"versionParams":257},[],[],[],[],{"cssClasses":259,"htmlComments":260,"htmlAttributes":261,"restEndpoints":262,"jsGlobals":263,"shortcodeOutput":264},[],[],[],[],[],[265,266,267],"\u003Cdiv class=\"wrap\">\n        \u003Ch1>Clear CloudFront Cache\u003C\u002Fh1>\n\n        \u003Cform action=\"\" method='post' id=\"my-submenu-form\">\n            ","\n\n            \u003Cp>\n              \u003Clabel for=\"title\">ディストリビューションID：\u003C\u002Flabel>\n              \u003Cinput type=\"text\" name=\"distribute\" value=\"","\"\u002F>\n            \u003C\u002Fp>\n\n            \u003Cp>\u003Cinput type='submit' value='保存' class='button button-primary button-large' name='save'>\u003C\u002Fp>\n            \u003Cp>\u003Cinput type='submit' value='キャッシュクリア' class='button button-primary button-large' name='clear'>\u003C\u002Fp>\n        \u003C\u002Fform>\n      \u003C\u002Fdiv>"]