<?php
function bpsPro_plugin_zip_download($mstime) {
global $wp_version;
$time_start = microtime( true );
set_time_limit($mstime);
$timeNow = time();
$gmt_offset = get_option( 'gmt_offset' ) * 3600;
$timestamp = date_i18n(get_option('date_format'), strtotime("11/15-1976")) . ' ' . date_i18n(get_option('time_format'), $timeNow + $gmt_offset);
$mscan_log = WP_CONTENT_DIR . '/bps-backup/logs/mscan_log.txt';
$handle = fopen( $mscan_log, 'a' );
if ( ! is_dir( WP_CONTENT_DIR . '/bps-backup/plugin-hashes' ) ) {
mkdir( WP_CONTENT_DIR . '/bps-backup/plugin-hashes', 0755, true );
chmod( WP_CONTENT_DIR . '/bps-backup/plugin-hashes/', 0755 );
}
$plugin_hashes_dir = WP_CONTENT_DIR . '/bps-backup/plugin-hashes';
if ( ! is_dir( $plugin_hashes_dir ) ) {
fwrite( $handle, "Plugin Zip File Download Error: The $plugin_hashes_dir folder does not exist.\r\n" );
fwrite( $handle, "Troubleshooting: Check that the Ownership or folder permissions for the /bps-backup/ folder. The /bps-backup/ folder should have 755 or 705 permissions and the Owner of the /bps-backup/ folder should be the same Owner as all of your other website folders.\r\n" );
fclose($handle);
return false;
}
$plugin_hash_file = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/plugin-hashes.php';
$blank_hash_file = WP_PLUGIN_DIR . '/bulletproof-security/admin/htaccess/wp-hashes.php';
if ( ! file_exists($plugin_hash_file) ) {
if ( ! copy($blank_hash_file, $plugin_hash_file) ) {
fwrite( $handle, "Plugin Zip File Download Error: Unable to create the Plugin hash file: $plugin_hash_file\r\n" );
}
}
fwrite( $handle, "Plugin Zip File Download: Start Plugin zip file downloads.\r\n" );
$all_plugins = get_plugins();
$active_plugins_array = array();
$inactive_plugins_array = array();
$hello_dolly_plugin_array = array();
foreach ( $all_plugins as $key => $value ) {
if ( ! empty($key) ) {
$active_plugins = in_array( $key, apply_filters('active_plugins', get_option('active_plugins')));
if ( 1 == $active_plugins || is_plugin_active_for_network( $key ) ) {
$pos = strpos($key, '/');
$dolly_pos = strpos($value['Name'], 'Hello Dolly');
if ( $pos !== false ) {
$plugin_name = strstr($key, '/', true);
$active_plugins_array[] = $plugin_name.'.'.$value['Version'];
} else {
if ( $dolly_pos !== false ) {
$hello_dolly_plugin_array[] = 'hello-dolly'.'.'.$value['Version'];
}
}
} else {
$pos = strpos($key, '/');
$dolly_pos = strpos($value['Name'], 'Hello Dolly');
if ( $pos !== false ) {
$plugin_name = strstr($key, '/', true);
$inactive_plugins_array[] = $plugin_name.'.'.$value['Version'];
} else {
if ( $dolly_pos !== false ) {
$hello_dolly_plugin_array[] = 'hello-dolly'.'.'.$value['Version'];
}
}
}
}
}
$plugins_array_merged = array_merge($active_plugins_array, $inactive_plugins_array, $hello_dolly_plugin_array);
$bps_mscan_plugin_hash_version_check_array = array();
$bps_mscan_plugin_hash_paths_array = array();
$bps_mscan_plugin_hash_zip_file_array = array();
$mscan_plugin_hash = get_option('bulletproof_security_options_mscan_plugin_hash');
$mscan_plugin_hash_new = get_option('bulletproof_security_options_mscan_p_hash_new');
$tmp_file = '';
$plugin_zip_file_download = '';
$plugin_no_zip_array = array();
foreach ( $plugins_array_merged as $key => $value ) {
$plugin_zip_file = $value . '.zip';
$local_zip_file = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/' . $plugin_zip_file;
$plugin_name = strstr($value, '.', true);
$plugin_version = strstr($value, '.');
$plugin_version_nodot = substr($plugin_version, 1);
$bps_mscan_plugin_hash_version_check_array[$plugin_name] = $plugin_version_nodot;
$bps_mscan_plugin_hash_paths_array[$plugin_name][] = '';
$plugin_zip_file_url = 'https://downloads.wordpress.org/plugin/' . $plugin_zip_file;
$response = wp_remote_get( $plugin_zip_file_url );
if ( is_array( $response ) && ! is_wp_error( $response ) ) {
if ( $response['response']['code'] == '404' ) {
$value = preg_replace( '/\.\d(.*)/', "", $value );
$plugin_no_zip_array[] = $value;
}
}
@$bps_mscan_plugin_hash_version_check = isset($mscan_plugin_hash['bps_mscan_plugin_hash_version_check']) ? $mscan_plugin_hash['bps_mscan_plugin_hash_version_check']["$plugin_name"] : '';
if ( $bps_mscan_plugin_hash_version_check == $plugin_version_nodot ) {
} else {
if ( ! file_exists($local_zip_file) ) {
if ( file_exists($plugin_hash_file) ) {
$url = 'https://downloads.wordpress.org/plugin/' . $plugin_zip_file;
$tmp_file = download_url( $url, $timeout = 300 );
if ( is_wp_error( $tmp_file ) ) {
fwrite( $handle, "Plugin Zip File Download: WP_Error: Unable to download Plugin zip file: $plugin_zip_file from WordPress.org.\r\n" );
} else {
if ( ! copy( $tmp_file, $local_zip_file ) ) {
fwrite( $handle, "Plugin Zip File Download: Unable to download this Plugin zip file: $plugin_zip_file\r\n" );
} else {
fwrite( $handle, "Plugin Zip File Download: Zip file download successful: $plugin_zip_file\r\n" );
$plugin_zip_file_download = '1';
}
unlink( $tmp_file );
}
}
}
}
if ( file_exists( $local_zip_file ) ) {
$zip_file = 'yes';
} else {
$zip_file = 'no';
}
$bps_mscan_plugin_hash_zip_file_array[$plugin_name] = $zip_file;
}
$mscan_nodownload = get_option('bulletproof_security_options_mscan_nodownload');
$bps_theme_nodownload = isset( $mscan_nodownload['bps_theme_nodownload']) ? $mscan_nodownload['bps_theme_nodownload'] : '';
$mscan_nodownload_options = array(
'bps_plugin_nodownload' => $plugin_no_zip_array,
'bps_theme_nodownload' => $bps_theme_nodownload
);
foreach( $mscan_nodownload_options as $key => $value ) {
update_option('bulletproof_security_options_mscan_nodownload', $mscan_nodownload_options);
}
$mscan_plugin_hash_options_db = 'bulletproof_security_options_mscan_plugin_hash';
if ( ! get_option( $mscan_plugin_hash_options_db ) ) {
$mscan_plugin_hash_options = array(
'bps_mscan_plugin_hash_version_check' => $bps_mscan_plugin_hash_version_check_array,
'bps_mscan_plugin_hash_paths' => $bps_mscan_plugin_hash_paths_array,
'bps_mscan_plugin_hash_zip_file' => $bps_mscan_plugin_hash_zip_file_array
);
foreach( $mscan_plugin_hash_options as $key => $value ) {
update_option('bulletproof_security_options_mscan_plugin_hash', $mscan_plugin_hash_options);
}
} else {
delete_option('bulletproof_security_options_mscan_p_hash_new');
$mscan_plugin_hash_options_new = array(
'bps_mscan_plugin_hash_version_check_new' => $bps_mscan_plugin_hash_version_check_array,
'bps_mscan_plugin_hash_paths_new' => $bps_mscan_plugin_hash_paths_array,
'bps_mscan_plugin_hash_zip_file_new' => $bps_mscan_plugin_hash_zip_file_array
);
foreach( $mscan_plugin_hash_options_new as $key => $value ) {
update_option('bulletproof_security_options_mscan_p_hash_new', $mscan_plugin_hash_options_new);
}
$mscan_plugin_hash = get_option('bulletproof_security_options_mscan_plugin_hash');
$mscan_plugin_hash_new = get_option('bulletproof_security_options_mscan_p_hash_new');
$plugin_hash_version_check_update_array = array();
foreach ( $mscan_plugin_hash['bps_mscan_plugin_hash_version_check'] as $key => $value ) {
foreach ( $mscan_plugin_hash_new['bps_mscan_plugin_hash_version_check_new'] as $key_new => $value_new ) {
if ( $key == $key_new ) {
$plugin_hash_version_check_update_array[$key] = $value_new;
}
}
}
$array_diff_key_plugin_hash_version = array_diff_key($mscan_plugin_hash_new['bps_mscan_plugin_hash_version_check_new'], $mscan_plugin_hash['bps_mscan_plugin_hash_version_check']);
$array_merge_new_plugin_hash_version = array_merge($plugin_hash_version_check_update_array, $array_diff_key_plugin_hash_version);
$mscan_plugin_hash_options = array(
'bps_mscan_plugin_hash_version_check' => $array_merge_new_plugin_hash_version,
'bps_mscan_plugin_hash_paths' => $mscan_plugin_hash['bps_mscan_plugin_hash_paths'],
'bps_mscan_plugin_hash_zip_file' => $mscan_plugin_hash['bps_mscan_plugin_hash_zip_file']
);
foreach( $mscan_plugin_hash_options as $key => $value ) {
update_option('bulletproof_security_options_mscan_plugin_hash', $mscan_plugin_hash_options);
}
}
if ( $plugin_zip_file_download == '1' ) {
$plugin_hash_folder = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/';
$total_zip_files = preg_grep('~\.(zip)$~', scandir($plugin_hash_folder));
$total_zip_files_array = array();
foreach ( $total_zip_files as $zip_file ) {
$total_zip_files_array[] = $zip_file;
}
$zip_files_array_count = count($total_zip_files_array);
$MScan_status = get_option('bulletproof_security_options_MScan_status');
if ( $zip_files_array_count == 0 ) {
$MScan_status_db = array(
'bps_mscan_time_start' => $MScan_status['bps_mscan_time_start'],
'bps_mscan_time_stop' => $MScan_status['bps_mscan_time_stop'],
'bps_mscan_time_end' => $MScan_status['bps_mscan_time_end'],
'bps_mscan_time_remaining' => $MScan_status['bps_mscan_time_remaining'],
'bps_mscan_status' => '9',
'bps_mscan_last_scan_timestamp' => $MScan_status['bps_mscan_last_scan_timestamp'],
'bps_mscan_total_time' => $MScan_status['bps_mscan_total_time'],
'bps_mscan_total_website_files' => '',
'bps_mscan_total_wp_core_files' => $MScan_status['bps_mscan_total_wp_core_files'],
'bps_mscan_total_non_image_files' => $MScan_status['bps_mscan_total_non_image_files'],
'bps_mscan_total_image_files' => '',
'bps_mscan_total_all_scannable_files' => 'Error: Plugin Zip File Download Failed',
'bps_mscan_total_skipped_files' => $MScan_status['bps_mscan_total_skipped_files'],
'bps_mscan_total_suspect_files' => $MScan_status['bps_mscan_total_suspect_files'],
'bps_mscan_suspect_skipped_files' => $MScan_status['bps_mscan_suspect_skipped_files'],
'bps_mscan_total_suspect_db' => $MScan_status['bps_mscan_total_suspect_db'],
'bps_mscan_total_ignored_files' => $MScan_status['bps_mscan_total_ignored_files'],
'bps_mscan_total_plugin_files' => $MScan_status['bps_mscan_total_plugin_files'],
'bps_mscan_total_theme_files' => $MScan_status['bps_mscan_total_theme_files']
);
foreach( $MScan_status_db as $key => $value ) {
update_option('bulletproof_security_options_MScan_status', $MScan_status_db);
}
$mscan_hash_status_options = get_option('bulletproof_security_options_mscan_hash_status');
$mscan_wp_core_hash_status = isset($mscan_hash_status_options['mscan_wp_core_hash_status']) ? $mscan_hash_status_options['mscan_wp_core_hash_status'] : '';
$mscan_wp_core_hash_count = isset($mscan_hash_status_options['mscan_wp_core_hash_count']) ? $mscan_hash_status_options['mscan_wp_core_hash_count'] : '';
$mscan_plugin_hash_status = '0';
$mscan_plugin_hash_count = '0';
$mscan_theme_hash_status = isset($mscan_hash_status_options['mscan_theme_hash_status']) ? $mscan_hash_status_options['mscan_theme_hash_status'] : '';
$mscan_theme_hash_count = isset($mscan_hash_status_options['mscan_theme_hash_count']) ? $mscan_hash_status_options['mscan_theme_hash_count'] : '';
$mscan_hash_status_options_db = array(
'mscan_wp_core_hash_status' => $mscan_wp_core_hash_status,
'mscan_wp_core_hash_count' => $mscan_wp_core_hash_count,
'mscan_plugin_hash_status' => $mscan_plugin_hash_status,
'mscan_plugin_hash_count' => $mscan_plugin_hash_count,
'mscan_theme_hash_status' => $mscan_theme_hash_status,
'mscan_theme_hash_count' => $mscan_theme_hash_count
);
foreach( $mscan_hash_status_options_db as $key => $value ) {
update_option('bulletproof_security_options_mscan_hash_status', $mscan_hash_status_options_db);
}
fwrite( $handle, "Plugin Zip File Download: Error: Unable to download or copy Plugin zip files from WordPress.org.\r\n" );
return false;
} else {
$mscan_hash_status_options = get_option('bulletproof_security_options_mscan_hash_status');
$mscan_wp_core_hash_status = isset($mscan_hash_status_options['mscan_wp_core_hash_status']) ? $mscan_hash_status_options['mscan_wp_core_hash_status'] : '';
$mscan_wp_core_hash_count = isset($mscan_hash_status_options['mscan_wp_core_hash_count']) ? $mscan_hash_status_options['mscan_wp_core_hash_count'] : '';
$mscan_plugin_hash_status = '1';
$mscan_plugin_hash_count = $zip_files_array_count;
$mscan_theme_hash_status = isset($mscan_hash_status_options['mscan_theme_hash_status']) ? $mscan_hash_status_options['mscan_theme_hash_status'] : '';
$mscan_theme_hash_count = isset($mscan_hash_status_options['mscan_theme_hash_count']) ? $mscan_hash_status_options['mscan_theme_hash_count'] : '';
$mscan_hash_status_options_db = array(
'mscan_wp_core_hash_status' => $mscan_wp_core_hash_status,
'mscan_wp_core_hash_count' => $mscan_wp_core_hash_count,
'mscan_plugin_hash_status' => $mscan_plugin_hash_status,
'mscan_plugin_hash_count' => $mscan_plugin_hash_count,
'mscan_theme_hash_status' => $mscan_theme_hash_status,
'mscan_theme_hash_count' => $mscan_theme_hash_count
);
foreach( $mscan_hash_status_options_db as $key => $value ) {
update_option('bulletproof_security_options_mscan_hash_status', $mscan_hash_status_options_db);
}
fwrite( $handle, "Plugin Zip File Download: Total number of zip files downloaded: $zip_files_array_count.\r\n" );
}
}
$time_end = microtime( true );
$download_time = $time_end - $time_start;
$hours = (int)($download_time / 60 / 60);
$minutes = (int)($download_time / 60) - $hours * 60;
$seconds = (int)$download_time - $hours * 60 * 60 - $minutes * 60;
$hours_format = $hours == 0 ? "00" : $hours;
$minutes_format = $minutes == 0 ? "00" : ($minutes < 10 ? "0".$minutes : $minutes);
$seconds_format = $seconds == 0 ? "00" : ($seconds < 10 ? "0".$seconds : $seconds);
$download_time_log = 'Plugin Zip File Download Completion Time: '. $hours_format . ':'. $minutes_format . ':' . $seconds_format;
fwrite( $handle, "$download_time_log\r\n" );
fclose($handle);
return true;
}
function bpsPro_plugin_zip_extractor() {
global $wp_version;
$time_start = microtime( true );
$timeNow = time();
$gmt_offset = get_option( 'gmt_offset' ) * 3600;
$timestamp = date_i18n(get_option('date_format'), strtotime("11/15-1976")) . ' ' . date_i18n(get_option('time_format'), $timeNow + $gmt_offset);
$mscan_log = WP_CONTENT_DIR . '/bps-backup/logs/mscan_log.txt';
$handle = fopen( $mscan_log, 'a' );
$plugin_hash_folder = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/';
$zip_files = preg_grep('~\.(zip)$~', scandir($plugin_hash_folder));
if ( class_exists('ZipArchive') ) {
fwrite( $handle, "Plugin Zip File Extraction: Start ZipArchive zip file extraction.\r\n" );
foreach ( $zip_files as $zip_file ) {
$zip_file_path = $plugin_hash_folder . $zip_file;
$PluginZip = new ZipArchive;
$res = $PluginZip->open( $zip_file_path );
if ( $res === TRUE ) {
$PluginZip->extractTo( WP_CONTENT_DIR . '/bps-backup/plugin-hashes/' );
$PluginZip->close();
fwrite( $handle, "Plugin Zip File Extraction ZipArchive: Zip file extraction successful: $zip_file.\r\n" );
} else {
fwrite( $handle, "Plugin Zip File Extraction ZipArchive Error: Unable to extract this Plugin zip file: $zip_file.\r\n" );
}
}
$time_end = microtime( true );
$zip_extract_time = $time_end - $time_start;
$hours = (int)($zip_extract_time / 60 / 60);
$minutes = (int)($zip_extract_time / 60) - $hours * 60;
$seconds = (int)$zip_extract_time - $hours * 60 * 60 - $minutes * 60;
$hours_format = $hours == 0 ? "00" : $hours;
$minutes_format = $minutes == 0 ? "00" : ($minutes < 10 ? "0".$minutes : $minutes);
$seconds_format = $seconds == 0 ? "00" : ($seconds < 10 ? "0".$seconds : $seconds);
$zip_extract_time_log = 'Plugin Zip File Extraction Completion Time: '. $hours_format . ':'. $minutes_format . ':' . $seconds_format;
fwrite( $handle, "$zip_extract_time_log\r\n" );
fclose($handle);
return true;
} else {
fwrite( $handle, "Plugin Zip File Extraction: Start PclZip zip file extraction.\r\n" );
define( 'PCLZIP_TEMPORARY_DIR', WP_CONTENT_DIR . '/bps-backup/plugin-hashes/' );
require_once ABSPATH . 'wp-admin/includes/class-pclzip.php';
foreach ( $zip_files as $zip_file ) {
$zip_file_path = $plugin_hash_folder . $zip_file;
$archive = new PclZip( $zip_file_path );
if ( $archive->extract( PCLZIP_OPT_PATH, WP_CONTENT_DIR . '/bps-backup/plugin-hashes', PCLZIP_OPT_REMOVE_PATH, WP_CONTENT_DIR . '/bps-backup/plugin-hashes' ) ) {
fwrite( $handle, "Plugin Zip File Extraction PclZip: Zip file extracted successfully: $zip_file.\r\n" );
} else {
fwrite( $handle, "Plugin Zip File Extraction PclZip Error: Unable to unzip this Plugin zip file: $zip_file.\r\n" );
}
}
$time_end = microtime( true );
$zip_extract_time = $time_end - $time_start;
$hours = (int)($zip_extract_time / 60 / 60);
$minutes = (int)($zip_extract_time / 60) - $hours * 60;
$seconds = (int)$zip_extract_time - $hours * 60 * 60 - $minutes * 60;
$hours_format = $hours == 0 ? "00" : $hours;
$minutes_format = $minutes == 0 ? "00" : ($minutes < 10 ? "0".$minutes : $minutes);
$seconds_format = $seconds == 0 ? "00" : ($seconds < 10 ? "0".$seconds : $seconds);
$zip_extract_time_log = 'Plugin Zip File Extraction Completion Time: '. $hours_format . ':'. $minutes_format . ':' . $seconds_format;
fwrite( $handle, "$zip_extract_time_log\r\n" );
fclose($handle);
return true;
}
}
function bpsPro_plugin_hash_maker() {
global $wp_version;
$time_start = microtime( true );
$timeNow = time();
$gmt_offset = get_option( 'gmt_offset' ) * 3600;
$timestamp = date_i18n(get_option('date_format'), strtotime("11/15-1976")) . ' ' . date_i18n(get_option('time_format'), $timeNow + $gmt_offset);
$mscan_log = WP_CONTENT_DIR . '/bps-backup/logs/mscan_log.txt';
$handle = fopen( $mscan_log, 'a' );
if ( ! is_array( spl_classes() ) ) {
fwrite( $handle, "Plugin MD5 File Hash Maker Error: The Standard PHP Library (SPL) is Not available/installed. Unable to create Plugin MD5 hash files.\r\n" );
fwrite( $handle, "Solution: Contact your web host and ask them to install the Standard PHP Library (SPL) on your server.\r\n" );
fclose($handle);
return false;
}
$plugin_hash_file = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/plugin-hashes.php';
if ( ! file_exists( $plugin_hash_file ) ) {
fwrite( $handle, "Plugin MD5 File Hash Maker Error: The $plugin_hash_file file does not exist.\r\n" );
fwrite( $handle, "Troubleshooting: Check the Ownership or folder permissions for the /bps-backup/plugin-hashes/ folder. The /bps-backup/plugin-hashes/ folder should have 755 or 705 permissions and the Owner of the /bps-backup/plugin-hashes/ folder should be the same Owner as all of your other website folders.\r\n" );
fclose($handle);
return false;
}
fwrite( $handle, "Plugin MD5 File Hash Maker: Start creating the plugin-hashes.php file.\r\n" );
$source = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/';
$gmt_offset = get_option( 'gmt_offset' ) * 3600;
$plugin_dir_path_array = array();
$plugin_folder_name_array = array();
if ( is_dir($source) ) {
$iterator = new DirectoryIterator($source);
foreach ( $iterator as $files ) {
if ( $files->isDir() && ! $files->isDot() ) {
$plugin_dir_path_array[] = $files->getPathname();
}
}
}
$plugin_name_key_array = array();
if ( ! empty($plugin_dir_path_array) ) {
$str1 = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/';
$str2 = WP_CONTENT_DIR . '/bps-backup/plugin-hashes\\';
$str3 = WP_CONTENT_DIR . '\bps-backup\plugin-hashes\\';
$filePath = array();
foreach ( $plugin_dir_path_array as $plugin_dir_path ) {
$objects = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($plugin_dir_path), RecursiveIteratorIterator::SELF_FIRST);
foreach ( $objects as $files ) {
if ( $files->isFile() ) {
$filePath[] = str_replace( array( $str1, $str2, $str3 ), "", $files->getPathname() ). '\' => \'' . md5_file($files->getPathname());
}
}
}
$mscan_plugin_hash = get_option('bulletproof_security_options_mscan_plugin_hash');
$mscan_plugin_hash_new = get_option('bulletproof_security_options_mscan_p_hash_new');
foreach ( $filePath as $key => $value ) {
$key_value = preg_replace( '/(\\\\.*|\/.*)/', "", $value);
if ( preg_match( '/hello-dolly(.*)readme\.txt/', $value ) ) {
unset($value);
$value = ! isset($value) ? '' : $value; // PHP8 weirdness
}
if ( preg_match( '/hello-dolly(.*)hello\.php/', $value ) ) {
$value = preg_replace( '/.*hello\.php/', "hello.php", $value);
}
if ( ! empty($value) ) {
$plugin_name_key_array[$key_value][] = $value;
}
}
}
$plugin_hash_folder = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/';
$plugin_files = preg_grep('~\.(php)$~', scandir($plugin_hash_folder));
foreach ( $plugin_files as $plugin_file ) {
if ( $plugin_file != 'plugin-hashes.php' ) {
fwrite( $handle, "Plugin MD5 File Hash Maker Error: Files exist in the $plugin_hash_folder that should not be there. If you copied plugin files into this folder then delete them. Only Plugin Zip files or extracted Plugin folders should be in this folder.\r\n" );
$MScan_status = get_option('bulletproof_security_options_MScan_status');
$MScan_status_db = array(
'bps_mscan_time_start' => $MScan_status['bps_mscan_time_start'],
'bps_mscan_time_stop' => $MScan_status['bps_mscan_time_stop'],
'bps_mscan_time_end' => $MScan_status['bps_mscan_time_end'],
'bps_mscan_time_remaining' => $MScan_status['bps_mscan_time_remaining'],
'bps_mscan_status' => '9',
'bps_mscan_last_scan_timestamp' => $MScan_status['bps_mscan_last_scan_timestamp'],
'bps_mscan_total_time' => $MScan_status['bps_mscan_total_time'],
'bps_mscan_total_website_files' => '',
'bps_mscan_total_wp_core_files' => $MScan_status['bps_mscan_total_wp_core_files'],
'bps_mscan_total_non_image_files' => $MScan_status['bps_mscan_total_non_image_files'],
'bps_mscan_total_image_files' => '',
'bps_mscan_total_all_scannable_files' => 'Error: Files found in the plugin-hashes folder',
'bps_mscan_total_skipped_files' => $MScan_status['bps_mscan_total_skipped_files'],
'bps_mscan_total_suspect_files' => $MScan_status['bps_mscan_total_suspect_files'],
'bps_mscan_suspect_skipped_files' => $MScan_status['bps_mscan_suspect_skipped_files'],
'bps_mscan_total_suspect_db' => $MScan_status['bps_mscan_total_suspect_db'],
'bps_mscan_total_ignored_files' => $MScan_status['bps_mscan_total_ignored_files'],
'bps_mscan_total_plugin_files' => $MScan_status['bps_mscan_total_plugin_files'],
'bps_mscan_total_theme_files' => $MScan_status['bps_mscan_total_theme_files']
);
foreach( $MScan_status_db as $key => $value ) {
update_option('bulletproof_security_options_MScan_status', $MScan_status_db);
}
return false;
}
}
$mscan_plugin_hash_options_db_new = 'bulletproof_security_options_mscan_p_hash_new';
$mscan_plugin_hash = get_option('bulletproof_security_options_mscan_plugin_hash');
$mscan_plugin_hash_new = get_option('bulletproof_security_options_mscan_p_hash_new');
if ( ! get_option( $mscan_plugin_hash_options_db_new ) ) {
$mscan_plugin_hash_options = array(
'bps_mscan_plugin_hash_version_check' => $mscan_plugin_hash['bps_mscan_plugin_hash_version_check'],
'bps_mscan_plugin_hash_paths' => $plugin_name_key_array,
'bps_mscan_plugin_hash_zip_file' => $mscan_plugin_hash['bps_mscan_plugin_hash_zip_file']
);
foreach( $mscan_plugin_hash_options as $key => $value ) {
update_option('bulletproof_security_options_mscan_plugin_hash', $mscan_plugin_hash_options);
}
} else {
if ( ! empty($plugin_dir_path_array) ) {
$mscan_plugin_hash_options = array(
'bps_mscan_plugin_hash_version_check_new' => $mscan_plugin_hash_new['bps_mscan_plugin_hash_version_check_new'],
'bps_mscan_plugin_hash_paths_new' => $plugin_name_key_array,
'bps_mscan_plugin_hash_zip_file_new' => $mscan_plugin_hash_new['bps_mscan_plugin_hash_zip_file_new']
);
foreach( $mscan_plugin_hash_options as $key => $value ) {
update_option('bulletproof_security_options_mscan_p_hash_new', $mscan_plugin_hash_options);
}
}
}
$mscan_plugin_hash = get_option('bulletproof_security_options_mscan_plugin_hash');
$mscan_plugin_hash_new = get_option('bulletproof_security_options_mscan_p_hash_new');
$all_plugins = get_plugins();
$active_plugins_array = array();
$inactive_plugins_array = array();
$hello_dolly_plugin_array = array();
foreach ( $all_plugins as $key => $value ) {
if ( ! empty($key) ) {
$active_plugins = in_array( $key, apply_filters('active_plugins', get_option('active_plugins')));
if ( 1 == $active_plugins || is_plugin_active_for_network( $key ) ) {
$pos = strpos($key, '/');
$dolly_pos = strpos($value['Name'], 'Hello Dolly');
if ( $pos !== false ) {
$plugin_name = strstr($key, '/', true);
$active_plugins_array[] = $plugin_name;
} else {
if ( $dolly_pos !== false ) {
$hello_dolly_plugin_array[] = 'hello-dolly';
}
}
} else {
$pos = strpos($key, '/');
$dolly_pos = strpos($value['Name'], 'Hello Dolly');
if ( $pos !== false ) {
$plugin_name = strstr($key, '/', true);
$inactive_plugins_array[] = $plugin_name;
} else {
if ( $dolly_pos !== false ) {
$hello_dolly_plugin_array[] = 'hello-dolly';
}
}
}
}
}
$installed_plugins_array_merged = array_merge($active_plugins_array, $inactive_plugins_array, $hello_dolly_plugin_array);
$mscan_plugin_hash_new_array_keys = array();
if ( get_option( 'bulletproof_security_options_mscan_p_hash_new' ) ) {
foreach ( $mscan_plugin_hash_new['bps_mscan_plugin_hash_paths_new'] as $key => $value ) {
foreach ( $value as $inner_key => $inner_value ) {
if ( ! empty($inner_value) ) {
$mscan_plugin_hash_new_array_keys[] = $key;
}
}
}
}
$plugin_hash_removal_array = array();
if ( ! empty( $mscan_plugin_hash['bps_mscan_plugin_hash_paths'] ) ) {
foreach ( $mscan_plugin_hash['bps_mscan_plugin_hash_paths'] as $key => $value ) {
if ( ! in_array( $key, $installed_plugins_array_merged ) ) {
unset($value);
}
if ( in_array( $key, $mscan_plugin_hash_new_array_keys ) ) {
unset($value);
}
if ( ! empty($value) ) {
$plugin_hash_removal_array[$key] = $value;
}
}
}
$mscan_plugin_hash_options = array(
'bps_mscan_plugin_hash_version_check' => $mscan_plugin_hash['bps_mscan_plugin_hash_version_check'],
'bps_mscan_plugin_hash_paths' => $plugin_hash_removal_array,
'bps_mscan_plugin_hash_zip_file' => $mscan_plugin_hash['bps_mscan_plugin_hash_zip_file']
);
foreach( $mscan_plugin_hash_options as $key => $value ) {
update_option('bulletproof_security_options_mscan_plugin_hash', $mscan_plugin_hash_options);
}
$mscan_plugin_hash = get_option('bulletproof_security_options_mscan_plugin_hash');
$mscan_plugin_hash_new = get_option('bulletproof_security_options_mscan_p_hash_new');
if ( empty($mscan_plugin_hash_new_array_keys) ) {
$result = $mscan_plugin_hash['bps_mscan_plugin_hash_paths'];
} else {
$result = array_merge($mscan_plugin_hash_new['bps_mscan_plugin_hash_paths_new'], $mscan_plugin_hash['bps_mscan_plugin_hash_paths']);
}
$mscan_plugin_hash_options = array(
'bps_mscan_plugin_hash_version_check' => $mscan_plugin_hash['bps_mscan_plugin_hash_version_check'],
'bps_mscan_plugin_hash_paths' => $result,
'bps_mscan_plugin_hash_zip_file' => $mscan_plugin_hash['bps_mscan_plugin_hash_zip_file']
);
foreach( $mscan_plugin_hash_options as $key => $value ) {
update_option('bulletproof_security_options_mscan_plugin_hash', $mscan_plugin_hash_options);
}
$mscan_plugin_hash = get_option('bulletproof_security_options_mscan_plugin_hash');
$final_result = $mscan_plugin_hash['bps_mscan_plugin_hash_paths'];
$mscan_plugin_hash_options_db = 'bulletproof_security_options_mscan_plugin_hash';
if ( ! empty($mscan_plugin_hash_new_array_keys ) || ! get_option( 'bulletproof_security_options_mscan_p_hash_new' ) ) {
$plugin_hashes_file = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/plugin-hashes.php';
$handleH = fopen( $plugin_hashes_file, 'wb' );
fwrite( $handleH, "<?php\n" );
fwrite( $handleH, "\$plugin_hashes = array(\n" );
foreach ( $final_result as $key => $value ) {
fwrite( $handleH, "## BEGIN " . $key . " ##" . "\n" );
foreach ( $value as $key2 => $value2 ) {
fwrite( $handleH, "'" . $value2 . "', " . "\n" );
}
fwrite( $handleH, "## END " . $key . " ##" . "\n" );
}
fwrite( $handleH, ");\n" );
fwrite( $handleH, "?>" );
fclose( $handleH );
fwrite( $handle, "Plugin MD5 File Hash Maker & Cleanup: plugin-hashes.php file created.\r\n" );
fwrite( $handle, "Plugin MD5 File Hash Maker & Cleanup: Start /bps-backup/plugin-hashes/ folder cleanup.\r\n" );
$plugin_hash_folder = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/';
$plugin_hash_file = WP_CONTENT_DIR . '/bps-backup/plugin-hashes/plugin-hashes.php';
if ( is_dir($plugin_hash_folder) ) {
$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($plugin_hash_folder), RecursiveIteratorIterator::CHILD_FIRST);
foreach ( $iterator as $file ) {
if ( $file->isFile() ) {
if ( $file->getFilename() != 'plugin-hashes.php' ) {
unlink( $file->getRealPath() );
}
} else {
if ( $file->isDir() ) {
@rmdir( $file->getRealPath() );
}
}
}
}
}
$time_end = microtime( true );
$hash_maker_time = $time_end - $time_start;
$hours = (int)($hash_maker_time / 60 / 60);
$minutes = (int)($hash_maker_time / 60) - $hours * 60;
$seconds = (int)$hash_maker_time - $hours * 60 * 60 - $minutes * 60;
$hours_format = $hours == 0 ? "00" : $hours;
$minutes_format = $minutes == 0 ? "00" : ($minutes < 10 ? "0".$minutes : $minutes);
$seconds_format = $seconds == 0 ? "00" : ($seconds < 10 ? "0".$seconds : $seconds);
$hash_maker_time_log = 'Plugin MD5 File Hash Maker & Cleanup Completion Time: '. $hours_format . ':'. $minutes_format . ':' . $seconds_format;
if ( ! empty($mscan_plugin_hash_new_array_keys ) || ! get_option( 'bulletproof_security_options_mscan_p_hash_new' ) ) {
fwrite( $handle, "Plugin MD5 File Hash Maker & Cleanup: Plugin Zip files deleted.\r\n" );
fwrite( $handle, "Plugin MD5 File Hash Maker & Cleanup: Extracted Plugin folders deleted.\r\n" );
}
fwrite( $handle, "$hash_maker_time_log\r\n" );
fclose($handle);
return true;
}
?> |