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 if ($argc != 3) { $filename = basename(__FILE__); $usage =<<<EOU port dir : ph..
Decoded Output download
<?php
if ($argc != 3) {
$filename = basename(__FILE__);
$usage =<<<EOU
port dir
: php $filename port dir
port
dir
EOU;
print $usage;
exit(1);
}
require_once 'file-transfer-classes.php';
new Server($argv[1], $argv[2]);
?>
Did this file decode correctly?
Original Code
<?php
if ($argc != 3) {
$filename = basename(__FILE__);
$usage =<<<EOU
port dir
: php $filename port dir
port
dir
EOU;
print $usage;
exit(1);
}
require_once 'file-transfer-classes.php';
new Server($argv[1], $argv[2]);
Function Calls
basename | 1 |
Stats
MD5 | d20b003b9e413d4409b54e91b47ef33e |
Eval Count | 0 |
Decode Time | 104 ms |