Anti-Memory-Hacking and modulation detector

Anti-Memory-Hacking and Detector


* Strong Memory encryption.


* Memory modulation detector.


* Support for multi-platform


- Windows( DLL )


- OSX( Bundle )


- Android( dynamic libarary .so )


- iOS ( dynamic library .a )


* How to use?


1. You can declare the variable type as [SerializeField] and use it right away.

 A. [SerializeField] NFreeSV_Int secureValue_Int;

 B. NFreeSV_Int val = NFreeSV_Int.Create(100);


 nly with this can you be free from memory hacks using Cheat Engine, etc.


2. If you want to detect when memory tampering is suspected, register a static callback function.

NFreeSVWrapper.RegisterCallback((ThreatLevel level) =>

{

    Debug.LogError($"Memory moduation detected!! => {level.ToString()}");

});