How to decode eval( gzinflate( base64_decode(

This should output the code that would be executed by eval():

<?php
echo gzinflate( base64_decode( /* insert code */ ));
?>

I hope that’s what you were looking for.

Leave a Comment