HEX
Server: Apache/2.4.67 (Debian)
System: Linux hosting103 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
User: muzikaecom (1013)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/muzikaecom/muzikae.com/wp-content/plugins/better-wp-security/better-wp-security.php
<?php

/*
 * Plugin Name: Kadence Security Basic
 * Plugin URI: https://www.kadencewp.com/
 * Description: Shield your site from cyberattacks and prevent security vulnerabilities. The only security plugin you need for a solid foundation.
 * Author: Kadence
 * Author URI: https://www.kadencewp.com/
 * Version: 10.0.1
 * Text Domain: better-wp-security
 * Network: True
 * License: GPLv2
 * Requires PHP: 7.4
 * Requires at least: 6.5
 */

if ( version_compare( phpversion(), '7.4.0', '<' ) ) {
	function itsec_free_minimum_php_version_notice() {
		echo '<div class="notice notice-error"><p>' . esc_html__( 'Kadence Security Basic requires PHP 7.4 or higher.', 'better-wp-security' ) . '</p></div>';
	}

	add_action( 'admin_notices', 'itsec_free_minimum_php_version_notice' );

	return;
}

if ( version_compare( $GLOBALS['wp_version'], '6.5', '<' ) ) {
	function itsec_minimum_wp_version_notice() {
		echo '<div class="notice notice-error"><p>' . esc_html__( 'Kadence Security Basic requires WordPress 6.5 or later.', 'better-wp-security' ) . '</p></div>';
	}

	add_action( 'admin_notices', 'itsec_minimum_wp_version_notice' );

	return;
}

/*
 * Register an initial duplicate activation hook to make sure both plugins can't be active at the same time
 * otherwise, remove the activation hook so ITSEC_Core::handle_activation can replace it.
 */
$basic_activate_callback = static function() use ( &$basic_activate_callback ): void {
	$pro_plugin     = 'ithemes-security-pro/ithemes-security-pro.php';
	$active_plugins = (array) get_option( 'active_plugins', [] );

	if ( is_multisite() ) {
		$network_plugins = (array) get_site_option( 'active_sitewide_plugins', [] );
		$active_plugins  = array_merge( $active_plugins, array_keys( $network_plugins ) );
	}

	if ( in_array( $pro_plugin, $active_plugins, true ) ) {
		// No text domain to load here? Might cause PHP notices.

		wp_die(
			esc_html__(
				'Kadence Security Basic cannot be activated because Kadence Security Pro is already active.',
				'better-wp-security'
			)
		);
	}

	// If we made this far without killing execution, remove this activation hook if Pro isn't
	// active, so ITSEC_Core::handle_activation can get registered.
	remove_action( 'activate_' . plugin_basename( __FILE__ ), $basic_activate_callback );
};

register_activation_hook( __FILE__, $basic_activate_callback );

// Prevent fatal errors if the Pro version is already loaded.
if ( isset( $itsec_dir ) || class_exists( 'ITSEC_Core' ) ) {
	return;
}

if ( file_exists( __DIR__ . '/vendor-prod/autoload.php' ) ) {
	require_once( __DIR__ . '/vendor-prod/autoload.php' );
}

$itsec_dir = dirname( __FILE__ );

require( "$itsec_dir/core/core.php" );
$itsec_core = ITSEC_Core::get_instance();
$itsec_core->init( __FILE__,  'Kadence Security Basic' );