Jitex icon indicating copy to clipboard operation
Jitex copied to clipboard

A library to modify MSIL and native code at runtime

Results 16 Jitex issues
Sort by recently updated
recently updated
newest added

Currently, Jitex only expects one 'ret' instruction AND as the last instruction in the body. When the method has multiple 'ret' instructions, we're not covering all paths. Example: MSIL Body...

bug

I want to hook the two methods of System.Text.Encoding. public virtual string GetString(byte[] bytes) public virtual string GetString(byte[] bytes, int index, int count) JitexManager.MethodResolver += context => { Trace.WriteLine($"{context.Method.DeclaringType.Name} {context.Method.Name}"...

Hi,I have watched this Rep for a long time. At first you are palnning to add support for Net Frameworks, But now it seems it will never be none. However,...

After force recompiling a method (without replacing it or anything) subsequent calls to the method throw access violation exception

For example, I want to intercept HttpWebRequest.GetResponse() ,but always failed. And I do a lot of reaserch and find out that classes and methods that inherit from MarshalByRefObject are not...