Rating: 3 stars
This is a good plugin for what it does but you guys really need to work on having some better security to avoid mysql injection.
For example, on line 859 of the main plugin PHP file you have:
$blogids = $wpdb->get_col($wpdb->prepare("SELECT blog_id FROM $wpdb->blogs"));
It should be changed to the following to avoid any security concerns as well as the myriad warning that will pop up in browsers (especially a problem for non-developers who won’t know what the heck is going on…).
Line 859 should be changed to this:
$blogids = $wpdb->get_col($wpdb->prepare("SELECT blog_id FROM $wpdb->blogs WHERE id = %d", $id));
Rating: 5 stars
This plugin help me manage visitor and much more with my site. I use it both of my site.
https://www.chandaka.com and https://www.smartechpy.com
This plugin really help me to see how many visitor.
Thank you
]]>