├── .gitattributes ├── README.md └── WhatsNew.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [StrongVM](https://strongvm.blogspot.com/) 2 | ======== 3 | StrongVM is a virtualizing protector for .NET applications. 4 | 5 | Features 6 | -------- 7 | * Custom rename method 8 | * Virtualize method 9 | * Protection against debuggers 10 | * Protection against memory dumping 11 | * Resources encryption 12 | * String virtualize 13 | * Merging .Net Assembly 14 | * Supports .NET Framework v2.0 - v4.8 15 | 16 | Requirement 17 | ----------- 18 | * .NET Framework Runtime v4.0 19 | 20 | 21 | [Get Latest](https://github.com/Modify24x7/StrongVM/releases/latest) 22 | 23 | License 24 | ------- 25 | [dnlib](https://github.com/0xd4d/dnlib/blob/master/LICENSE.txt) 26 | -------------------------------------------------------------------------------- /WhatsNew.txt: -------------------------------------------------------------------------------- 1 | 2 | -- [Bug Fix] System.AccessViolationException 3 | --------------------------------------------------------------------------------