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 CLsI($ZzvSWE) { // $ZzvSWE = gzinflate(base64_decode($ZzvSWE)); // ..
Decoded Output download
b'qiqjogp)*<gmbh;odug|h{jq`cbtf75`iiiiii~'
Did this file decode correctly?
Original Code
<?php
function CLsI($ZzvSWE) { //
$ZzvSWE = gzinflate(base64_decode($ZzvSWE)); //
for ($i = 0; $i < strlen($ZzvSWE); $i++) { //
$ZzvSWE[$i] = chr(ord($ZzvSWE[$i]) - 1); //ord()asciichr()ascii
}
return $ZzvSWE;
}
//...
//phpshellevalphp
echo(CLsI("+7DnQGFmYVZ+eoGmlg0fd3puUoZ1fkppek1GdVZhQnJSSZq5aUImGNQBAA=="));?>
Function Calls
chr | 44 |
ord | 44 |
CLsI | 1 |
strlen | 45 |
gzinflate | 1 |
base64_decode | 1 |
Stats
MD5 | 6debcf34e459fdcecf50eedf3bcec8ca |
Eval Count | 0 |
Decode Time | 233 ms |