/var/www/html/wp-content/plugins/wp-cerber/

OS : Linux

PHP Version : 7.4.33

Software : Apache/2.4.6 (CentOS) PHP/7.4.33

Information System : Linux apprendre2 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64

Disable Function : 100 ) { // Normal forms never reach this limit self::$bad_request = true; return; } if ( ( $name = crb_array_get( $element, 'name' ) ) && is_string( $name ) && ( $tmp_file = crb_array_get( $element, 'tmp_name' ) ) && is_string( $tmp_file ) && is_file( $tmp_file ) ) { self::$files[] = array( 'source_name' => $name, 'tmp_file' => $tmp_file ); } elseif ( is_array( $element ) ) { self::$recursion_counter ++; if ( self::$recursion_counter > 100 ) { // Normal forms never reach this limit self::$bad_request = true; return; } self::parse_files( $element ); } } } static function is_comment_sent() { if ( ! isset( self::$commenting ) ) { self::$commenting = self::_check_comment_sent(); } return self::$commenting; } private static function _check_comment_sent() { if ( ! isset( $_SERVER['REQUEST_METHOD'] ) || $_SERVER['REQUEST_METHOD'] != 'POST' || empty( $_POST ) || ! empty( $_GET ) ) { return false; } if ( cerber_is_custom_comment() ) { if ( ! empty( $_POST[ crb_get_compiled( 'custom_comm_mark' ) ] ) && self::is_equal( crb_get_compiled( 'custom_comm_slug' ) ) ) { return true; } } else { if ( self::is_script( '/' . WP_COMMENT_SCRIPT ) ) { return true; } } return false; } }