PHP Malware Analysis

index.html

md5: a2135fd831001f7d531e1e7315501a4f

Jump to:

Screenshot


Attributes


Deobfuscated PHP code

<!DOCTYPE html>
<head>

</head>
<body>
<?php 
echo "good";
?>
</body>
</html>

Execution traces


Generated HTML code

<html><head>

</head>
<body>
<!--?php echo "good"; ?-->

</body></html>

Original PHP code

<!DOCTYPE html>
<head>

</head>
<body>
<?php echo "good"; ?>
</body>
</html>