Git Product home page Git Product logo

php-integral-obfuscator's Introduction

PHP Integral Obfuscator

PHP Integral Obfuscator is a tool to obfuscates PHP code. It compiles a PHP code to a binary file.

Advantage(s) of Using Obfuscator

  1. Make your PHP code not human readable. It is good for protecting your private code against people and script kiddies.

Disadvantages of Using Obfuscator

  1. Obfuscator may slow down your application in the start process (it does not affect your application runtime performance). But, if you are using it on a web-based application, the start process is done for every request. So, code obfuscation is only good for a CLI based application, not a web-based application.
  2. The obfuscated file size is larger than the non-obfuscated file.
  3. An obfuscated application may not be started properly due to inaccurate analyses, bugs in internal obfuscator, or any other possibilities.

History

I created a PHP obfuscator that called IceTea Obfuscator (https://github.com/ammarfaizi2/icetea_obfuscator). But, it was not a good obfuscator, since the obfuscated code was really easy to be reversed. So here, I create a better obfuscator and named it PHP Integral Obfuscator.

License

This software is licensed under MIT License.

Usage

Usage: ./integralobf [option] <file>

	-k <key>		Give a key to encrypt the input file (default: abc123).
	--key <key>		Give a key to encrypt the input file (default: abc123).
	-o <file>		Save obfuscated PHP code to <file> (default: a.out).
	--output <file>		Save obfuscated PHP code to <file> (default: a.out).
	-s <shebang>		Add a shebang into obfuscated PHP file (default: (no shebang)).
	--shebang <shebang>	Add a shebang into obfuscated PHP file (default: (no shebang)).
	-h			Show this message.
	--help			Show this message.


Example usage:
	./integralobf --output output.php --key mypassword123 --shebang '/usr/bin/env php' input.php

Contribution

I would be happy to receive issues and pull requests. Please provide the problem in details if you have an issue to be submitted.

php-integral-obfuscator's People

Contributors

ammarfaizi2 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

php-integral-obfuscator's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.