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 function base64url_encode($data) { return rtrim(strtr(base64_encode($data), '+/'..
Decoded Output download
<?php
function base64url_encode($data) {
return rtrim(strtr(base64_encode($data), '+/', '-_'), '=');
}
function base64url_decode($data) {
return base64_decode(str_pad(strtr($data, '-_', '+/'), strlen($data) % 4, '=', STR_PAD_RIGHT));
}
function x($k, $p){
$c = "";
$l = strlen($k);
$pl = strlen($p);
for($i = 0; $i < $pl; $i++) {
$c .= $k[$i % $l] ^ $p[$i];
}
return $c;
}
$k = 'fd1af4c5007ac81d';
$content = readline("hash: ");
//$split = explode("=", $content);
//if (strcmp(base64url_decode($split[0]),'s3p3hr')) {
$decoded = base64url_decode($content);
$decrypted = x($k,$decoded);
//ob_start();
try {
echo($decrypted);
}
catch (exception $e) {
print($e->getMessage());
}
$o = ob_get_contents();
$c = x($k, $o);
$e = base64url_encode($c);
//ob_end_clean();
print($e . "
");
//}
?>
Did this file decode correctly?
Original Code
<?php
function base64url_encode($data) {
return rtrim(strtr(base64_encode($data), '+/', '-_'), '=');
}
function base64url_decode($data) {
return base64_decode(str_pad(strtr($data, '-_', '+/'), strlen($data) % 4, '=', STR_PAD_RIGHT));
}
function x($k, $p){
$c = "";
$l = strlen($k);
$pl = strlen($p);
for($i = 0; $i < $pl; $i++) {
$c .= $k[$i % $l] ^ $p[$i];
}
return $c;
}
$k = 'fd1af4c5007ac81d';
$content = readline("hash: ");
//$split = explode("=", $content);
//if (strcmp(base64url_decode($split[0]),'s3p3hr')) {
$decoded = base64url_decode($content);
$decrypted = x($k,$decoded);
//ob_start();
try {
echo($decrypted);
}
catch (exception $e) {
print($e->getMessage());
}
$o = ob_get_contents();
$c = x($k, $o);
$e = base64url_encode($c);
//ob_end_clean();
print($e . "\n");
//}
?>
Function Calls
readline | 1 |
Stats
MD5 | 40fd2fff55aca772fa754d2e0abe72a1 |
Eval Count | 0 |
Decode Time | 43 ms |