Introduction

  1. Please consult the Guide on Protection with Stunnix Obfuscator without using Project Manager for information on changes that may be needed to adapt your projects for protection.
  2. Start Project Manager
  3. Click Project, New.
    1. Enter the project input directory - a root directory where all files and subdirectories of the project will reside.
    2. Enter output directory and the state files directory; it's recommended to use relative paths in order to not edit the project options once you will need to move your project to different directories for whatever reason.
    3. Specify project files type. This will help with automatic detection of options your project should be protected with.
  4. Go to Project, Files to ensure the file types are detected correctly.
  5. Use only if you are protecting Perl code (using Perl-Obfus): Go to Symbols, Get list of symbols from external modules, copy the list you'll be protecting, and paste it into "Symbols, User-Specified exceptions".
  6. Use only if you are protecting C/C++ code (using CXX-Obfus): Go to Symbols, Select which common header files to load, to see whether the proper category has been assigned to the header files found in your project. This is important since the categories corresponding to exceptions are activated automatically for all source files in your project.
  7. If you are protecting everything but Perl code (i.e. not using Perl-Obfus, but are using CXX-Obfus or JS-Obfus): You can put all 3rd-party libraries you use in your code (or header files defining their APIs, in case of C/C++) to the same directory. Simply go to Tools, Extract symbols from directory with source files, enter the name of that directory, select symbol types you wish to gather, and get the list of symbols defined in that directory. Cut them, then paste to "Symbols, User-Specified exceptions".
  8. Go to Build, Rebuild all. Your project will be built with debug settings. All symbols that are subject to protection will be renamed by adding the same prefix to each of them (in order to allow for trivial error detection).
  9. Go to Symbols, View Symbol mapping and check that no symbols you didn't want to be mangled are listed there. If they are, go to Symbols, User-Specified Exceptions and enter the symbols that should not be changed by listing them one per line.
  10. Clear state files after modifying the set of exceptions; otherwise "Symbols and View Symbol Mapping" will not be updated.
  11. Test that your protected project works as the original one; if it doesn't, list more necessary symbols as exceptions in "Symbols", User-Specified Exceptions".
  12. Repeat the previous 4 steps until successful.
  13. Go to Settings, "Select preset for code mangling.." and select a production profile you wish to apply to your project and click Save. (In the old versions of Project Manager you had to go to Settings, "Edit modes present in the project.. ", select mode 'BASE' and set its parent to 'SPECIAL BASE: Obfuscation engine options for production' and then click Save at the bottom of the page. This would also turn ON production mode of obfuscation, resulting in symbols being replaced with meaningless names and turning encoding on).
  14. Go to "Build, Clear output & State files" to clear all symbol mapping accumulated. This will also force the rebuilding of all files with new options. Then go to "Build, Rebuild changed" to rebuild everything.
  15. Your product will then be ready for shipping.

Useful tips