Hi all!
I do have a Dll protected with Remotesoft Salamander. This protector compiles native .Net code to asm without destroying the .Net methods.
The methods only do have a stack and ret variable.
Code:
.method family hidebysig virtual instance void ProtMethod() noinlining
{
.maxstack 8
ret
}
Sadly I don't know how to map the methods to the asm code?
Is there any tutorial for solving this kind of protection?
Thanks!