Example #1
0
        bool FindNativeCode(byte[] moduleBytes)
        {
            var bytes = moduleBytes != null ? moduleBytes : DeobUtils.ReadModule(module);

            using (var peImage = new MyPEImage(bytes))
                return(foundSig = MethodsDecrypter.Detect(peImage));
        }