BlogVault – bv_connector_xxxxxxx.php file quarantined

Home Forums BulletProof Security Pro BlogVault – bv_connector_xxxxxxx.php file quarantined

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #41585
    AITpro Admin
    Keymaster

    Email Question:

    Hi Team,

    The file below has been quarantined. Could you please tell me how to handle it?

    bv_connector_13ad91bb6af813059791f8beea62b542.php

    class BVGenericCallbackBase {
    public function objectToArray($obj) {
    return json_decode(json_encode($obj), true);
    }
    
    public function base64Encode($data, $chunk_size) {
    if ($chunk_size) {
    $out = "";
    $len = strlen($data);
    for ($i = 0; $i < $len; $i += $chunk_size) {
    $out .= base64_encode(substr($data, $i, $chunk_size));
    }
    } else {
    $out = base64_encode($data);
    }
    return $out;
    }
    }
    #41586
    AITpro Admin
    Keymaster

    Answer:

    That’s a BlogVault plugin file that is randomly named. You can restore it from quarantine.

    Note:  The Cloudways WordPress Migrator plugin also uses a file with this same naming convention > bv_connectorxxxxxx.php

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.