pengumuman
pengumuman
Eval Encode Decode - SundaXploitID
Eval Encode Decode

Tools Eval Encoding - Decoding




Encoding

In the original php code as an example :


<?php
echo "hello world";
?>


That as an example and how do we manage it? see the example below :


We just take the php function


<?php
echo "hello world";
?>


then encode it with the arranged path, for example :
I use grooves str_rot13 - gzinflate - str_rot13 - base64 this is the result KyooWkVDKi2qrFlFyFdXrSxHsgYA
now we use the eval function to run :

<?php
$code = "KyooWkVDKi2qrFlFyFdXrSxHsgYA";
eval(str_rot13(gzinflate(str_rot13(base64_decode($code)))));
?>


Decoding

We also have to pay attention to the flow when encoding and what is decoding is the content only and adjusts the flow

<?php
$code = "KyooWkVDKi2qrFlFyFdXrSxHsgYA";
eval(str_rot13(gzinflate(str_rot13(base64_decode($code)))));
?>


in the example above we just took KyooWkVDKi2qrFlFyFdXrSxHsgYA for on decoding.

RATING UNTUK TOOLS INI

RATING :

Orang yang menilai