[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fvcxKGDAYr6kuuQWTUP5viqRF8e4hmNFmnbdrzzN7zUY":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":24,"download_link":25,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28,"vulnerabilities":29,"developer":30,"crawl_stats":27,"alternatives":35,"analysis":126,"fingerprints":208},"flickrapi","Flickr API","0.7","David Walker","https:\u002F\u002Fprofiles.wordpress.org\u002Fpolaraction\u002F","\u003Cp>This plugin allows you to easily display Flickr photos on your site and using the Flickr API doesn’t limit you to\u003Cbr \u002F>\nthe standard 20 photos.  It supports user, set, favorite, group and public photostreams.\u003C\u002Fp>\n\u003Cp>The plugin is relatively easy to setup and configure via an options panel.\u003Cbr \u002F>\nIt also has support for an image cache located on your server.\u003C\u002Fp>\n\u003Ch3>Feedback and Support\u003C\u002Fh3>\n\u003Cp>For API problems you can visit the plugin page (http:\u002F\u002Fmalton-webdesign.co.uk\u002Fflickrapi)\u003C\u002Fp>\n\u003Ch3>Advanced\u003C\u002Fh3>\n\u003Cp>The plugin also supports a number of parameters, allowing you to have multiple instances across your\u003C\u002Fp>\n\u003Cp>site.\u003C\u002Fp>\n\u003Col>\n\u003Cli>\u003Ccode>'type' => 'user'\u003C\u002Fcode> – The type of Flickr images that you want to show. Possible values: ‘user’, \u003C\u002Fli>\n\u003C\u002Fol>\n\u003Cp>‘favorite’, ‘set’, ‘group’, ‘public’\u003Cbr \u002F>\n2. \u003Ccode>'api' => ''\u003C\u002Fcode> – Optional but the point of the plugin!\u003Cbr \u002F>\n2. \u003Ccode>'tags' => ''\u003C\u002Fcode> – Optional: Can be used with type = ‘user’ or ‘public’, comma separated\u003Cbr \u002F>\n3. \u003Ccode>'set' => ''\u003C\u002Fcode> – Optional: To be used with type = ‘set’\u003Cbr \u002F>\n4. \u003Ccode>'id' => ''\u003C\u002Fcode> – Optional: Your Group or User ID. To be used with type = ‘user’ or ‘group’\u003Cbr \u002F>\n5. \u003Ccode>'do_cache' => false\u003C\u002Fcode> – Enable the image cache\u003Cbr \u002F>\n6. \u003Ccode>'cache_sizes' => array('square')\u003C\u002Fcode> – What are the image sizes we want to cache locally? Possible\u003Cbr \u002F>\nvalues: ‘square’, ‘thumbnail’, ‘small’, ‘medium’\u003Cbr \u002F>\n7. \u003Ccode>'cache_path' => ''\u003C\u002Fcode> – Where the images are saved (server path)\u003Cbr \u002F>\n8. \u003Ccode>'cache_uri' => ''\u003C\u002Fcode> – The URI associated to the cache path (web address)\u003Cbr \u002F>\n9. \u003Ccode>'num_items' => 4\u003C\u002Fcode> – The number of images that you want to display\u003Cbr \u002F>\n10. \u003Ccode>'before_list' => ''\u003C\u002Fcode> – The HTML to print before the list of images\u003Cbr \u002F>\n11. \u003Ccode>'html' => '\u003Ca href=\"%flickr_page%\" title=\"%title%\">\u003Cimg src=\"%image_square%\" alt=\"%title%\">\u003C\u002Fa&>'\u003C\u002Fcode> –\u003C\u002Fp>\n\u003Cp>the code to print out for each image.\u003Cbr \u002F>\n    Meta tags available: %flickr_page%, %title%, %image_small%, %image_square%, %image_thumbnail%,\u003C\u002Fp>\n\u003Cp>%image_medium%, %image_large%\u003Cbr \u002F>\n12. \u003Ccode>'default_title' => \"Untitled Flickr photo\"\u003C\u002Fcode> – the default title\u003Cbr \u002F>\n13. \u003Ccode>'after_list' => ''\u003C\u002Fcode> – the HTML to print after the list of images\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Example 1\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>  get_flickrAPI(array('num_items' => 36, \n                      'type' => 'group', \n                      'tags' => '',\n                      'id' => '12325216@N00',\n                      'api' => '3370ecbd3e604245581eb4955fd6xxxx')); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>This would show the 36 most recent group photos\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Example 2\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>  get_flickrAPI(array('num_items' => 30, \n                      'type' => 'user', \n                      'tags' => '',\n                      'id' => '10529805@N00',\n                      'api' => '3370ecbd3e604245581eb4955fd6xxxx')); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>This would show the 30 most recent thumbnail sized photos from the specified user’s set.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Example 3\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cpre>\u003Ccode>  get_flickrAPI(array('num_items' => 30, \n                      'type' => 'public', \n                      'text' => '',\n                      'tags' => '',\n                      'api' => '3370ecbd3e604245581eb4955fd6xxxx')); ?>\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>This would show the 30 most recent photos from all of FLickr.\u003C\u002Fp>\n\u003Ch3>Plugin History\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>0.7 – Change of the Support page to new website\u003C\u002Fli>\n\u003Cli>0.6 – Removed the Large option as FLickr seem to have removed it.\u003C\u002Fli>\n\u003Cli>0.5 – Added search by Text facilty\u003C\u002Fli>\n\u003Cli>0.4 – Debug Option Added \u003C\u002Fli>\n\u003Cli>0.3 – Upgrade bug fix. \u003C\u002Fli>\n\u003Cli>0.2 – Readme.txt updated properly\u003C\u002Fli>\n\u003Cli>0.1 – Beta release (Plugin amended from the original “eightface” flickrRSS plugin\u003C\u002Fli>\n\u003C\u002Ful>\n","This plugin is an amended version of flickrRSS by \"eightface\". As well as allowing you to integrate Flickr photos into your site, supportin &hellip;",30,10412,0,"2012-04-24T16:05:00.000Z","3.3.2","2.6","",[19,20,21,22,23],"api","flickr","images","photos","sidebar","http:\u002F\u002Fmalton-webdesign.co.uk\u002FflickrAPI\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fflickrapi.zip",85,null,"2026-03-15T15:16:48.613Z",[],{"slug":31,"display_name":7,"profile_url":8,"plugin_count":32,"total_installs":11,"avg_security_score":26,"avg_patch_time_days":11,"trust_score":33,"computed_at":34},"polaraction",1,84,"2026-04-04T11:17:15.343Z",[36,54,74,93,109],{"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":32,"last_updated":47,"tested_up_to":48,"requires_at_least":49,"requires_php":17,"tags":50,"homepage":52,"download_link":53,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"flickr-me","Flickr Me","1.0.6","Erik Ford","https:\u002F\u002Fprofiles.wordpress.org\u002Fwearepixel8\u002F","\u003Cp>With Flickr Me, you can add Flickr feeds, from an individual account or group, to your widget ready areas. Once installed and activated the widget is an easy to manage, out of box solution for displaying a Flickr gallery of images. Each photo, in the feed, will link to its Flickr permalink and you can optionally set to display the title when stacking images.\u003C\u002Fp>\n","Add Flickr feeds to your widget ready areas.",40,6088,100,"2016-05-02T15:14:00.000Z","4.5.33","3.1",[20,21,22,23,51],"widget","http:\u002F\u002Fheavyheavy.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fflickr-me.zip",{"slug":55,"name":56,"version":57,"author":58,"author_profile":59,"description":60,"short_description":61,"active_installs":62,"downloaded":63,"rating":64,"num_ratings":65,"last_updated":66,"tested_up_to":67,"requires_at_least":68,"requires_php":17,"tags":69,"homepage":71,"download_link":72,"security_score":73,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"meks-simple-flickr-widget","Meks Simple Flickr Widget","1.3","Meks","https:\u002F\u002Fprofiles.wordpress.org\u002Fmekshq\u002F","\u003Cp>Quickly display your Flickr photos inside WordPress widget. No authorization required (only provide your user id).\u003C\u002Fp>\n\u003Ch3>Features\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>No authorization required (only provide your user id)\u003C\u002Fli>\n\u003Cli>Support both user Flickr users and Flickr groups \u003C\u002Fli>\n\u003Cli>Change thumbnail size\u003C\u002Fli>\n\u003Cli>Caching system integrated for better performance\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Simple Flickr Widget plugin is created by \u003Ca href=\"https:\u002F\u002Fmekshq.com\" rel=\"nofollow ugc\">Meks\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Live example?\u003C\u002Fh3>\n\u003Cp>You can see Simple Flickr Widget live example on our \u003Ca href=\"https:\u002F\u002Fmekshq.com\u002Fdemo\u002Fvoice\" rel=\"nofollow ugc\">Voice theme demo website\u003C\u002Fa>\u003C\u002Fp>\n","Quickly display your Flickr photos inside WordPress widget.",20000,405991,86,3,"2024-07-29T12:33:00.000Z","6.6.5","3.0",[20,22,70,23,51],"photostream","https:\u002F\u002Fmekshq.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fmeks-simple-flickr-widget.zip",92,{"slug":75,"name":76,"version":77,"author":78,"author_profile":79,"description":80,"short_description":81,"active_installs":46,"downloaded":82,"rating":83,"num_ratings":84,"last_updated":85,"tested_up_to":86,"requires_at_least":87,"requires_php":17,"tags":88,"homepage":91,"download_link":92,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"tantan-flickr","Flickr Photo Album","1.1","joetan","https:\u002F\u002Fprofiles.wordpress.org\u002Fjoetan\u002F","\u003Cp>This Flickr plugin for WordPress will allow you to pull in your Flickr photosets and display them as albums on your WordPress site. There is a pretty simple template provided which you can customize to 100% match the look and feel of your own site.\u003C\u002Fp>\n\u003Cp>The plugin is customizable in a number of different ways. There are options to allow you to hook it up with a number of different Lightbox-style popup overlay display libraries. Third party commenting services such as Disqus are also supported, allowing your visitors to comment on your photos without hopping over to Flickr.com. A simple Flickr widget is also included to let you easily include your photos into your blog’s sidebar.\u003C\u002Fp>\n\u003Cp>On the backend, this plugin will add a new Flickr icon to your WordPress edit screen which will allow you to easily insert your Flickr photos and albums into your blog posts with just a couple clicks. You can either have your inserted photos link back to your WordPress Flickr photo album or directly to your Flickr.com photo page.\u003C\u002Fp>\n\u003Ch3>Documentation\u003C\u002Fh3>\n\u003Cp>If you need more help installing and customizing templates, \u003Ca href=\"http:\u002F\u002Fcode.google.com\u002Fp\u002Fphoto-album\u002Fwiki\u002FDocumentation\" rel=\"nofollow ugc\">see here for more information\u003C\u002Fa>. Feel free to \u003Ca href=\"www.flickr.com\u002Fgroups\u002Ftantannoodles\u002F\" rel=\"nofollow ugc\">post your question into the support group\u003C\u002Fa> if you get stuck.\u003C\u002Fp>\n\u003Ch3>Examples & Thanks\u003C\u002Fh3>\n\u003Cp>Here’s a couple sample installs from around the web.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"http:\u002F\u002Ftantannoodles.com\u002Fphotos\u002F\" rel=\"nofollow ugc\">Tan Tan Noodles\u003C\u002Fa>, \u003Ca href=\"http:\u002F\u002Fmakingitlovely.com\u002Fphotos\u002F\" rel=\"nofollow ugc\">Making it Lovely\u003C\u002Fa>, \u003Ca href=\"http:\u002F\u002Fwww.slipstreamsports.com\u002Fphotos\u002F\" rel=\"nofollow ugc\">Slip Stream Sports\u003C\u002Fa>, \u003Ca href=\"http:\u002F\u002Fwww.lifeofjustin.com\u002Fphotos\u002F\" rel=\"nofollow ugc\">Life of Justin\u003C\u002Fa>, \u003Ca href=\"http:\u002F\u002F72quadrat.de\u002Fblog\u002Fphotos\u002F\" rel=\"nofollow ugc\">72 Quadrat\u003C\u002Fa>, \u003Ca href=\"http:\u002F\u002Fwww.cakejournal.com\u002Fflickr\u002F\" rel=\"nofollow ugc\">Cake Journal\u003C\u002Fa>, \u003Ca href=\"http:\u002F\u002Fwww.dcspride.com\u002Fphotos\u002F\" rel=\"nofollow ugc\">DCS Pride\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>Special thanks to the wonderful volunteers from around the Internet who helped translate this plugin:\u003C\u002Fp>\n\u003Cp>S√∏ren Siim Nielsen, Thomas Sturm, Adrianus F. Tumewu, Marco Balzerani, Lindsey Yoo, Hamid Reza, Jonathan Lumb, Guillermo Lopez, and \u003Ca href=\"https:\u002F\u002Ftranslations.launchpad.net\u002Ftantan-flickr\u002Ftrunk\u002F+pots\u002Ftantan-flickr\" rel=\"nofollow ugc\">many others\u003C\u002Fa>.\u003C\u002Fp>\n","This Flickr plugin for WordPress will allow you to pull in your Flickr photosets and display them as albums on your WordPress site.",152552,20,2,"2009-04-09T19:01:00.000Z","2.7","2.5",[20,89,21,90,22],"gallery","photo-album","http:\u002F\u002Fwww.tantannoodles.com\u002Ftoolkit\u002Fphoto-album\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ftantan-flickr.1.1.1.zip",{"slug":94,"name":95,"version":96,"author":97,"author_profile":98,"description":99,"short_description":100,"active_installs":44,"downloaded":101,"rating":46,"num_ratings":32,"last_updated":102,"tested_up_to":103,"requires_at_least":104,"requires_php":17,"tags":105,"homepage":107,"download_link":108,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"javascript-flickr-badge","Javascript Flickr Badge","2.3","erikrasmussen","https:\u002F\u002Fprofiles.wordpress.org\u002Ferikrasmussen\u002F","\u003Cp>Javascript Flickr Badge uses pure javascript to place a Flickr badge in your widget-enabled sidebar to display recent photos. Photos\u003Cbr \u002F>\nmay be filtered by tag if so desired. All communication with Flickr is client-side, so no extra load is placed on your server at all.\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"http:\u002F\u002Fblog.jyst.us\u002Fjavascript-flickr-badge?utm_source=Wordpress&utm_medium=Wordpress%2BPlugin%2BDirectory&utm_campaign=Javascript%2BFlickr%2BBadge\" rel=\"nofollow ugc\">Plugin Page\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"http:\u002F\u002Fwww.youtube.com\u002Fwatch?v=AyRj7U-dExI\" rel=\"nofollow ugc\">Demo Video\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch4>Features\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Customizable thumbnail size, number of rows, and number of columns to fit perfectly into any sidebar.\u003C\u002Fli>\n\u003Cli>Works for your personal photo stream, group pools, or your friends photostreams.\u003C\u002Fli>\n\u003Cli>Filtering by tag (user feed only).\u003C\u002Fli>\n\u003Cli>Lightweight javascript. No heavy libraries required!\u003C\u002Fli>\n\u003Cli>Works on mobile browsers\u003C\u002Fli>\n\u003Cli>All the work happens client-side. No server load.\u003C\u002Fli>\n\u003Cli>Animations, using CSS3: Vertical Scroll, Shuffle, Zoom (like Flickr’s Flash Badge), 3D Horizontal Flip, 3D Vertical Flip\u003C\u002Fli>\n\u003Cli>Localized to Spanish.\u003C\u002Fli>\n\u003C\u002Ful>\n","Displays photos from Flickr, with optional tag filtering, with pure client-side javascript. Several eye-catching effects available.",10128,"2013-05-27T09:37:00.000Z","3.5.2","2.0.2",[20,106,22,23,51],"media","http:\u002F\u002Fblog.jyst.us\u002Fjavascript-flickr-badge?utm_source=Wordpress&utm_medium=Plugin%2BAdmin&utm_campaign=Javascript%2BFlickr%2BBadge","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fjavascript-flickr-badge.2.3.zip",{"slug":110,"name":111,"version":112,"author":113,"author_profile":114,"description":115,"short_description":116,"active_installs":83,"downloaded":117,"rating":13,"num_ratings":13,"last_updated":118,"tested_up_to":119,"requires_at_least":120,"requires_php":17,"tags":121,"homepage":124,"download_link":125,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"fidgetr","Fidgetr","2.5.3","reaperhulk","https:\u002F\u002Fprofiles.wordpress.org\u002Freaperhulk\u002F","\u003Cp>\u003Ca href=\"http:\u002F\u002Flangui.sh\u002Ffidgetr\u002F\" title=\"Fidgetr Home\" rel=\"nofollow ugc\">Fidgetr\u003C\u002Fa> is a WordPress widget that displays the latest photos from your Flickr photostream in an attractive manner.  It features support for its own themes along with very simple setup and compatibility with most WordPress themes. \u003Cstrong>Check the changelog to see what’s new!\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>Fidgetr requires PHP 5.0 or newer as well as WordPress 2.8 or newer.\u003C\u002Fp>\n\u003Cp>Catch new releases and other information about my plugins by following \u003Ca href=\"http:\u002F\u002Ftwitter.com\u002Freaperhulk\" rel=\"nofollow ugc\">@reaperhulk\u003C\u002Fa> on Twitter.\u003C\u002Fp>\n\u003Ch3>Theme Development FAQ\u003C\u002Fh3>\n\u003Ch4>How do I make a theme?\u003C\u002Fh4>\n\u003Cp>Check out the basic.theme.php file in the themes directory to see a very basic example of how to parse the JSON structure that fidgetr outputs. You can also write PHP.\u003C\u002Fp>\n\u003Ch4>How do I make new themes show up in the configuration dropdown?\u003C\u002Fh4>\n\u003Cp>Simply create a file called yourname.theme.php with your data.  If you have a CSS\u002FJS supplement add those support files in a directory theme_includes\u002Fyourname\u002F\u003C\u002Fp>\n\u003Cp>Please note that in Fidgetr javascript files have a very strict naming structure to allow proper queueing via WP and reduce conflicts with other plugins.  Your file must be named handle-ver-deps.js.  \u003Cem>Do not use – or _ in the handle as they are delimiters.\u003C\u002Fem>  Additionally, ver must be numeric.  Multiple deps can be provided via underscore.  Examples: slimbox-2.01-jquery.js , somelib-1.0-jquery_jquery-ui-core.js.  Be sure to name your scripts correctly to avoid conflicts with other wordpress plugins.\u003C\u002Fp>\n\u003Ch3>License\u003C\u002Fh3>\n\u003Cpre>\u003Ccode>Copyright 2010 Paul Kehrer\n\nThis program is free software; you can redistribute it and\u002For modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program; if not, write to the Free Software\nFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\n\u003C\u002Fcode>\u003C\u002Fpre>\n","A simple and beautiful Flickr widget that supports themes.",24061,"2010-08-17T21:26:00.000Z","3.0.5","2.8",[20,122,22,23,123],"photography","widgets","http:\u002F\u002Flangui.sh\u002Ffidgetr","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Ffidgetr.2.5.3.zip",{"attackSurface":127,"codeSignals":143,"taintFlows":200,"riskAssessment":201,"analyzedAt":207},{"hooks":128,"ajaxHandlers":139,"restRoutes":140,"shortcodes":141,"cronEvents":142,"entryPointCount":13,"unprotectedCount":13},[129,135],{"type":130,"name":131,"callback":132,"file":133,"line":134},"action","admin_menu","setupSettingsPage","flickrapi.php",321,{"type":130,"name":136,"callback":137,"file":133,"line":138},"plugins_loaded","setupWidget",322,[],[],[],[],{"dangerousFunctions":144,"sqlUsage":145,"outputEscaping":147,"fileOperations":84,"externalRequests":13,"nonceChecks":13,"capabilityChecks":13,"bundledLibraries":199},[],{"prepared":13,"raw":13,"locations":146},[],{"escaped":13,"rawEcho":148,"locations":149},24,[150,154,155,157,159,161,163,165,167,169,171,173,175,177,179,181,183,185,187,189,191,193,195,197],{"file":151,"line":152,"context":153},"flickrapi-settingspage.php",11,"raw output",{"file":151,"line":152,"context":153},{"file":151,"line":156,"context":153},27,{"file":151,"line":158,"context":153},32,{"file":151,"line":160,"context":153},37,{"file":151,"line":162,"context":153},41,{"file":151,"line":164,"context":153},45,{"file":151,"line":166,"context":153},54,{"file":151,"line":168,"context":153},59,{"file":151,"line":170,"context":153},77,{"file":151,"line":172,"context":153},111,{"file":151,"line":174,"context":153},113,{"file":151,"line":176,"context":153},120,{"file":151,"line":178,"context":153},121,{"file":151,"line":180,"context":153},125,{"file":151,"line":182,"context":153},126,{"file":133,"line":184,"context":153},180,{"file":133,"line":186,"context":153},198,{"file":133,"line":188,"context":153},218,{"file":133,"line":190,"context":153},261,{"file":133,"line":192,"context":153},263,{"file":133,"line":194,"context":153},272,{"file":133,"line":196,"context":153},274,{"file":133,"line":198,"context":153},284,[],[],{"summary":202,"deductions":203},"The static analysis of the flickrapi plugin v0.7 indicates a generally strong security posture in terms of its attack surface and data handling. The plugin reports zero AJAX handlers, REST API routes, shortcodes, or cron events, meaning there are no direct entry points for external interaction that could be exploited without further authentication or permission checks. Furthermore, the absence of dangerous functions and external HTTP requests is a positive sign. All SQL queries are 100% prepared, which effectively mitigates the risk of SQL injection vulnerabilities.\n\nHowever, a significant concern arises from the output escaping analysis, which shows 0% proper escaping for 24 total outputs. This represents a high risk of cross-site scripting (XSS) vulnerabilities, as user-supplied data, if not properly escaped before being displayed, could be executed as malicious scripts in a user's browser. The lack of any recorded vulnerabilities or CVEs in its history suggests a history of good security practices or a lack of targeted analysis, but this cannot compensate for the identified output escaping flaw.\n\nIn conclusion, while flickrapi v0.7 demonstrates good practices in limiting its attack surface and preventing SQL injection, the complete lack of output escaping is a critical weakness. This makes the plugin highly susceptible to XSS attacks, and this single vulnerability outweighs the otherwise positive indicators. The absence of historical vulnerabilities is encouraging but does not negate the immediate risk posed by the unescaped output.",[204],{"reason":205,"points":206},"0% properly escaped output",8,"2026-03-16T22:35:10.109Z",{"wat":209,"direct":216},{"assetPaths":210,"generatorPatterns":211,"scriptPaths":212,"versionParams":213},[],[],[],[214,215],"flickrapi\u002Fstyle.css?ver=","flickrapi.php?ver=",{"cssClasses":217,"htmlComments":218,"htmlAttributes":219,"restEndpoints":220,"jsGlobals":223,"shortcodeOutput":224},[],[],[],[221,222],"\u002Fservices\u002Frest\u002F?method=flickr.photos.search","\u002Fservices\u002Frest\u002F?method=flickr.photos.getRecent",[],[225],"\u003Ca href=\"%flickr_page%\" title=\"%title%\">\u003Cimg src=\"%image_square%\" alt=\"%title%\"\u002F>\u003C\u002Fa>"]