Protect your php code from ioncube decoders

Discussion in 'PHP' started by talker1, May 9, 2013.

  1. #1
    It is easy add this code to your php codes and encode file and you are safe with decoders. decoders can't decode your file correct :) full buggy

    run ioncube encoder > php 5.3 > encode (with or without obfuscate)

    namespace nobaby;
    class nobaby{}
    PHP:
     
    talker1, May 9, 2013 IP
  2. xrvel

    xrvel Notable Member

    Messages:
    918
    Likes Received:
    30
    Best Answers:
    2
    Trophy Points:
    225
    #2
    Wow thanks for the tips. I've never used namespace.
    Usually i use this code to make ioncube decoder's result messy
    
     
    if (!function_exists('something')) {
       function something() {
           // All code are safe here
       }
    }
     
    
    PHP:
     
    xrvel, May 15, 2013 IP