You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make a c# dll with public class and public static method Load with parameter string
Make another c# internal class with method Start that assigns some random values to 3 fields
Make a field of type string internal named Hash
Make another c# internal class and put there internal field named Hash and internal method Init
put another method inside of the Load method and in that method make new instance of both classes and assign the parameter to field hash
in the Init method pop message box with value of that field
Put [Obfuscation(Exclude = true)] on Load method
Obfuscate code with:
Rename
Control Flow
Constants
Ref proxy
Anti Ildasm and Resources and enable inherit protections
Call the load method using Mono and put random string as parameter
the messagebox will popup as random string from the code not what you put as parameter and the popped message will change if you delete any of the obfuscations.
The text was updated successfully, but these errors were encountered:
How to reproduce this?
The text was updated successfully, but these errors were encountered: