Click here to Skip to main content
Click here to Skip to main content

Tagged as

Go to top

Free PHP Encoder Application

, 4 Aug 2009
Rate this:
Please Sign up or sign in to vote.
A free PHP encoder application.

Introduction

This free PHP Encoder Application allows to encode PHP scripts before distributing them. It is all PHP compatible. The encoded scripts are 100% PHP featured, and works on all servers including Windows, Linux, FreeBSD, MacOSX, and others. It is possible to combine encoded and Open Source scripts in one site. The usage of encoded scripts is transparent to your visitors.

This tool allows you to encode immediately, without any installations.

Background

The PHP Encoder Application is a powerful application developed by Illumination to protect your source code. This software will encrypt PHP source code using System.Text.Encoding of the .NET Framework. The PHP code that is encoded by this application is protected against unauthorized modification and theft. The encoding also prevents hackers from looking into your code to find security weaknesses.

Using the code

Now, we are looking for a way to encrypt the PHP code. In C#, you need to have two base functions:

public string Decrypt64(string strToDecrypt)
{
    try
    {
        byte[] decodedByteArray =
                      Convert.FromBase64CharArray(strToDecrypt.ToCharArray(),
                                                    0, strToDecrypt.Length);
        return Encoding.UTF8.GetString(decodedByteArray);
    }
    catch (Exception ExceptionErr)
    {
        throw new System.Exception(ExceptionErr.Message,
            ExceptionErr.InnerException);
    }
}

and:

public string Encrypt64(string strToEncrypt)
{
    try
    {
        byte[] bytInput = Encoding.UTF8.GetBytes(strToEncrypt);
        return Convert.ToBase64String(bytInput);
    }
    catch (Exception ExceptionErr)
    {
        throw new System.Exception(ExceptionErr.Message,
            ExceptionErr.InnerException);
    }
}

Please download the source code and look at the IEncodePHP class.

  1. Write an error log or any information in the log file. In this article, I write the log file to Log.txt:
  2. string LogFileName = "Log.txt";
    FileInfo f = new FileInfo(LogFileName); 
    StreamWriter writeLog = f.CreateText(); 
    IEncodePHP iEncodePHP = new IEncodePHP(writeLog);

    The constructor of the IEncodePHP class for the write log:

    StreamWriter writeLog;
    
    public IEncodePHP(){}
    
    public IEncodePHP(StreamWriter prmWriteLog)
        : base()
    {
        this.writeLog = prmWriteLog;
    }
  3. Create all files and folders in the target folder like the source folder by following a rotation method:
  4. public void GetFileInDirectory(string encodePath, int level, string decodePath)
    {
        DirectoryInfo dir = new DirectoryInfo(encodePath.Trim());
        DirectoryInfo[] directory = dir.GetDirectories();
        FileInfo[] bmpfiles = dir.GetFiles("*.*");
    
        int totalFile = bmpfiles.Length;
        foreach (FileInfo f in bmpfiles)
        {
            string fileName = f.Name.ToString();
            long lengthOfFile = f.Length;
            DateTime createTimeFile = f.CreationTime;
            FileAttributes fileAttributes = f.Attributes;
            string sourceFilePath = encodePath + @"\" + fileName;
            string encodeFilePath = decodePath + @"\" + fileName;
            if (File.Exists(sourceFilePath))
            {
                if (!File.Exists(encodeFilePath))
                {
                    CreateFile(sourceFilePath, encodeFilePath);
                }
            }
        }
    
        foreach (DirectoryInfo f in directory)
        {
            string folderName = f.Name.ToString();
            DateTime createTimeFile = f.CreationTime;
            FileAttributes folderAttributes = f.Attributes;
    
            level++;
            string strEncodepath = encodePath + @"\" + folderName;
            string strDecodePath = decodePath + @"\" + folderName;
            //Create decode path
    
            if (!File.Exists(strDecodePath))
            {
                CreateFolder(decodePath, folderName);
            }
            GetFileInDirectory(strEncodepath, level, strDecodePath);
        }
    }
    1. Create a folder:
    2. private void CreateFolder(string parentPath, string folder)
      {
          try
          {
              string path = parentPath + @"\" + folder;
              if (!File.Exists(path))
              {
                  DirectoryInfo dir = new DirectoryInfo(parentPath);
                  dir.CreateSubdirectory(folder);
      
              }
          }
          catch (Exception ex)
          {
              throw ex;
          }
      }
    3. Create a file: Check that the file is a PHP file. If the file is a PHP file, then create a new file, else copy the source files to the target files.
    4. private void CreateFile(string sourceFilePath, string encodeFilePath)
      {
      
          string sourceExt = GetExtOfFile(sourceFilePath);
          string[] arrExtAllow = { "php", "inc" };//review the rem code // of js
      
          if (!IsAllowEncode(arrExtAllow, sourceExt))
          {
              File.Copy(sourceFilePath, encodeFilePath, true);
          }
          else
          {
              FileInfo fi = new FileInfo(encodeFilePath);
              FileStream fstr = fi.Create();
              fstr.Close();
      
              FileInfo f = new FileInfo(encodeFilePath);
              StreamWriter w = f.CreateText();
      
              StreamReader SR;
              SR = File.OpenText(sourceFilePath);
              encodeFile(SR, w);
              w.Close();
          }
      }
  5. Encode the PHP code:
  6. private string EncodePHP(ArrayList arrToEncode)
    {
        this.writeLog.WriteLine(ConvertToString(arrToEncode));
        string strToEncode = ConvertToString(arrToEncode);
        strToEncode = strToEncode.Replace(IlluminationConstants.newLineScript, "");
        string strEncode1 = EncodePHP(objCrypto.Encrypt64(strToEncode));
        this.writeLog.WriteLine(strEncode1);
        for (int i = 0; i < 4; i++)
        {
            strEncode1 = EncodePHP(objCrypto.Encrypt64(strEncode1));
        }
        return EncodePHP(objCrypto.Encrypt64(strEncode1));
    }
    
    private string EncodePHP(string strEncoded)
    {
        string variable1 = IRandom.GetRandomString(4, false, false);
        string variable2 = IRandom.GetRandomString(3, false, false);
        string variable3 = IRandom.GetRandomString(2, false, false);
    
        string startVariable = " $" + variable1 + " = '";
        string endVariable = "';";
        string strDecode = "$" + variable3 + " = '$" + variable2 +
            " = base64_decode($" + variable1 + "); eval($" + variable2 + ");';";
        string strEval = "eval($" + variable3 + ");";
        strEncoded = startVariable + strEncoded + endVariable + strDecode + strEval;
        return strEncoded;
    }

