How to decode byterun – base64!




Tagged Under : , , , ,

Version: 13.1
Revision: 32 Build 11

How to decode byterun – base64!

Introduction:
alright soldier! It’s time to hit the road and do a “Byte – Run!”
Now, just hang on a minute… are we running a script?

Ahem, right… to explain this a little further, many users are hit with these remarkable encryption codes that is use to stop individual user from altering the footer, which is located in their Wordpress theme. It doesn’t matter if you bought the theme or not, but still, it is encrypted with a “byterun” engine. So, to decrypt it, we need a powerful script that can revert these codes into their original format.

Alright lads! Get the computer ready!!

Notes: this script will only work with “byterun – base64_decode”. So, anything else that has “edoced_46esab”, then the script will reject it!

1.] Copy this script and save it as a “.php” file. After that, just add the codes that is in between these structure.

<?php $_F=__FILE__;$_X='…..CDR…..';eval(base64_decode('-Encrypted-'));?>

Notes: you need to copy the encrypted codes which is shown as “CDR”.
Just copy it and place it in this script which is shown below…

<?php
$contents = "put your codes in here (eg.MDA4DQovLyBCeSBF)";
$contents = base64_decode($contents);
$contents = "<textarea rows=\"12\" cols=\"65\">".strtr($contents, "1234567aouie", "aouie1234567")."</textarea>";
echo $contents;
?>

2.] Log-in to your Cpanel and upload this “.php” script. After that, just browse the web and type in your domain – directory with the decoded file.

Example: http://domain.co.uk/decode_64.php

3.] Highlight everything which is shown in the box and paste it into your “footer.php” file. But, don’t forget to clear your encrypted strings, just before pasting (your decrypted strings).

4.] Save it and enjoy yourself!

Advice: if you have any other encrypted strings that is not “byterun – base64”, then I would recommend you to try this website: cyko.decodethe.net

Copyrighted by Lair360

Leave a Reply