![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/jetpack/modules/ |
<?php /** * Module Name: Firewall * Module Description: Protect your site with Jetpack's Web Application Firewall * Sort Order: 5 * First Introduced: 10.9 * Requires Connection: Yes * Auto Activate: No * Module Tags: Firewall, WAF * Feature: Security * * @package automattic/jetpack */ // Do not run in the WPCOM context if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) { return; } // Check if killswitch is defined as true if ( defined( 'DISABLE_JETPACK_WAF' ) && DISABLE_JETPACK_WAF ) { return; } /** * Triggers when the Jetpack plugin is updated */ add_action( 'upgrader_process_complete', array( 'Automattic\Jetpack\Waf\Waf_Runner', 'update_waf' ) ); Automattic\Jetpack\Waf\Waf_Runner::initialize();