[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fM6mKvyA_0b8qPIkkw5aG6gigRicIoKnoVziyzdVOlJw":3,"$fHNJ4Tcu-hlnvV1EXbCevF4FCpcb7LqrOe7RDhQ62puA":179,"$fatzhjN0IiO480gSLSEqbjeDciEgtJqeEtlswezgzwX4":184},{"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,"discovery_status":28,"vulnerabilities":29,"developer":30,"crawl_stats":26,"alternatives":37,"analysis":129,"fingerprints":164},"cc-featured-image-column","CC-Featured-Image-Column","1.0.0","Clearcode","https:\u002F\u002Fprofiles.wordpress.org\u002Fclearcodehq\u002F","\u003Cp>This plugin adds a column with post’s featured image before the title column on wp-admin posts list.\u003C\u002Fp>\n","This plugin adds a column with post's featured image before the title column on wp-admin posts list.",10,2041,0,"2018-03-06T10:21:00.000Z","4.9.29","4.9.4","7.0",[19,20,21,22],"column","featured-image","image","posts-list","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcc-featured-image-column","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcc-featured-image-column.zip",85,null,"2026-04-16T10:56:18.058Z","no_bundle",[],{"slug":31,"display_name":7,"profile_url":8,"plugin_count":32,"total_installs":33,"avg_security_score":25,"avg_patch_time_days":34,"trust_score":35,"computed_at":36},"clearcodehq",19,220,30,84,"2026-05-20T10:15:07.391Z",[38,59,79,97,113],{"slug":39,"name":40,"version":41,"author":42,"author_profile":43,"description":44,"short_description":45,"active_installs":46,"downloaded":47,"rating":48,"num_ratings":49,"last_updated":50,"tested_up_to":51,"requires_at_least":52,"requires_php":53,"tags":54,"homepage":56,"download_link":57,"security_score":58,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"add-featured-image-column","Add Featured Image Column","1.1.6","Robin Cornett","https:\u002F\u002Fprofiles.wordpress.org\u002Flittlerchicken\u002F","\u003Cp>This is a little plugin which adds a featured image column to WordPress. It automatically adds a column to any post type which supports a featured image. The code is pulled almost directly from my plugin \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fdisplay-featured-image-genesis\u002F\" rel=\"ugc\">Display Featured Image for Genesis\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>Banner\u002Ficon image credit: \u003Ca href=\"http:\u002F\u002Fminimography.com\u002F\" rel=\"nofollow ugc\">Lauren Mancke on Minimography\u003C\u002Fa>.\u003C\u002Fp>\n","This plugin adds a featured image column to any post type which supports featured images. See which posts have a featured image at a glance!",3000,29512,98,13,"2025-03-13T13:27:00.000Z","6.8.5","4.1","7.4",[55,20],"admin-columns","https:\u002F\u002Fgithub.com\u002Frobincornett\u002Fadd-featured-image-column\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fadd-featured-image-column.1.1.6.zip",92,{"slug":60,"name":61,"version":62,"author":63,"author_profile":64,"description":65,"short_description":66,"active_installs":67,"downloaded":68,"rating":69,"num_ratings":70,"last_updated":71,"tested_up_to":72,"requires_at_least":73,"requires_php":74,"tags":75,"homepage":77,"download_link":78,"security_score":58,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"featured-image-column","Featured Image Column","1.1.0","Austin","https:\u002F\u002Fprofiles.wordpress.org\u002Faustyfrosty\u002F","\u003Cp>As of version 0.2.2 you can select which post types you’d like to have the image column.\u003Cbr \u002F>\nIt simply adds a column before the title (far left) the show’s the posts featured image if it’s supported and exists.\u003C\u002Fp>\n\u003Cp>Want to change the default image? Simply filter you own image by using \u003Ccode>featured_image_column_default_image\u003C\u002Fcode>\u003Cbr \u002F>\nor filter your own CSS by using the \u003Ccode>featured_image_column_css\u003C\u002Fcode> filter hook.\u003C\u002Fp>\n\u003Ch4>Example actions\u002Ffilters\u003C\u002Fh4>\n\u003Cp>\u003Cstrong>Add support for a custom default image\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function my_custom_featured_image_column_image( $image ) {\n    if ( !has_post_thumbnail() ) {\n        return trailingslashit( get_stylesheet_directory_uri() ) . 'images\u002Ffeatured-image.png';\n    }\n\n    return $image;\n}\nadd_filter( 'featured_image_column_default_image', 'my_custom_featured_image_column_image' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>Remove support for post types\u003C\u002Fstrong> \u003Cem>Use the \u003Ccode>featured_image_column_init\u003C\u002Fcode> action hook for your filter.\u003C\u002Fem>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>function frosty_featured_image_column_init_func() {\n    add_filter( 'featured_image_column_post_types', 'frosty_featured_image_column_remove_post_types', 11 ); \u002F\u002F Remove\n}\nadd_action( 'featured_image_column_init', 'frosty_featured_image_column_init_func' );\n\nfunction frosty_featured_image_column_remove_post_types( $post_types ) {\n    foreach( $post_types as $key => $post_type ) {\n        if ( 'post-type' === $post_type ) \u002F\u002F Post type you'd like removed. Ex: 'post' or 'page'\n            unset( $post_types[$key] );\n    }\n    return $post_types;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>For more question please visit \u003Ca href=\"https:\u002F\u002Faustin.passy.co\u002Fwordpress-plugins\u002Ffeatured-image-column\u002F\" rel=\"nofollow ugc\">https:\u002F\u002Faustin.passy.co\u003C\u002Fa>\u003C\u002Fp>\n","Adds a column to any post type edit screen with the featured image if it exists.",2000,45613,96,11,"2024-11-29T17:51:00.000Z","6.7.5","6.2","8.0",[76,19,20],"admin","https:\u002F\u002Faustin.passy.co\u002Fwordpress-plugins\u002Ffeatured-image-column","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffeatured-image-column.zip",{"slug":80,"name":81,"version":82,"author":83,"author_profile":84,"description":85,"short_description":86,"active_installs":87,"downloaded":88,"rating":87,"num_ratings":89,"last_updated":90,"tested_up_to":91,"requires_at_least":92,"requires_php":93,"tags":94,"homepage":95,"download_link":96,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"manage-admin-columns","Manage Admin Columns","1.5.0","Santiago Becerra","https:\u002F\u002Fprofiles.wordpress.org\u002Fsanbec\u002F","\u003Cp>This plugin adds a featured image column to WordPress Dashboard. It automatically adds a column to any post type which supports a featured image. It’s an improvement from the plugin \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fadd-featured-image-column\u002F\" rel=\"ugc\">Add Featured Image Column\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>If the post has no featured image, it displays a “No image” svg icon to indicate this.\u003C\u002Fli>\n\u003Cli>If the featured image is broken, it displays a red “Broken image” svg icon to indicate this.\u003C\u002Fli>\n\u003Cli>The plugin opens a lightbox when click on featured image.\u003C\u002Fli>\n\u003Cli>You can enable or disable the blue border on hover.\u003C\u002Fli>\n\u003Cli>You can enable or disable the lightbox feature.\u003C\u002Fli>\n\u003Cli>You can choose the shape and size of the thumbnail displayed at the dashboard.\u003C\u002Fli>\n\u003C\u002Ful>\n","This plugin adds a featured image column to WordPress Dashboard. It automatically adds a column to any post type which supports a featured image.",100,3397,1,"2022-05-08T07:47:00.000Z","6.0.11","5.0","5.6",[55,20],"https:\u002F\u002Fgithub.com\u002Fsanbec\u002Fmanage-admin-columns","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmanage-admin-columns.1.5.0.zip",{"slug":98,"name":99,"version":100,"author":101,"author_profile":102,"description":103,"short_description":104,"active_installs":87,"downloaded":105,"rating":87,"num_ratings":89,"last_updated":106,"tested_up_to":107,"requires_at_least":108,"requires_php":109,"tags":110,"homepage":111,"download_link":112,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"simple-featured-image-column","Simple Featured Image Column","1.0.7","Andre Aguiar Villela","https:\u002F\u002Fprofiles.wordpress.org\u002Fdedevillela\u002F","\u003Cp>The Simple Featured Image Column displays the “Featured Image” column in admin post type listing.\u003C\u002Fp>\n\u003Ch4>Current Features:\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>“Featured Image” column in admin post listing.\u003C\u002Fli>\n\u003Cli>Supports Posts, Pages and Custom Posts.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Future Ideas:\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Add image size options (small\u002Fmedium\u002Flarge\u002Fcustom).\u003C\u002Fli>\n\u003Cli>Custom “No Featured Image” thumbnail.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Contributing\u003C\u002Fh3>\n\u003Cp>As with most plugins, Simple Featured Image Column is open source. For issue tracking, further information and anyone wishing to get involved and help contribute to this project can do so over on GitHub.\u003C\u002Fp>\n","A simple plugin that displays the \"Featured Image\" column in admin post type listing. Supports Post, Pages and Custom Posts.",2366,"2019-07-03T00:07:00.000Z","5.2.24","4.6","",[76,19,20],"https:\u002F\u002Fgithub.com\u002Fdedevillela\u002FSimple-Featured-Image-Column\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsimple-featured-image-column.zip",{"slug":114,"name":115,"version":6,"author":116,"author_profile":117,"description":118,"short_description":119,"active_installs":120,"downloaded":121,"rating":87,"num_ratings":89,"last_updated":122,"tested_up_to":123,"requires_at_least":124,"requires_php":109,"tags":125,"homepage":127,"download_link":128,"security_score":25,"vuln_count":13,"unpatched_count":13,"last_vuln_date":26,"fetched_at":27},"wp-thumbnail-column","WP Thumbnail Column","Andrey Ovcharov","https:\u002F\u002Fprofiles.wordpress.org\u002Fspectraweb\u002F","\u003Cp>This plugin adds column with thumbnails featured images for selected post types\u003C\u002Fp>\n","This plugin adds column with thumbnails for selected post types",20,2075,"2012-09-16T06:49:00.000Z","3.4.2","3.0",[19,20,126],"thumbnail","http:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fwp-thumbnail-column\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-thumbnail-column.zip",{"attackSurface":130,"codeSignals":145,"taintFlows":156,"riskAssessment":157,"analyzedAt":163},{"hooks":131,"ajaxHandlers":141,"restRoutes":142,"shortcodes":143,"cronEvents":144,"entryPointCount":13,"unprotectedCount":13},[132,138],{"type":133,"name":134,"callback":135,"priority":87,"file":136,"line":137},"action","admin_init","closure","plugin.php",45,{"type":133,"name":139,"callback":135,"priority":11,"file":136,"line":140},"admin_enqueue_scripts",58,[],[],[],[],{"dangerousFunctions":146,"sqlUsage":147,"outputEscaping":149,"fileOperations":13,"externalRequests":13,"nonceChecks":13,"capabilityChecks":13,"bundledLibraries":155},[],{"prepared":13,"raw":13,"locations":148},[],{"escaped":150,"rawEcho":89,"locations":151},2,[152],{"file":136,"line":153,"context":154},54,"raw output",[],[],{"summary":158,"deductions":159},"The plugin \"cc-featured-image-column\" v1.0.0 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 means there are no apparent entry points for attackers to exploit. Furthermore, the code demonstrates good practices by not utilizing dangerous functions, performing file operations, or making external HTTP requests. The fact that all SQL queries are prepared statements is a significant strength, mitigating the risk of SQL injection vulnerabilities. Taint analysis showing zero flows, especially with no unsanitized paths, reinforces this positive assessment.  However, the static analysis does highlight a potential area of concern: 67% of output is properly escaped, implying that one-third of the output may not be, which could lead to cross-site scripting (XSS) vulnerabilities if user-supplied data is involved. The vulnerability history is completely clean, with no known CVEs, which is an excellent indicator. This suggests either a well-written plugin or a lack of historical scrutiny, but given the static analysis, the former seems more likely. The primary weakness lies in the potential for unescaped output, a common vector for XSS attacks.",[160],{"reason":161,"points":162},"Potential unescaped output identified",5,"2026-03-17T01:18:02.936Z",{"wat":165,"direct":172},{"assetPaths":166,"generatorPatterns":168,"scriptPaths":169,"versionParams":170},[167],"\u002Fwp-content\u002Fplugins\u002Fcc-featured-image-column\u002Fstyle.css",[],[],[171],"cc-featured-image-column\u002Fstyle.css?ver=1.0.0",{"cssClasses":173,"htmlComments":174,"htmlAttributes":175,"restEndpoints":176,"jsGlobals":177,"shortcodeOutput":178},[],[],[],[],[],[],{"error":180,"url":181,"statusCode":182,"statusMessage":183,"message":183},true,"http:\u002F\u002Flocalhost\u002Fapi\u002Fplugins\u002Fcc-featured-image-column\u002Fbundle",404,"no bundle for this plugin yet",{"slug":4,"current_version":6,"total_versions":89,"versions":185},[186],{"version":6,"download_url":187,"svn_tag_url":188,"released_at":26,"has_diff":189,"diff_files_changed":190,"diff_lines":26,"trac_diff_url":26,"vulnerabilities":191,"is_current":180},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcc-featured-image-column.1.0.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fcc-featured-image-column\u002Ftags\u002F1.0.0\u002F",false,[],[]]