PHP Malware Analysis

up.html

md5: fe3c513382acbbec70d5f96a5158bef2

Jump to:

Screenshot


Attributes


Deobfuscated PHP code


<!DOCTYPE html>
<html>
<body>

<form action="up.php" method="post" enctype="multipart/form-data">
  Select image to upload:
  <input type="file" name="fileToUpload" id="fileToUpload">
  <input type="submit" value="Upload Image" name="submit">
</form>

</body>
</html>

Execution traces


Generated HTML code

<html><head></head><body>

<form action="up.php" method="post" enctype="multipart/form-data">
  Select image to upload:
  <input type="file" name="fileToUpload" id="fileToUpload">
  <input type="submit" value="Upload Image" name="submit">
</form>



</body></html>

Original PHP code


<!DOCTYPE html>
<html>
<body>

<form action="up.php" method="post" enctype="multipart/form-data">
  Select image to upload:
  <input type="file" name="fileToUpload" id="fileToUpload">
  <input type="submit" value="Upload Image" name="submit">
</form>

</body>
</html>