[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fVLGLksknw0xH9mldxQKtSYso5JPaUI7IdqkFRFK_N6A":3,"$feUu5FbYgTTfgjUMwgYwhSO7Pd-O0iTEbCHUOfj1vhtU":266,"$fxxXCUQdY6N1EIAp-_u09mQc22Jz2lmxuj-lJ3Bjv6GM":271},{"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,"discovery_status":29,"vulnerabilities":30,"developer":31,"crawl_stats":27,"alternatives":39,"analysis":162,"fingerprints":243},"post-author-ip","Post Author IP","1.4","Scott Reilly","https:\u002F\u002Fprofiles.wordpress.org\u002Fcoffee2code\u002F","\u003Cp>This plugin records the IP address of the original post author when a post first gets created.\u003C\u002Fp>\n\u003Cp>The admin listing of posts is amended with a new “Author IP” column that shows the IP address of the author who first saved the post.\u003C\u002Fp>\n\u003Cp>The plugin is unable to provide IP address information for posts that were created prior to the use of this plugin.\u003C\u002Fp>\n\u003Cp>Links: \u003Ca href=\"https:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fpost-author-ip\u002F\" rel=\"nofollow ugc\">Plugin Homepage\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fpost-author-ip\u002F\" rel=\"ugc\">Plugin Directory Page\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fcoffee2code\u002Fpost-author-ip\u002F\" rel=\"nofollow ugc\">GitHub\u003C\u002Fa> | \u003Ca href=\"https:\u002F\u002Fcoffee2code.com\" rel=\"nofollow ugc\">Author Homepage\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Hooks\u003C\u002Fh3>\n\u003Cp>The plugin is further customizable via four filters. Typically, code making use of filters should ideally be put into a mu-plugin or site-specific plugin (which is beyond the scope of this readme to explain).\u003C\u002Fp>\n\u003Cp>\u003Cstrong>c2c_show_post_author_ip_column (filter)\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The ‘c2c_show_post_author_ip_column’ filter allows you to determine if the post author IP column should appear in the admin post listing table. Your hooking function can be sent 1 argument:\u003C\u002Fp>\n\u003Cp>Argument :\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$show_column (bool) Should the column be shown? Default true.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Don't show the post author IP column except to admins.\n *\n * @param bool $show_column Should the column be shown? Default true.\n * @return bool\n *\u002F\nfunction post_author_ip_column_admin_only( $show ) {\n    if ( ! current_user_can( 'manage_options' ) ) {\n        $show = false;\n    }\n    return $show;\n}\nadd_filter( 'c2c_show_post_author_ip_column', 'post_author_ip_column_admin_only' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>c2c_get_post_author_ip (filter)\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The ‘c2c_get_post_author_ip’ filter allows you to customize the value stored as the post author IP address. Your hooking function can be sent 2 arguments:\u003C\u002Fp>\n\u003Cp>Arguments :\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$ip (string)   The post author IP address.\u003C\u002Fli>\n\u003Cli>$post_id (int) The post ID.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Store all IP addresses from local subnet IP addresses as the same IP address.\n *\n * @param string $ip      The post author IP address.\n * @param int    $post_id The post ID.\n * @return string\n *\u002F\nfunction customize_post_author_ip( $ip, $post_id ) {\n    if ( 0 === strpos( $ip, '192.168.' ) ) {\n        $ip = '192.168.1.1';\n    }\n    return $ip;\n}\nadd_filter( 'c2c_get_post_author_ip', 'customize_post_author_ip', 10, 2 );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>c2c_get_current_user_ip (filter)\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The ‘c2c_get_current_user_ip’ filter allows you to customize the current user’s IP address, as used by the plugin. Your hooking function can be sent 1 argument:\u003C\u002Fp>\n\u003Cp>Argument :\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$ip (string)   The post author IP address.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Overrides localhost IP address.\n *\n * @param string $ip      The post author IP address.\n * @param int    $post_id The post ID.\n * @return string\n *\u002F\nfunction customize_post_author_ip( $ip, $post_id ) {\n    if ( 0 === strpos( $ip, '192.168.' ) ) {\n        $ip = '192.168.1.1';\n    }\n    return $ip;\n}\nadd_filter( 'c2c_get_post_author_ip', 'customize_post_author_ip', 10, 2 );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>\u003Cstrong>c2c_post_author_ip_allowed (filter)\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cp>The ‘c2c_post_author_ip_allowed’ filter allows you to determine on a per-post basis if the post author IP should be stored. Your hooking function can be sent 3 arguments:\u003C\u002Fp>\n\u003Cp>Arguments :\u003C\u002Fp>\n\u003Cul>\n\u003Cli>$allowed (bool) Can post author IP be saved for post? Default true.\u003C\u002Fli>\n\u003Cli>$post_id (int)  The post ID.\u003C\u002Fli>\n\u003Cli>$ip (string)    The post author IP address.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>\u002F**\n * Don't bother storing localhost IP addresses.\n *\n * @param bool   $allowed Can post author IP be saved for post? Default true.\n * @param int    $post_id The post ID.\n * @param string $ip      The post author IP address.\n * @return string\n *\u002F\nfunction disable_localhost_post_author_ips( $allowed, $post_id, $ip ) {\n    if ( $allowed && 0 === strpos( $ip, '192.168.' ) ) {\n        $allowed = false;\n    }\n    return $allowed;\n}\nadd_filter( 'c2c_post_author_ip_allowed', 'disable_localhost_post_author_ips', 10, 3 );\n\u003C\u002Fcode>\u003C\u002Fpre>\n","Records the IP address of the original post author when a post first gets created.",90,3454,0,"2021-06-10T08:19:00.000Z","5.7.15","4.9","",[19,20,21,22,23],"audit","author","ip","ip-address","post","https:\u002F\u002Fcoffee2code.com\u002Fwp-plugins\u002Fpost-author-ip\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpost-author-ip.1.4.zip",85,null,"2026-04-16T10:56:18.058Z","no_bundle",[],{"slug":32,"display_name":7,"profile_url":8,"plugin_count":33,"total_installs":34,"avg_security_score":35,"avg_patch_time_days":36,"trust_score":37,"computed_at":38},"coffee2code",63,91830,88,374,71,"2026-05-20T09:27:22.045Z",[40,59,77,123,144],{"slug":41,"name":42,"version":43,"author":44,"author_profile":45,"description":46,"short_description":47,"active_installs":11,"downloaded":48,"rating":49,"num_ratings":50,"last_updated":51,"tested_up_to":52,"requires_at_least":53,"requires_php":17,"tags":54,"homepage":57,"download_link":58,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"wp-multi-author","WP Multi Author","1.0.1","aagjalpankaj","https:\u002F\u002Fprofiles.wordpress.org\u002Faagjalpankaj\u002F","\u003Cp>WP Multi Author is a plugin which lets you assign multiple contributors to a post.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Assign multiple contributors to a post.\u003C\u002Fli>\n\u003Cli>Show the contributors list below the post at frontend.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Steps\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Go to Dashboard >> Posts >> [Edit a post]\u003C\u002Fli>\n\u003Cli>Add contributors from the side box “Post Contributors”.\u003C\u002Fli>\n\u003Cli>The added contributors will be shown below the post at frontend.\u003C\u002Fli>\n\u003C\u002Ful>\n","One post, multiple contributors!",3743,100,2,"2020-02-22T06:32:00.000Z","5.3.21","4.0",[20,55,56,23],"contributors","multiple","https:\u002F\u002Fgithub.com\u002Faagjalpankaj\u002Fwp-multi-author\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-multi-author.zip",{"slug":60,"name":61,"version":62,"author":63,"author_profile":64,"description":65,"short_description":66,"active_installs":67,"downloaded":68,"rating":13,"num_ratings":13,"last_updated":69,"tested_up_to":70,"requires_at_least":71,"requires_php":17,"tags":72,"homepage":17,"download_link":76,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"wpi-multiple-contributors","Wpi Multiple Contributors","1.0","prajakta ghole","https:\u002F\u002Fprofiles.wordpress.org\u002Fprajakta-ghole\u002F","\u003Cp>On Admin side :\u003C\u002Fp>\n\u003Cp>1.It provides a metabox labelled ‘Contributor’, which contains list of all authors on post-editor page.\u003C\u002Fp>\n\u003Cp>2.User (Admin\u002FEditor\u002FAuthor) can tick one or more authors from the list by checking the checkbox.\u003C\u002Fp>\n\u003Cp>On Front end :\u003C\u002Fp>\n\u003Cp>1.It provides a contibutor box below the post content where contributor names with their Gravatars are shown.\u003C\u002Fp>\n\u003Cp>2.The link to respective ‘author’ page will also be there.\u003C\u002Fp>\n","This plugin facilitates in assigning and displaying more than one author on a post.",10,1284,"2016-04-02T16:35:00.000Z","4.4.34","4.4.1",[73,74,75],"co-authors","multiple-contributors","post-co-authors","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwpi-multiple-contributors.zip",{"slug":78,"name":79,"version":80,"author":81,"author_profile":82,"description":83,"short_description":84,"active_installs":67,"downloaded":85,"rating":13,"num_ratings":13,"last_updated":86,"tested_up_to":87,"requires_at_least":88,"requires_php":17,"tags":89,"homepage":121,"download_link":122,"security_score":26,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"wprs-data-transporter","WPRS Data Transporter","0.1","Hesham Zebida","https:\u002F\u002Fprofiles.wordpress.org\u002Fhishaman\u002F","\u003Cp>This plugin allows you to transfer your inputs Schema markups for reviews and star ratings  for Rich Snippets data from one theme\u002Fplugin to another. We all know how difficult it can be to switch  between platforms. This plugin remedies that.\u003C\u002Fp>\n\u003Cp>Just choose what platform your moving away from, platform you want to move to. Click “analyze” to see what records and elements are compatible, and click “convert” to make the conversion.\u003C\u002Fp>\n\u003Cp>This plugin was created to mainly assist \u003Ca href=\"https:\u002F\u002Fwprichsnippets.com\u002F\" rel=\"nofollow ugc\">WPRichSnippets\u003C\u002Fa> plugin users to transfer their site data.\u003C\u002Fp>\n\u003Cp>\u003Cstrong>Supported Themes\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>None.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Cstrong>Supported Plugins\u003C\u002Fstrong>\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Author hReview\u003C\u002Fli>\n\u003Cli>WP Reviews\u003C\u002Fli>\n\u003Cli>WPRichSnippets\u003C\u002Fli>\n\u003C\u002Ful>\n","Simply transfer your inputs Schema markups for reviews and star ratings data from one theme\u002Fplugin to another.",1491,"2016-04-02T10:36:00.000Z","4.5.33","3.0",[90,91,92,93,94,95,96,97,98,99,100,101,102,103,23,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120],"author-hreview","authorhreview","custom-fields","custom-post-types","data","data-transfer","google","markup","meta","meta-fields","migrate","migrating","migration","page","post-meta","rating","rating-plugins","rating-themes","ratings","reviews","reviews-plugins","reviews-themes","rich-snippets","schema","search","so","star-rating","wp-reviews","wp-rich-snippets","wpreviews","wprichsnippets","https:\u002F\u002Fwprichsnippets.com","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwprs-data-transporter.zip",{"slug":124,"name":125,"version":126,"author":127,"author_profile":128,"description":129,"short_description":130,"active_installs":13,"downloaded":131,"rating":49,"num_ratings":132,"last_updated":133,"tested_up_to":134,"requires_at_least":135,"requires_php":136,"tags":137,"homepage":141,"download_link":142,"security_score":143,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"coopso-contributors","Coopso Contributors","1.0.0","Faiz Shaikh","https:\u002F\u002Fprofiles.wordpress.org\u002Ffaiz786\u002F","\u003Cp>This is a WordPress contributors plugin. The user(admin, author, and editor) can select multiple users who contribute to the post. When the admin can activate this plugin then the contributors\\’ meta box will be displayed on the post page admin side, and the admin can select the users (editors, authors, admin) who can contribute to the post. At the front end under the post details page after the post content, there will be contributors box will be displayed. In the contributor\\’s box, users (authors, editors, and admin) names and Gravatars will be displayed. The guest users can click on the Gravatar or username and it will be redirected to the author page.\u003C\u002Fp>\n\u003Cp>Major features in Coopso Contributors include:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>The user (admin, author, and editor) can select the multiple users who contribute to the post.\u003C\u002Fli>\n\u003Cli>At the front end after the post details page contributors box will be displayed. \u003C\u002Fli>\n\u003Cli>In the Contributors box, all authors\\’ names and Gravatars will be displayed. \u003C\u002Fli>\n\u003Cli>The guest user can click on the contributor name or Gravatars and the user can redirect to the author page.\u003C\u002Fli>\n\u003C\u002Ful>\n","WordPress contributors plugin. The user(admin, author, and editor) can select the multiple users who contribute to the post and at the front end after &hellip;",696,1,"2024-08-13T12:40:00.000Z","6.4.8","5.0","7.0",[55,138,139,74,140],"multiple-post-authors","multiple-post-contributors","post-contributor","http:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcoopso-contributors\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcoopso-contributors.zip",92,{"slug":145,"name":146,"version":126,"author":147,"author_profile":148,"description":149,"short_description":150,"active_installs":13,"downloaded":151,"rating":13,"num_ratings":13,"last_updated":152,"tested_up_to":153,"requires_at_least":154,"requires_php":155,"tags":156,"homepage":17,"download_link":161,"security_score":143,"vuln_count":13,"unpatched_count":13,"last_vuln_date":27,"fetched_at":28},"darven-who-published","Darven – Who Published","Letícia Moreira","https:\u002F\u002Fprofiles.wordpress.org\u002Ffkdarven\u002F","\u003Cp>Darven – Who Published ensures editorial integrity by saving and displaying the original author who published a WordPress post or page. Even if a post is edited later by other users, the plugin preserves the original publisher information and displays it in the admin interface.\u003C\u002Fp>\n\u003Cp>Features include:\u003C\u002Fp>\n\u003Col>\n\u003Cli>A new column “Who Published” in post and page listings.\u003C\u002Fli>\n\u003Cli>A visual badge system to highlight confirmed and guessed authors.\u003C\u002Fli>\n\u003Cli>A metabox in the post editor showing the original author.\u003C\u002Fli>\n\u003Cli>Admin filtering by original publisher.\u003C\u002Fli>\n\u003Cli>REST API compatibility.\u003C\u002Fli>\n\u003Cli>Translations included: pt_BR, pt_PT, es_ES.\u003C\u002Fli>\n\u003C\u002Fol>\n","Preserves and displays the original user who published a post, even after edits or updates.",397,"2025-04-21T21:46:00.000Z","6.8.5","5.6","8.0",[157,158,98,159,160],"authorship","editorial","post-author","publisher","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdarven-who-published.1.0.0.zip",{"attackSurface":163,"codeSignals":222,"taintFlows":233,"riskAssessment":234,"analyzedAt":242},{"hooks":164,"ajaxHandlers":218,"restRoutes":219,"shortcodes":220,"cronEvents":221,"entryPointCount":13,"unprotectedCount":13},[165,171,176,180,183,186,190,193,197,200,204,207,211,215],{"type":166,"name":167,"callback":168,"file":169,"line":170},"filter","manage_posts_columns","add_post_column","post-author-ip.php",75,{"type":172,"name":173,"callback":174,"priority":67,"file":169,"line":175},"action","manage_posts_custom_column","handle_column_data",76,{"type":172,"name":177,"callback":178,"file":169,"line":179},"load-edit.php","add_admin_css",78,{"type":172,"name":181,"callback":178,"file":169,"line":182},"load-post.php",79,{"type":172,"name":184,"callback":184,"priority":67,"file":169,"line":185},"transition_post_status",80,{"type":172,"name":187,"callback":188,"file":169,"line":189},"post_submitbox_misc_actions","show_post_author_ip",81,{"type":172,"name":191,"callback":191,"file":169,"line":192},"enqueue_block_editor_assets",82,{"type":172,"name":194,"callback":195,"file":169,"line":196},"init","register_meta",83,{"type":166,"name":198,"callback":198,"priority":67,"file":169,"line":199},"is_protected_meta",84,{"type":172,"name":201,"callback":202,"file":169,"line":203},"admin_init","add_privacy_policy_content",87,{"type":166,"name":205,"callback":206,"file":169,"line":35},"wp_privacy_personal_data_erasers","register_privacy_erasers",{"type":166,"name":208,"callback":209,"file":169,"line":210},"wp_privacy_personal_data_exporters","register_data_exporter",89,{"type":172,"name":212,"callback":213,"file":169,"line":214},"admin_head","admin_css",244,{"type":172,"name":216,"callback":194,"file":169,"line":217},"plugins_loaded",619,[],[],[],[],{"dangerousFunctions":223,"sqlUsage":224,"outputEscaping":226,"fileOperations":13,"externalRequests":13,"nonceChecks":13,"capabilityChecks":132,"bundledLibraries":232},[],{"prepared":50,"raw":13,"locations":225},[],{"escaped":227,"rawEcho":132,"locations":228},3,[229],{"file":169,"line":230,"context":231},255,"raw output",[],[],{"summary":235,"deductions":236},"The \"post-author-ip\" v1.4 plugin exhibits a generally strong security posture based on the static analysis.  The plugin demonstrates good practices by utilizing prepared statements for all SQL queries and having a high percentage of properly escaped output.  Crucially, the absence of any known CVEs and a clean vulnerability history further reinforces this positive outlook.  The limited attack surface, with no identified AJAX handlers, REST API routes, shortcodes, or cron events, significantly reduces the potential for external exploitation.  However, a notable concern is the complete lack of nonce checks and the single capability check appearing to be the only authentication\u002Fauthorization mechanism within the code. While the taint analysis revealed no critical or high-severity flows, the lack of comprehensive testing (0 flows analyzed) makes it difficult to definitively rule out potential issues in more complex scenarios.  The absence of file operations and external HTTP requests also contributes to a reduced risk profile.",[237,240],{"reason":238,"points":239},"Missing nonce checks on AJAX\u002Fother entry points",5,{"reason":241,"points":227},"Limited taint flow analysis coverage","2026-03-16T21:18:06.789Z",{"wat":244,"direct":251},{"assetPaths":245,"generatorPatterns":247,"scriptPaths":248,"versionParams":249},[246],"\u002Fwp-content\u002Fplugins\u002Fpost-author-ip\u002Fcss\u002Fadmin.css",[],[],[250],"post-author-ip\u002Fcss\u002Fadmin.css?ver=",{"cssClasses":252,"htmlComments":253,"htmlAttributes":257,"restEndpoints":259,"jsGlobals":263,"shortcodeOutput":265},[],[254,255,256],"\u003C!-- Post Author IP Meta Box -->","\u003C!-- End Post Author IP Meta Box -->","\u003C!-- Begin Post Author IP Field -->",[258],"data-post-author-ip-id",[260,261,262],"\u002Fwp-json\u002Fwp\u002Fv2\u002Fposts?meta_key=c2c-post-author-ip","\u002Fwp-json\u002Fwp\u002Fv2\u002Fpages?meta_key=c2c-post-author-ip","\u002Fwp-json\u002Fwp\u002Fv2\u002Fcustom_post_type?meta_key=c2c-post-author-ip",[264],"c2c_PostAuthorIP",[],{"error":267,"url":268,"statusCode":269,"statusMessage":270,"message":270},true,"http:\u002F\u002Flocalhost\u002Fapi\u002Fplugins\u002Fpost-author-ip\u002Fbundle",404,"no bundle for this plugin yet",{"slug":4,"current_version":6,"total_versions":272,"versions":273},6,[274,280,287,294,301,308],{"version":6,"download_url":25,"svn_tag_url":275,"released_at":27,"has_diff":276,"diff_files_changed":277,"diff_lines":27,"trac_diff_url":278,"vulnerabilities":279,"is_current":267},"https:\u002F\u002Fplugins.svn.wordpress.org\u002Fpost-author-ip\u002Ftags\u002F1.4\u002F",false,[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fpost-author-ip%2Ftags%2F1.3&new_path=%2Fpost-author-ip%2Ftags%2F1.4",[],{"version":281,"download_url":282,"svn_tag_url":283,"released_at":27,"has_diff":276,"diff_files_changed":284,"diff_lines":27,"trac_diff_url":285,"vulnerabilities":286,"is_current":276},"1.3","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpost-author-ip.1.3.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fpost-author-ip\u002Ftags\u002F1.3\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fpost-author-ip%2Ftags%2F1.2.1&new_path=%2Fpost-author-ip%2Ftags%2F1.3",[],{"version":288,"download_url":289,"svn_tag_url":290,"released_at":27,"has_diff":276,"diff_files_changed":291,"diff_lines":27,"trac_diff_url":292,"vulnerabilities":293,"is_current":276},"1.2.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpost-author-ip.1.2.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fpost-author-ip\u002Ftags\u002F1.2.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fpost-author-ip%2Ftags%2F1.2&new_path=%2Fpost-author-ip%2Ftags%2F1.2.1",[],{"version":295,"download_url":296,"svn_tag_url":297,"released_at":27,"has_diff":276,"diff_files_changed":298,"diff_lines":27,"trac_diff_url":299,"vulnerabilities":300,"is_current":276},"1.2","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpost-author-ip.1.2.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fpost-author-ip\u002Ftags\u002F1.2\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fpost-author-ip%2Ftags%2F1.1&new_path=%2Fpost-author-ip%2Ftags%2F1.2",[],{"version":302,"download_url":303,"svn_tag_url":304,"released_at":27,"has_diff":276,"diff_files_changed":305,"diff_lines":27,"trac_diff_url":306,"vulnerabilities":307,"is_current":276},"1.1","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpost-author-ip.1.1.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fpost-author-ip\u002Ftags\u002F1.1\u002F",[],"https:\u002F\u002Fplugins.trac.wordpress.org\u002Fchangeset?old_path=%2Fpost-author-ip%2Ftags%2F1.0&new_path=%2Fpost-author-ip%2Ftags%2F1.1",[],{"version":62,"download_url":309,"svn_tag_url":310,"released_at":27,"has_diff":276,"diff_files_changed":311,"diff_lines":27,"trac_diff_url":27,"vulnerabilities":312,"is_current":276},"https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fpost-author-ip.1.0.zip","https:\u002F\u002Fplugins.svn.wordpress.org\u002Fpost-author-ip\u002Ftags\u002F1.0\u002F",[],[]]