HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vm8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: afleverb (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/wintergenomics_site/wp-content/plugins/ninjascanner/lib/core_updates.php
<?php 
/* 
 +=====================================================================+ 
 |     _   _ _        _       ____                                     | 
 |    | \ | (_)_ __  (_) __ _/ ___|  ___ __ _ _ __  _ __   ___ _ __    | 
 |    |  \| | | '_ \ | |/ _` \___ \ / __/ _` | '_ \| '_ \ / _ \ '__|   | 
 |    | |\  | | | | || | (_| |___) | (_| (_| | | | | | | |  __/ |      | 
 |    |_| \_|_|_| |_|/ |\__,_|____/ \___\__,_|_| |_|_| |_|\___|_|      | 
 |                 |__/                                                | 
 |                                                                     | 
 | (c) NinTechNet ~ https://nintechnet.com/                            | 
 +=====================================================================+ // sa+i18n 
*/ 
 
if (! defined( 'ABSPATH' ) ) { die( 'Forbidden' ); } 
 
$nscan_options = get_option( 'nscan_options' ); 
 
// --------------------------------------------------------------------- 
// Version 1.2 introduces the quarantine sandbox 
if (! isset( $nscan_options['sandbox'] ) ) { 
	$nscan_options['sandbox'] = 1; 
	$update_needed = 1; 
} 
// Version 2.0.5 introduces optional syntax highlighting 
if (! isset( $nscan_options['highlight'] ) ) { 
	$nscan_options['highlight'] = 1; 
	$update_needed = 1; 
} 
// Version 3.0 
if (! isset( $nscan_options['scan_root_folders'] ) ) { 
	$nscan_options['scan_root_folders'] = ''; 
	$nscan_options['mutipagereport'] = 0; 
	unset( $nscan_options['scan_incremental'] ); 
	unset( $nscan_options['scan_incremental_forced'] ); 
	unset( $nscan_options['scan_zipcrc'] ); 
	$update_needed = 1; 
} 
 
// --------------------------------------------------------------------- 
 
if (! empty( $update_needed ) ) { 
	// Update options: 
	update_option( 'nscan_options', $nscan_options ); 
} 
 
// ===================================================================== 
// EOF