├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── BatchProtect.sln ├── BatchProtect ├── BatchProtect.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Obfuscator.cs └── Program.cs ├── Encode substrings by custom variables.png ├── LICENSE ├── Obfuscate Flow.png ├── README.md └── Randomize variable and subroutine names.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/.gitignore -------------------------------------------------------------------------------- /BatchProtect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/BatchProtect.sln -------------------------------------------------------------------------------- /BatchProtect/BatchProtect.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/BatchProtect/BatchProtect.csproj -------------------------------------------------------------------------------- /BatchProtect/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/BatchProtect/Form1.Designer.cs -------------------------------------------------------------------------------- /BatchProtect/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/BatchProtect/Form1.cs -------------------------------------------------------------------------------- /BatchProtect/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/BatchProtect/Form1.resx -------------------------------------------------------------------------------- /BatchProtect/Obfuscator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/BatchProtect/Obfuscator.cs -------------------------------------------------------------------------------- /BatchProtect/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/BatchProtect/Program.cs -------------------------------------------------------------------------------- /Encode substrings by custom variables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/Encode substrings by custom variables.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/LICENSE -------------------------------------------------------------------------------- /Obfuscate Flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/Obfuscate Flow.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/README.md -------------------------------------------------------------------------------- /Randomize variable and subroutine names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaC/BatchObfuscator/HEAD/Randomize variable and subroutine names.png --------------------------------------------------------------------------------