services/s3/drivers/s3_s3.class.php [52:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    function __checkMfaDelete(){
        $this->results['MFADelete'] = [-1, 'Off'];
        $resp = $this->s3Client->getBucketVersioning([
            'Bucket' => $this->bucket
        ]);
        if($resp->get('Status')=="MFADelete")
            $this->results['MFADelete'] = [1, 'On'];
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



services/s3/drivers/s3_s3.class.php [61:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    function __checkVersioning(){
        $this->results['BucketVersioning'] = [-1, 'Off'];
        $resp = $this->s3Client->getBucketVersioning([
            'Bucket' => $this->bucket
        ]);
        if($resp->get('Status')=="Enabled")
          $this->results['BucketVersioning'] = [1, 'On'];
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



