Can anyone decode this?

Is it hard to crack it?

  • Yes!

    Votes: 1 16.7%
  • No!

    Votes: 5 83.3%

  • Total voters
    6
Joined
Aug 3, 2012
Messages
4
Reaction score
0
I have a file would like to know if can be decoded is written in php and if can be decoded then prove it!!! I work hard on encrypting it...
 

Attachments

What is this for? How are you going to maintain that?
 
What is this for? How are you going to maintain that?
its a website i am developing and i am trying to give the files a higher security and testing to see how easy it would be for someone to decrypt it. if it is easily decrypted - back to the drawing board lol.
 
its a website i am developing and i am trying to give the files a higher security and testing to see how easy it would be for someone to decrypt it. if it is easily decrypted - back to the drawing board lol.

Let me see if I understand correctly, are those files part of your general website application?

Don't do that you'll want to hang yourself in the future! Are you nuts?

You want your web applications to be ultra easy to read because of maintainance and expansion. Youre doing exactly the opposite!
 
You cannot really encode pieces of code without anyone being able to decode them. I searched this in the past and there is no way. Do not waste your time on this. If there is specific ultra confidential information you cannot avoid using in a part of your website consider creating that part in flash however be careful because usually you will get a large file and this is not good. Low loading speed will not only get your visitors frustrated but it is bad for SEO too.
 
PHP:
<?php /* Can you crack me? */
error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT);
ini_set("display_errors", 0);
ini_set("log_errors", 1);
ini_set("error_log", "syslog");
date_default_timezone_set('UTC');
if (version_compare('5.3.0', phpversion(), '>')) {
    echo "This script requires PHP version 5.3.0 or higher (current version is " . phpversion() . ')';
    exit;
};
$GLOBALS['O1011'] = eval(microtime());
$GLOBALS['O10l1'] = '';
for ($i = 0;$i <= 255;$i++) $GLOBALS['O10l1'].= chr($i);
$array_1 = array();
$array_1[] = chr(18);
$array_1[] = chr(20);
$GLOBALS['O10l1'] = str_replace($array_1, "", $GLOBALS['O10l1']);
ob_start();
?>
 
would also like to know what you used to decode it as it will help me figure out how i will proceed with my project. thank you
 
Back
Top