How to encode a PHP file using the Illumination tool?

You can run the Illumination tool by specifying the source directory and the target directory as follows:

  1. Click Browse... in the source to find a folder that contains PHP files.
  2. Click Browse... in the target to find a destination folder that you want the encoded file to be located in.
  3. Click the "Encode" button to encode all PHP files in your selected folder.
  4. Wait for the Congratulation dialog and enjoy your encoded file.

When you start with the "Encode" button, the Illumination tool will encode the files in the source-directory and save the results in the target-directory.

Points of interest

In this tutorial, you learned about the many features of the Illumination tool and how to use them to quickly protect your PHP scripts. Additional technical information is available from the Illumination blog. Visit the following link for more information: http://vn.myblog.yahoo.com/quangw5000.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

Share

About the Author

Sần Hải Quang
Software Developer (Senior) Bamboo Solutions
Vietnam Vietnam
My full name is Sần Hải Quang. I'm software engineer of Bamboo Solutions. My company is a Microsoft Gold-certified partner, is a leading global provider of SharePoint Web Parts and technologies that extend the power of the SharePoint platform. Over 4,500 organizations worldwide have chosen to enhance their SharePoint deployment with products and solutions from Bamboo. If you have SharePoint, you need Bamboo!

Comments and Discussions

 
QuestionTrial or not trial, that's the question. Pinmembererm3nda1-Apr-14 13:13 
QuestionCommand Line usage? Pinmembererm3nda1-Apr-14 13:11 
QuestionSee a blank page PinmemberMember 1040042118-Nov-13 15:32 
QuestionThanks PinmemberMember 1036124125-Oct-13 21:10 
Questionkeep on creating target folder with target file inside the target directory Pinmemberdownpobs4-Nov-12 18:51 
QuestionWhen i run at localhost there is a problem. can you help me sir? PinmemberMember 955160327-Oct-12 22:13 
AnswerRe: When i run at localhost there is a problem. can you help me sir? Pinmembererm3nda1-Apr-14 13:06 
Questionerror " headers already sent by" Pinmembersyuuzero3-Apr-12 0:20 
AnswerRe: error " headers already sent by" PinmemberMember 1036124125-Oct-13 21:05 
QuestionIt works. Pinmemberfajardwinugroho9-Feb-12 9:01 
QuestionError - How to use it in webserver? Pinmemberreyz_wha25-Dec-11 10:18 
AnswerRe: Error - How to use it in webserver? PinmemberMember 916279710-Jul-12 8:45 
Questionwhy size of the file php to be large Pinmemberdewamaya19-Dec-11 22:46 
GeneralThanks! PinmemberJessyWilliams19-Sep-11 0:45 
Generalshowing error Pinmemberbasant12345622-Mar-11 20:27 
GeneralRe: showing error PinmemberMember 105820668-Feb-14 20:16 
Generalchange another algorithms PinmemberNAING19-Dec-10 8:21 
GeneralThanks for tool Pinmembersaurabhaggarwal12-Mar-10 15:42 
GeneralRe: Thanks for tool PinmemberSần Hải Quang12-Mar-10 17:14 
GeneralMy vote of 1 PinmemberAnton Levshunov16-Nov-09 4:03 
GeneralRe: My vote of 1 PinmemberSần Hải Quang12-Mar-10 17:32 
QuestionDecode/decrypt? PinmemberCECUCROTZ2-Nov-09 21:58 
AnswerRe: Decode/decrypt? PinmemberSần Hải Quang12-Mar-10 17:39 
GeneralFeekback question Pinmemberhaiquang9-Aug-09 15:15 
GeneralRe: Feekback question Pinmemberadi prabowo19-Aug-09 23:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

| Advertise | Privacy | Mobile
Web02 | 2.8.140922.1 | Last Updated 4 Aug 2009
Article Copyright 2009 by Sần Hải Quang
Everything else Copyright © CodeProject, 1999-2014
Terms of Service
Layout: fixed | fluid