Ran a Malware san using the "Anti-Malware from GOTMLS.NET" plugin, and it identified wp-content/plugins/adminer/inc/adminer/drivers/simpledb.inc.php as a "Known Threat". Specifically, this section of code was identified:
}
$key = str_pad($key, $blocksize, "");
$k_ipad = $key ^ str_repeat("\x36", $blocksize);
$k_opad = $key ^ str_repeat("\x5C", $blocksize);
$return = $algo($k_opad . pack("H*", $algo($k_ipad . $data)));
What do? Is it safe? If so, I will whitelist it. Thanks!