[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fJQugWMafBfw1cXwNVgwLohiW2xOTOB4QLZIDTTiL45U":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":14,"last_updated":15,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":19,"homepage":24,"download_link":25,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29,"vulnerabilities":30,"developer":31,"crawl_stats":28,"alternatives":38,"analysis":135,"fingerprints":159},"comment-reply-notifier","Comment Reply Notifier","1.0","leo108","https:\u002F\u002Fprofiles.wordpress.org\u002Fleo108\u002F","\u003Cp>When someone reply a comment, the person who receive this reply will receive a mail.\u003Cbr \u002F>\n当有人回复评论时，被回复的人会收到一封提醒邮件。\u003C\u002Fp>\n","When someone reply a comment,the person who receive the reply will receive a mail 有人回复评论时，被回复的人会收到一封提醒邮件",20,3793,40,1,"2012-06-18T13:05:00.000Z","3.4.2","2.0","",[20,21,22,23],"comment","mail","notifier","reply","http:\u002F\u002Fleo108.com\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcomment-reply-notifier.1.0.zip",85,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":7,"display_name":7,"profile_url":8,"plugin_count":32,"total_installs":33,"avg_security_score":34,"avg_patch_time_days":35,"trust_score":36,"computed_at":37},4,120,89,30,86,"2026-04-05T14:38:48.748Z",[39,60,80,100,117],{"slug":40,"name":41,"version":42,"author":43,"author_profile":44,"description":45,"short_description":46,"active_installs":47,"downloaded":48,"rating":49,"num_ratings":50,"last_updated":51,"tested_up_to":52,"requires_at_least":53,"requires_php":18,"tags":54,"homepage":57,"download_link":58,"security_score":59,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"comment-reply-email-notification","Comment Reply Email Notification","1.39.0","Arno Welzel","https:\u002F\u002Fprofiles.wordpress.org\u002Fawelzel\u002F","\u003Cp>This plugin allows visitors to subscribe to get answers to their comments via e-mail.\u003C\u002Fp>\n\u003Ch3>Warning\u003C\u002Fh3>\n\u003Cp>This plugin uses the “wp_insert_comment” hook, therefore, everytime a comment is created, a notification is likely to be sent. If you are importing comments into your blog, it’s a good idea to disable this plugin.\u003C\u002Fp>\n\u003Ch3>Sending e-mails does not work?\u003C\u002Fh3>\n\u003Cp>The plugin uses the standard WordPress e-mail function. If you have problems getting e-mails sent, you might try using plugins like https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fwp-mail-smtp\u002F to improve sending e-mails from your site.\u003C\u002Fp>\n\u003Ch3>Customizing the layout of the checkboxes\u003C\u002Fh3>\n\u003Cp>The label next to the checkboxes don’t contain a whitespace. Depending on your theme you might want to add a custom style like this to get a space between the checkbox and the label:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>input#cren_subscribe_to_comment, input#cren_gdpr {\n  margin-right: 0.5em;\n}\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>The plugin does not add this style be default as it depends on your theme if this is neccessary.\u003C\u002Fp>\n\u003Ch3>Customizing the email template\u003C\u002Fh3>\n\u003Cp>To customize the email template, copy the “templates” folder to your theme folder (a child theme should be used to avoid losing the custom templates when the theme is updated). The plugin will look for templates on the “\u002Fwp-content\u002Fthemes\u002F[THEME]\u002Ftemplates\u002Fcren\u002F” folder; if a custom template is not found, then it will fallback to the default template.\u003C\u002Fp>\n\u003Cp>Templates folder on GitHub: https:\u002F\u002Fgithub.com\u002Farnowelzel\u002Fworpdress-comment-reply-email-notification\u002Ftree\u002Fmaster\u002Ftemplates\u003C\u002Fp>\n\u003Ch3>Changing the subscription checkbox label\u003C\u002Fh3>\n\u003Cp>The checkbox label can be changed with the \u003Ccode>cren_comment_checkbox_label\u003C\u002Fcode> filter. This way you can update the text to your taste and keep the plugin updated.\u003C\u002Fp>\n\u003Ch3>Changing the GDPR checkbox label\u003C\u002Fh3>\n\u003Cp>The GDPR checkbox label can be changed with the \u003Ccode>cren_gdpr_checkbox_label\u003C\u002Fcode> filter. This way you can update the text to your taste and keep the plugin updated.\u003C\u002Fp>\n\u003Ch3>Modifiying HTML output\u003C\u002Fh3>\n\u003Cp>Using the filters \u003Ccode>cren_gdpr_checkbox_html\u003C\u002Fcode> and \u003Ccode>cren_comment_subscribe_html\u003C\u002Fcode> you can modify the HTML output of the checkboxes if needed.\u003C\u002Fp>\n\u003Cp>Example:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_filter('cren_gdpr_checkbox_html', function(string $html_output, string $label_text, string $privacy_policy_url): string {\n    $html_output = '\u003Cdiv class=\"comment-form-gdpr-consent form-check mb-3\">\u003Cinput id=\"cren_gdpr\" class=\"form-check-input\" name=\"cren_gdpr\" type=\"checkbox\" value=\"yes\" required checked>\u003Clabel for=\"cren_gdpr\" class=\"form-check-label\">' . $label_text . '\u003Cspan class=\"text-danger fw-bold\">*\u003C\u002Fspan> (\u003Ca href=\"' . $privacy_policy_url . '\" title=\"Privacy Policy\" target=\"_blank\" rel=\"internal\">Privacy Policy\u003C\u002Fa>)\u003C\u002Flabel>\u003C\u002Fdiv>';\n\n    return $html_output;\n}, 10, 3);\n\nadd_filter('cren_comment_subscribe_html', function(string $html_output, string $label_text, bool $checked_default): string {\n    $checked = $checked_default ? 'checked' : '';\n    $html_output = '\u003Cdiv class=\"comment-form-email-consent form-check mb-3\">\u003Cinput id=\"cren_subscribe_to_comment\" class=\"form-check-input\" name=\"cren_subscribe_to_comment\" type=\"checkbox\" value=\"on\" ' . $checked . '>\u003Clabel for=\"cren_subscribe_to_comment\" class=\"form-check-label\">' . $label_text . '\u003C\u002Flabel>\u003C\u002Fdiv>';\n\n    return $html_output;\n}, 10, 3);\n\u003C\u002Fcode>\u003C\u002Fpre>\n","This plugin allows visitors to subscribe to get answers to their comments via e-mail.",3000,106835,96,32,"2025-12-13T08:26:00.000Z","6.9.4","4.4.0",[20,55,56,23],"email","notification","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcomment-reply-email-notification\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcomment-reply-email-notification.1.39.0.zip",100,{"slug":61,"name":62,"version":63,"author":64,"author_profile":65,"description":66,"short_description":67,"active_installs":68,"downloaded":69,"rating":70,"num_ratings":71,"last_updated":72,"tested_up_to":73,"requires_at_least":74,"requires_php":18,"tags":75,"homepage":78,"download_link":79,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"comment-email-reply","Comment Email Reply","1.0.4","kilozwo","https:\u002F\u002Fprofiles.wordpress.org\u002Fkilozwo\u002F","\u003Cp>Simply notifies comment-author via email if someone replies to his comment. Zero Configuration.\u003C\u002Fp>\n","Simply notifies comment-author via email if someone replies to his comment. Zero Configuration.",600,10901,90,15,"2015-04-06T11:37:00.000Z","4.1.42","3.0.1",[76,77,55,56,23],"author","comments","http:\u002F\u002Fkilozwo.de\u002Fwordpress-comment-email-reply-plugin","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcomment-email-reply.1.0.4.zip",{"slug":81,"name":82,"version":83,"author":84,"author_profile":85,"description":86,"short_description":87,"active_installs":88,"downloaded":89,"rating":90,"num_ratings":71,"last_updated":91,"tested_up_to":92,"requires_at_least":93,"requires_php":18,"tags":94,"homepage":95,"download_link":96,"security_score":97,"vuln_count":98,"unpatched_count":27,"last_vuln_date":99,"fetched_at":29},"comment-reply-email","Comment Reply Email","1.6.0","treeflips","https:\u002F\u002Fprofiles.wordpress.org\u002Ftreeflips\u002F","\u003Cp>This simple plugin automatically sends a notification email to commenters when someone replies to their comment. This feature can be enabled automatically by the site admin, or through an opt-in\u002Fopt-out checkbox below comment section on frontend.\u003C\u002Fp>\n\u003Cp>It’s best to use it with an email-sending plugin like WP Mail SMTP, and with SMTP or transactional email service like SendGrid or Mailgun. Sending from your server via PHPmailer can cause deliverability issues (email notfications caught in spam).\u003C\u002Fp>\n\u003Cp>I loved the original plugin \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcomment-reply-notification\u002F\" rel=\"ugc\">Comment Reply Notification\u003C\u002Fa> (by @denishua) for its simplicity but it was abandoned and stopped working years ago. So I forked and revived it to work with the latest PHP and WordPress. I also improved some wording, removed unnecessary author links in the email notifications, and also keep it more updated. Credits to Denis who first hacked it 5 years ago, and later Walter for fixing string escapes.\u003C\u002Fp>\n\u003Ch4>Features:\u003C\u002Fh4>\n\u003Cul>\n\u003Cli>Feature modes – disabled, author\u002Fadmin replies only, automatically, checkbox opt-in.\u003C\u002Fli>\n\u003Cli>Edit email notification – subject and message.\u003C\u002Fli>\n\u003Cli>[year] shortcode for dynamic year in email templates.\u003C\u002Fli>\n\u003Cli>Developer-friendly hook for adding custom shortcodes.\u003C\u002Fli>\n\u003Cli>Fixes issue with email notifications for moderated comments.\u003C\u002Fli>\n\u003Cli>Can delete plugin options – after deactivation.\u003C\u002Fli>\n\u003C\u002Ful>\n","Commenters can receive email notifications of replies to their comments.",500,15548,94,"2025-06-27T20:16:00.000Z","6.8.5","4.0",[20,55,56,23],"https:\u002F\u002Fwpjohnny.com\u002Fcomment-reply-email","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcomment-reply-email.zip",99,2,"2024-07-05 00:00:00",{"slug":101,"name":102,"version":17,"author":103,"author_profile":104,"description":105,"short_description":106,"active_installs":107,"downloaded":108,"rating":59,"num_ratings":14,"last_updated":109,"tested_up_to":110,"requires_at_least":111,"requires_php":18,"tags":112,"homepage":115,"download_link":116,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"comment-reply-by-admins-notifier","Comment Reply by Admins Notifier","Yakup Hoca","https:\u002F\u002Fprofiles.wordpress.org\u002Fyakuphoca\u002F","\u003Cp>The visitors send their questions in comments, then they leaves our web sites. When we reply their comment to answer their questions, this plugin sends an e-mail about this. So that, the visitor will learn this situation and return to our site to read our answer.\u003C\u002Fp>\n\u003Cp>For support: \u003Ca href=\"http:\u002F\u002Fwww.yakuphoca.com\u002Fcomment-reply-by-admins-notifier-plugin\u002F\" title=\"Support by Yakup Hoca\" rel=\"nofollow ugc\">Plugin URI\u003C\u002Fa>\u003C\u002Fp>\n","This plugin sends an e-mail notify when an admin or an editor of site reply a comment.",80,3532,"2013-07-26T09:29:00.000Z","3.5.2","3.0",[113,114,77,22,23],"admin","comment-reply","http:\u002F\u002Fwww.yakuphoca.com\u002Fcomment-reply-by-admins-notifier-plugin\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fcomment-reply-by-admins-notifier.zip",{"slug":118,"name":119,"version":120,"author":121,"author_profile":122,"description":123,"short_description":124,"active_installs":125,"downloaded":126,"rating":59,"num_ratings":14,"last_updated":127,"tested_up_to":18,"requires_at_least":128,"requires_php":18,"tags":129,"homepage":131,"download_link":132,"security_score":133,"vuln_count":14,"unpatched_count":14,"last_vuln_date":134,"fetched_at":29},"replymail","replyMail","1.2.0","bingu","https:\u002F\u002Fprofiles.wordpress.org\u002Fbingu\u002F","\u003Cp>\u003Cstrong>[ATTENTION]\u003C\u002Fstrong> WordPress version MUST up to 2.7\u003C\u002Fp>\n\u003Cp>Enhance the threaded comments system of WordPress 2.7.\u003Cbr \u002F>\nWhen someone reply to your comment, send a email to you.\u003C\u002Fp>\n","Enhance the threaded comments system of WordPress 2.7. When someone reply to your comment, send a email to you.",50,6304,"2010-05-10T12:51:00.000Z","2.7",[77,55,21,23,130],"threaded-comments","http:\u002F\u002Fwanwp.com\u002Fplugins\u002Freplymail\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Freplymail.zip",63,"2025-10-14 00:00:00",{"attackSurface":136,"codeSignals":147,"taintFlows":154,"riskAssessment":155,"analyzedAt":158},{"hooks":137,"ajaxHandlers":143,"restRoutes":144,"shortcodes":145,"cronEvents":146,"entryPointCount":27,"unprotectedCount":27},[138],{"type":139,"name":140,"callback":20,"file":141,"line":142},"action","comment_post","comment-reply-notifier.php",11,[],[],[],[],{"dangerousFunctions":148,"sqlUsage":149,"outputEscaping":151,"fileOperations":27,"externalRequests":27,"nonceChecks":27,"capabilityChecks":27,"bundledLibraries":153},[],{"prepared":27,"raw":27,"locations":150},[],{"escaped":27,"rawEcho":27,"locations":152},[],[],[],{"summary":156,"deductions":157},"The static analysis of \"comment-reply-notifier\" v1.0 indicates a strong security posture based on the provided metrics. There are no identified dangerous functions, SQL queries are all prepared, and all output is properly escaped. The plugin also lacks file operations, external HTTP requests, and does not bundle any external libraries, all of which are good security practices that minimize potential attack vectors.  Furthermore, the absence of AJAX handlers, REST API routes, shortcodes, and cron events significantly limits the plugin's attack surface. Taint analysis shows no unsanitized paths, which is a positive sign for data handling within the plugin.\n\nThe vulnerability history also shows a clean record, with zero known CVEs. This lack of past vulnerabilities, coupled with the strong static analysis results, suggests that the developers have likely followed secure coding principles.  While the plugin currently presents a very low risk, it's important to note that the absence of certain security checks like nonce and capability checks is due to the lack of entry points. If the plugin were to evolve and introduce new features with these entry points in the future, these checks would become crucial to maintain its security.  As it stands, \"comment-reply-notifier\" v1.0 appears to be a securely developed plugin.",[],"2026-03-16T23:05:47.768Z",{"wat":160,"direct":165},{"assetPaths":161,"generatorPatterns":162,"scriptPaths":163,"versionParams":164},[],[],[],[],{"cssClasses":166,"htmlComments":167,"htmlAttributes":168,"restEndpoints":169,"jsGlobals":170,"shortcodeOutput":171},[],[],[],[],[],[]]