Serious Privacy Issue / Calling Home
-
I really don’t understand why guys from www.ads-software.com didn’t ban the plugin since it “calls home” upon plugin activation which is forbidden.
This is the function:
function send_email_to_tatvic($email, $status) {
$url = “https://dev.tatvic.com/leadgen/woocommerce-plugin/store_email/”;
//set POST variables
$fields = array(
“email” => urlencode($email),
“domain_name” => urlencode(get_site_url()),
“status” => urlencode($status)
);
wp_remote_post($url, array(
“method” => “POST”,
“timeout” => 1,
“httpversion” => “1.0”,
“blocking” => false,
“headers” => array(),
“body” => $fields
)
);
}https://www.ads-software.com/plugins/enhanced-e-commerce-for-woocommerce-store/
- The topic ‘Serious Privacy Issue / Calling Home’ is closed to new replies.