Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

function stringxor($o1, $o2) { $res = ''; for($i=0;$i<strlen($o1);$i++) ..

Decoded Output download

<?  function stringxor($o1, $o2) { 
    $res = ''; 
    for($i=0;$i<strlen($o1);$i++) 
        $res .= chr(ord($o1[$i]) ^ ord($o2[$i]));         
    return $res; 
} 
 
$key = "c92fcd618967933ac463feb85ba00d5a7ae52842"; ?>

Did this file decode correctly?

Original Code

function stringxor($o1, $o2) {
    $res = '';
    for($i=0;$i<strlen($o1);$i++)
        $res .= chr(ord($o1[$i]) ^ ord($o2[$i]));        
    return $res;
}

$key = "c92fcd618967933ac463feb85ba00d5a7ae52842";

Function Calls

None

Variables

$key c92fcd618967933ac463feb85ba00d5a7ae52842

Stats

MD5 e5bc2c3a63b2a785d496b477fc152390
Eval Count 0
Decode Time 59 ms