jason310771 Posted July 31, 2012 Share Posted July 31, 2012 I have once or twice seen some PHP site code in the past that you needed a unlock code to use it and the code was completely unreadable. Can anyone suggest how I could do this to my own code ? Any sites that offer this service or software that I can buy to convert my code to this protected format. Quote Link to comment https://forums.phpfreaks.com/topic/266511-how-do-i-secure-my-php-code-from-being-seen-using-some-unlock-code/ Share on other sites More sharing options...
lordshoa Posted July 31, 2012 Share Posted July 31, 2012 ioncube and zend encrypt but there are many programs that do it high priced and low prices some easy to reverse and some hard but if someone wants the code it can be reversed in the end maybe not today but maybe tomorrow. Quote Link to comment https://forums.phpfreaks.com/topic/266511-how-do-i-secure-my-php-code-from-being-seen-using-some-unlock-code/#findComment-1365784 Share on other sites More sharing options...
hakimserwa Posted July 31, 2012 Share Posted July 31, 2012 i think you are talking about the hashing process. md5 can be a good keyword to start with Quote Link to comment https://forums.phpfreaks.com/topic/266511-how-do-i-secure-my-php-code-from-being-seen-using-some-unlock-code/#findComment-1365806 Share on other sites More sharing options...
Pikachu2000 Posted July 31, 2012 Share Posted July 31, 2012 No, that isn't what the OP is talking about at all. He's talking about securing his code from being human readable. Quote Link to comment https://forums.phpfreaks.com/topic/266511-how-do-i-secure-my-php-code-from-being-seen-using-some-unlock-code/#findComment-1365808 Share on other sites More sharing options...
peipst9lker Posted August 1, 2012 Share Posted August 1, 2012 Google for "PHP Code Obfuscation" But in the end its not really worth it, when the PHP interpreter can read the code a decompiler could too. Quote Link to comment https://forums.phpfreaks.com/topic/266511-how-do-i-secure-my-php-code-from-being-seen-using-some-unlock-code/#findComment-1365919 Share on other sites More sharing options...
cpd Posted August 1, 2012 Share Posted August 1, 2012 Google for "PHP Code Obfuscation" But in the end its not really worth it, when the PHP interpreter can read the code a decompiler could too. Obfuscation has nothing to do with compiling. Quote Link to comment https://forums.phpfreaks.com/topic/266511-how-do-i-secure-my-php-code-from-being-seen-using-some-unlock-code/#findComment-1365941 Share on other sites More sharing options...
peipst9lker Posted August 1, 2012 Share Posted August 1, 2012 Obfuscation has nothing to do with compiling. Read again bro Quote Link to comment https://forums.phpfreaks.com/topic/266511-how-do-i-secure-my-php-code-from-being-seen-using-some-unlock-code/#findComment-1365953 Share on other sites More sharing options...
cpd Posted August 1, 2012 Share Posted August 1, 2012 Read what? Compiling is in effect obfuscation in itself but the intended purpose isn't to hide the true meaning, its to create machine code so it can be executed... feel free to enlighten me with why else we compile code. Quote Link to comment https://forums.phpfreaks.com/topic/266511-how-do-i-secure-my-php-code-from-being-seen-using-some-unlock-code/#findComment-1365967 Share on other sites More sharing options...
Christian F. Posted August 1, 2012 Share Posted August 1, 2012 Compiler != decompiler. The former is to make things machine-readable (and/or quicker to execute), while the latter is for making obfuscated/compiled code human readable again. Quote Link to comment https://forums.phpfreaks.com/topic/266511-how-do-i-secure-my-php-code-from-being-seen-using-some-unlock-code/#findComment-1365969 Share on other sites More sharing options...
hakimserwa Posted August 1, 2012 Share Posted August 1, 2012 check this http://www.almahdi.cc/category/programming Quote Link to comment https://forums.phpfreaks.com/topic/266511-how-do-i-secure-my-php-code-from-being-seen-using-some-unlock-code/#findComment-1366019 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.