[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$f8sJ9E5fy1q1uJ73z7RnEmvekZ-usStD1TEE-FRYENqw":3,"$fiME5Ycf5mvBSkrCEvctOUmDBMM_C9nKwsfOn2ftzhc4":238,"$fniPXaxK9MzdkxDgfH_Lte7aaDNtsJuahdAw4ZGMedc0":243},{"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":25,"download_link":26,"security_score":27,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30,"discovery_status":31,"vulnerabilities":32,"developer":33,"crawl_stats":29,"alternatives":41,"analysis":138,"fingerprints":208},"stealth-publish","Stealth Publish","2.6","Scott Reilly","https:\u002F\u002Fprofiles.wordpress.org\u002Fcoffee2code\u002F","\u003Cp>This plugin allows you to prevent specified posts from being featured on the front page or in feeds, and from notifying external services of publication. Beneficial in instances where you want to publish new content without any fanfare and just want the post added to archive and category pages and its own permalink page.\u003C\u002Fp>\n\u003Cp>A “Stealth publish?” checkbox is added to the “Write Post” admin page. Posts which are saved with that checkbox checked will no longer be featured on the front page of the blog, nor will the post be included in any feeds.\u003C\u002Fp>\n\u003Cp>A stealth published post will also not notify any external services about the publication. This includes not sending out pingbacks, trackbacks, and pings to update services such as pingomatic.com. This behavior can be overridden via the ‘c2c_stealth_publish_silent’ filter (see Filters section).\u003C\u002Fp>\n\u003Cp>NOTES:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\n\u003Cp>Use of other plugins making their own queries against the database to find posts will possibly allow a post to appear on the front page. But use of the standard WordPress functions for retrieving posts (as done for the main posts query and the recent posts widget) should not allow stealth published posts to appear on the home page.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>If you use this plugin, you do not need to use my \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fsilent-publish\u002F\" rel=\"ugc\">Silent Publish\u003C\u002Fa> plugin as that functionality is incorporated into this plugin. Alternatively, if you like the silent publishing feature but want your new posts to appear on your blog’s front page and in feeds, then just use the “Silent Publish” plugin.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003Cli>\n\u003Cp>The plugin records when a post is stealth published, so subsequent edits of the post will have the “Stealth publish?” checkbox checked by default.\u003C\u002Fp>\n\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Links: \u003Ca href=\"http:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fstealth-publish\u002F\" rel=\"nofollow ugc\">Plugin Homepage\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fstealth-publish\u002F\" rel=\"ugc\">Plugin Directory Page\u003C\u002Fa> | \u003Ca href=\"http:\u002F\u002Fcoffee2code.com\" rel=\"nofollow ugc\">Author Homepage\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Filters\u003C\u002Fh3>\n\u003Cp>The plugin is further customizable via three filters. Typically, these customizations would be put into your active theme’s functions.php file, or used by another plugin.\u003C\u002Fp>\n\u003Ch4>c2c_stealth_publish_meta_key (filter)\u003C\u002Fh4>\n\u003Cp>The ‘c2c_stealth_publish_meta_key’ filter allows you to override the name of the custom field key used by the plugin to store a post’s stealth publish status. This isn’t a common need.\u003C\u002Fp>\n\u003Cp>Arguments:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$custom_field_key (string): The custom field key to be used by the plugin. By default this is ‘_stealth-publish’.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Defines a custom meta key to be used by Stealth Publish.\n *\n * @param string $custom_field_key The default custom field key name.\n * @return string\n *\u002F\nfunction override_stealth_publish_key( $custom_field_key ) {\n    return '_my_custom_stealth-publish';\n}\nadd_filter( 'c2c_stealth_publish_meta_key', 'override_stealth_publish_key' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>c2c_stealth_publish_silent (filter)\u003C\u002Fh4>\n\u003Cp>The ‘c2c_stealth_publish_silent’ filter allows you to override whether the plugin also ensure the post gets published silently (i.e. without sending out pingbacks, tracbacks, and pings to update services).\u003C\u002Fp>\n\u003Cp>Arguments:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$publish_silently (bool): Should stealth published posts also be published silently?  By default this is ‘true’.\u003C\u002Fli>\n\u003Cli>$post_id (int): The ID of the post being published.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Disable silent publishing for stealth published posts.\n *\n * @param bool $publish_silently True if the post is to be published silently.\n * @param int  $post_id          The post ID.\n * @return Always false.\n *\u002F\nfunction override_stealth_publish_silent( $publish_silently, $post_id ) {\n    return false;\n}\nadd_filter( 'c2c_stealth_publish_silent', 'override_stealth_publish_silent' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>c2c_stealth_publish_default (filter)\u003C\u002Fh4>\n\u003Cp>The ‘c2c_stealth_publish_default’ filter allows you to override the default state of the ‘Stealth Publish?’ checkbox.\u003C\u002Fp>\n\u003Cp>Arguments:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$state (boolean): The default state of the checkbox. By default this is false.\u003C\u002Fli>\n\u003Cli>$post (WP_Post): The post currently being created\u002Fedited.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F\u002F Have the Stealth Publish? checkbox checked by default.\nadd_filter( 'c2c_stealth_publish_default', '__return_true' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Prevent specified posts from being featured on the front page or in feeds, and from notifying external services of publication.",900,30483,100,11,"2016-04-13T22:36:00.000Z","4.5.33","3.6","",[20,21,22,23,24],"archive","feature","feed","home","post","http:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fstealth-publish\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.6.zip",85,0,null,"2026-04-16T10:56:18.058Z","no_bundle",[],{"slug":34,"display_name":7,"profile_url":8,"plugin_count":35,"total_installs":36,"avg_security_score":37,"avg_patch_time_days":38,"trust_score":39,"computed_at":40},"coffee2code",63,91830,88,374,71,"2026-05-19T23:10:17.150Z",[42,65,83,100,120],{"slug":43,"name":44,"version":45,"author":46,"author_profile":47,"description":48,"short_description":49,"active_installs":50,"downloaded":51,"rating":52,"num_ratings":53,"last_updated":54,"tested_up_to":55,"requires_at_least":56,"requires_php":18,"tags":57,"homepage":62,"download_link":63,"security_score":64,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"add-featured-image-to-rss-feed","Add Featured Image to RSS Feed","1.1.4","Corey Salzano","https:\u002F\u002Fprofiles.wordpress.org\u002Fsalzano\u002F","\u003Cp>This plugin does one thing, and that thing is to add your posts’ featured image to the RSS feed. It specifies the ‘large’ image size.\u003C\u002Fp>\n\u003Ch3>Open Graph Meta Tags are also Necessary\u003C\u002Fh3>\n\u003Cp>Many modern feed readers do not show the images added by this plugin. Feedly, for example, will not show images added by this plugin. Feed readers crawl article pages to find the image attached to posts in the open graph meta tag. Many SEO plugins add open graph tags for featured images. I like the (https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fopengraph\u002F)[Open Graph] plugin, too.\u003C\u002Fp>\n","Adds the featured image attached to posts to the beginning of the post content and excerpt in RSS feeds.",2000,41689,86,12,"2024-08-13T20:39:00.000Z","6.6.5","2.0.2",[58,59,60,22,61],"add-featured-image","add-featured-image-to-rss","featured-image","post-thumbnail","https:\u002F\u002Fgithub.com\u002Fcsalzano\u002Fadd-featured-image-to-rss-feed","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fadd-featured-image-to-rss-feed.1.1.4.zip",92,{"slug":66,"name":67,"version":68,"author":69,"author_profile":70,"description":71,"short_description":72,"active_installs":73,"downloaded":74,"rating":13,"num_ratings":75,"last_updated":76,"tested_up_to":77,"requires_at_least":18,"requires_php":18,"tags":78,"homepage":81,"download_link":82,"security_score":27,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"wp-utf8-excerpt","WP-UTF8-Excerpt","0.8.3","BettyJJ","https:\u002F\u002Fprofiles.wordpress.org\u002Fbettyjj\u002F","\u003Ch4>Main features of the plugin:\u003C\u002Fh4>\n\u003Col>\n\u003Cli>It supports multi-byte language (such as Chinese). It will not produce gibberish as some other excerpt plugins do.\u003C\u002Fli>\n\u003Cli>The html tags in the original posts, i.e., the font styles, colors, hyperlinks, pictures and such are preserved in the excerpt.\u003C\u002Fli>\n\u003Cli>For better readability, it displays 300 characters for each post on the homepage and 150 characters for each post on archive pages.\u003C\u002Fli>\n\u003C\u002Fol>\n","This plugin generates a better excerpt for multi-byte language users (Chinese, for example). Besides, it keeps the html tags in the excerpt.",800,82046,2,"2021-11-30T14:53:00.000Z","5.8.13",[20,79,80,24],"excerpt","homepage","http:\u002F\u002Fmyfairland.net\u002Fwp-utf8-excerpt\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-utf8-excerpt.0.8.3.zip",{"slug":84,"name":85,"version":86,"author":87,"author_profile":88,"description":89,"short_description":90,"active_installs":91,"downloaded":92,"rating":91,"num_ratings":93,"last_updated":94,"tested_up_to":95,"requires_at_least":96,"requires_php":18,"tags":97,"homepage":98,"download_link":99,"security_score":27,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":30},"jms-rss-feed","JMS Rss Feed","3.5.0","James","https:\u002F\u002Fprofiles.wordpress.org\u002Fjamesliu-1\u002F","\u003Cp>This plugin only does one task, adding your posts’ featured image to the RSS feed in  tag. It will show your full size featured image url in the tag.\u003C\u002Fp>\n","Add the featured image tag  in your posts RSS feed. For standard RSS feed XML, there is no image tag definition. This plugin will show the post featur &hellip;",20,2029,1,"2018-03-29T05:08:00.000Z","4.9.0","4.0.0",[58,59,60,22,61],"https:\u002F\u002Fjmsliu.com\u002Fproducts\u002Fjms-rss-feed\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjms-rss-feed.zip",{"slug":101,"name":102,"version":103,"author":104,"author_profile":105,"description":106,"short_description":107,"active_installs":108,"downloaded":109,"rating":28,"num_ratings":28,"last_updated":110,"tested_up_to":111,"requires_at_least":112,"requires_php":18,"tags":113,"homepage":117,"download_link":118,"security_score":27,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":119},"show-posts-fade-inout-fix","Show Category Posts Fade in\u002Fout","0.2.3","geegood.com","https:\u002F\u002Fprofiles.wordpress.org\u002Fthaiyindee\u002F","\u003Cp>The Random Featured Post plugin allows you to display a random post from a designated category. Ideally this should draw readers landing on your homepage to some of your best posts. The featured post will display the title “Featured Post” (customizable) along with the post’s title, an excerpt and a link to continue to the full post.\u003C\u002Fp>\n\u003Ch3>Using it\u003C\u002Fh3>\n\u003Cp>Please go here for now for documentation: http:\u002F\u002Fgeegood.com\u002Fwordpress\u002F\u003C\u002Fp>\n","The Random Featured Post plugin allows you to display a random post from a designated category as a \"featured\" post.",10,3943,"2010-11-11T17:36:00.000Z","3.0.5","3.0",[114,115,23,24,116],"category","featured","random","http:\u002F\u002Fwordpress.geegood.com\u002Fplugins\u002Fshow-category-posts-fade-inout\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fshow-posts-fade-inout-fix.zip","2026-04-06T09:54:40.288Z",{"slug":121,"name":122,"version":123,"author":124,"author_profile":125,"description":126,"short_description":127,"active_installs":108,"downloaded":128,"rating":28,"num_ratings":28,"last_updated":129,"tested_up_to":130,"requires_at_least":6,"requires_php":18,"tags":131,"homepage":18,"download_link":137,"security_score":27,"vuln_count":28,"unpatched_count":28,"last_vuln_date":29,"fetched_at":119},"wordpress-mu-featured-posts","Featured Posts","1.1.1","Ron Rennick","https:\u002F\u002Fprofiles.wordpress.org\u002Fwpmuguru\u002F","\u003Cp>Adds a featured post management page for site admins who can input a sitewide feed address, then select posts via a checkbox. Also includes a widget to disply posts on the main (or any) blog.\u003C\u002Fp>\n\u003Cp>We recommend using the \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fwordpress-mu-sitewide-tags\u002F\" rel=\"ugc\">Sitewide tags plugin\u003C\u002Fa> in WPMU, then placing the feed address from the tags blog in the admin menu. Otherwise, any blog feed can be used.\u003C\u002Fp>\n\u003Cp>A widget is included. You can also code the output in your theme with \u003Ccode>\u003C?php ra_featured_show($how_many, $read_more, $show_avatar); ?>\u003C\u002Fcode> where\u003C\u002Fp>\n\u003Cpre>\u003Ccode>$how_many = how many posts to show - default 1\n$read_more = add read more link - default show link\n$show_avatar = show author avatar - default show avatar\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Also includes a shortcode with parameters where values & defaults match what is above\u003C\u002Fp>\n\u003Cpre>\u003Ccode>[ra-featured howmany=1 readmore=1 showavatar=1]\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>For questions & updates, please see this post:\u003Cbr \u002F>\n\u003Ca href=\"http:\u002F\u002Fwpmututorials.com\u002Fplugins\u002Ffeatured-posts-plugin-and-widget\u002F\" rel=\"nofollow ugc\">WPMU Tutorials\u003C\u002Fa>\u003C\u002Fp>\n","Featured posts plugin & widget for WordPress or WordPress MU.",17091,"2017-01-13T03:09:00.000Z","4.3.34",[132,133,134,135,136],"featured-post","feeds","sitewide","widget","wpmu","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwordpress-mu-featured-posts.2.8.3.1.zip",{"attackSurface":139,"codeSignals":180,"taintFlows":196,"riskAssessment":197,"analyzedAt":207},{"hooks":140,"ajaxHandlers":176,"restRoutes":177,"shortcodes":178,"cronEvents":179,"entryPointCount":28,"unprotectedCount":28},[141,147,152,156,160,163,167,170,174],{"type":142,"name":143,"callback":144,"file":145,"line":146},"action","init","do_init","stealth-publish.php",96,{"type":148,"name":149,"callback":150,"priority":93,"file":145,"line":151},"filter","posts_where","stealth_publish_where",132,{"type":142,"name":153,"callback":154,"file":145,"line":155},"post_submitbox_misc_actions","add_ui",134,{"type":148,"name":157,"callback":158,"priority":75,"file":145,"line":159},"wp_insert_post_data","save_stealth_publish_status",135,{"type":142,"name":161,"callback":161,"priority":93,"file":145,"line":162},"publish_post",136,{"type":142,"name":164,"callback":165,"priority":108,"file":145,"line":166},"quick_edit_custom_box","add_to_quick_edit",138,{"type":142,"name":168,"callback":168,"file":145,"line":169},"admin_enqueue_scripts",139,{"type":148,"name":171,"callback":172,"priority":108,"file":145,"line":173},"post_date_column_time","add_icon_to_post_date_column",140,{"type":148,"name":149,"callback":150,"priority":93,"file":145,"line":175},236,[],[],[],[],{"dangerousFunctions":181,"sqlUsage":182,"outputEscaping":184,"fileOperations":28,"externalRequests":28,"nonceChecks":28,"capabilityChecks":28,"bundledLibraries":195},[],{"prepared":75,"raw":28,"locations":183},[],{"escaped":185,"rawEcho":186,"locations":187},4,3,[188,191,193],{"file":145,"line":189,"context":190},155,"raw output",{"file":145,"line":192,"context":190},158,{"file":145,"line":194,"context":190},261,[],[],{"summary":198,"deductions":199},"The 'stealth-publish' v2.6 plugin exhibits a generally strong security posture based on the provided static analysis. The absence of any identified AJAX handlers, REST API routes, shortcodes, or cron events significantly limits the plugin's attack surface. Furthermore, the code analysis shows no dangerous functions, no file operations, and no external HTTP requests, which are positive indicators of secure coding practices. The use of prepared statements for all SQL queries is a significant strength, mitigating risks of SQL injection. The vulnerability history is also clear, with zero known CVEs, indicating a lack of previously identified security flaws. However, the relatively low percentage of properly escaped output (57%) presents a concern, suggesting potential for cross-site scripting (XSS) vulnerabilities if user-supplied data is not adequately sanitized before being displayed. The complete absence of nonce checks and capability checks across all entry points (though there are none) is a notable weakness, meaning if entry points were to be introduced in future versions, they would be inherently insecure.",[200,203,205],{"reason":201,"points":202},"Low output escaping percentage",5,{"reason":204,"points":202},"No nonce checks on potential entry points",{"reason":206,"points":202},"No capability checks on potential entry points","2026-03-16T19:11:09.370Z",{"wat":209,"direct":216},{"assetPaths":210,"generatorPatterns":212,"scriptPaths":213,"versionParams":214},[211],"\u002Fwp-content\u002Fplugins\u002Fstealth-publish\u002Fassets\u002Fadmin.js",[],[211],[215],"stealth-publish\u002Fassets\u002Fadmin.js?ver=",{"cssClasses":217,"htmlComments":218,"htmlAttributes":231,"restEndpoints":233,"jsGlobals":234,"shortcodeOutput":237},[4],[219,220,221,222,223,224,225,226,227,228,229,230],"Copyright (c) 2007-2016 by Scott Reilly (aka coffee2code)","This program is free software; you can redistribute it and\u002For","modify it under the terms of the GNU General Public License","as published by the Free Software Foundation; either version 2","of the License, or (at your option) any later version.","This program is distributed in the hope that it will be useful,","but WITHOUT ANY WARRANTY; without even the implied warranty of","MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the","GNU General Public License for more details.","You should have received a copy of the GNU General Public License","along with this program; if not, write to the Free Software","Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.",[232],"data-stealth-publish",[],[235,236],"c2c_StealthPublish","stealth_publish",[],{"error":239,"url":240,"statusCode":241,"statusMessage":242,"message":242},true,"http:\u002F\u002Flocalhost\u002Fapi\u002Fplugins\u002Fstealth-publish\u002Fbundle",404,"no bundle for this plugin yet",{"slug":4,"current_version":6,"total_versions":53,"versions":244},[245,251,258,265,272,279,286,293,300,306,313,320],{"version":6,"download_url":26,"svn_tag_url":246,"released_at":29,"has_diff":247,"diff_files_changed":248,"diff_lines":29,"trac_diff_url":249,"vulnerabilities":250,"is_current":239},"https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.6\u002F",false,[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F2.5.1&new_path=%2Fstealth-publish%2Ftags%2F2.6",[],{"version":252,"download_url":253,"svn_tag_url":254,"released_at":29,"has_diff":247,"diff_files_changed":255,"diff_lines":29,"trac_diff_url":256,"vulnerabilities":257,"is_current":247},"2.5.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.5.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.5.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F2.5&new_path=%2Fstealth-publish%2Ftags%2F2.5.1",[],{"version":259,"download_url":260,"svn_tag_url":261,"released_at":29,"has_diff":247,"diff_files_changed":262,"diff_lines":29,"trac_diff_url":263,"vulnerabilities":264,"is_current":247},"2.5","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.5.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.5\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F2.4&new_path=%2Fstealth-publish%2Ftags%2F2.5",[],{"version":266,"download_url":267,"svn_tag_url":268,"released_at":29,"has_diff":247,"diff_files_changed":269,"diff_lines":29,"trac_diff_url":270,"vulnerabilities":271,"is_current":247},"2.4","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.4.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.4\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F2.3&new_path=%2Fstealth-publish%2Ftags%2F2.4",[],{"version":273,"download_url":274,"svn_tag_url":275,"released_at":29,"has_diff":247,"diff_files_changed":276,"diff_lines":29,"trac_diff_url":277,"vulnerabilities":278,"is_current":247},"2.3","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.3.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.3\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F2.2.1&new_path=%2Fstealth-publish%2Ftags%2F2.3",[],{"version":280,"download_url":281,"svn_tag_url":282,"released_at":29,"has_diff":247,"diff_files_changed":283,"diff_lines":29,"trac_diff_url":284,"vulnerabilities":285,"is_current":247},"2.2.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.2.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.2.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F2.2&new_path=%2Fstealth-publish%2Ftags%2F2.2.1",[],{"version":287,"download_url":288,"svn_tag_url":289,"released_at":29,"has_diff":247,"diff_files_changed":290,"diff_lines":29,"trac_diff_url":291,"vulnerabilities":292,"is_current":247},"2.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F2.1&new_path=%2Fstealth-publish%2Ftags%2F2.2",[],{"version":294,"download_url":295,"svn_tag_url":296,"released_at":29,"has_diff":247,"diff_files_changed":297,"diff_lines":29,"trac_diff_url":298,"vulnerabilities":299,"is_current":247},"2.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F2.0.2&new_path=%2Fstealth-publish%2Ftags%2F2.1",[],{"version":56,"download_url":301,"svn_tag_url":302,"released_at":29,"has_diff":247,"diff_files_changed":303,"diff_lines":29,"trac_diff_url":304,"vulnerabilities":305,"is_current":247},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.0.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.0.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F2.0.1&new_path=%2Fstealth-publish%2Ftags%2F2.0.2",[],{"version":307,"download_url":308,"svn_tag_url":309,"released_at":29,"has_diff":247,"diff_files_changed":310,"diff_lines":29,"trac_diff_url":311,"vulnerabilities":312,"is_current":247},"2.0.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.0.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.0.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F2.0&new_path=%2Fstealth-publish%2Ftags%2F2.0.1",[],{"version":314,"download_url":315,"svn_tag_url":316,"released_at":29,"has_diff":247,"diff_files_changed":317,"diff_lines":29,"trac_diff_url":318,"vulnerabilities":319,"is_current":247},"2.0","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.2.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F2.0\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fstealth-publish%2Ftags%2F1.0&new_path=%2Fstealth-publish%2Ftags%2F2.0",[],{"version":321,"download_url":322,"svn_tag_url":323,"released_at":29,"has_diff":247,"diff_files_changed":324,"diff_lines":29,"trac_diff_url":29,"vulnerabilities":325,"is_current":247},"1.0","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fstealth-publish.1.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fstealth-publish\u002Ftags\u002F1.0\u002F",[],[]]