I have an executable that requires the .NET Framework to run; I used a reflector and some popular decompilers, but I can not read the executable file;
This is where the manifest got the use of Resource Hacker;
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity version="1.0.0.0" name="MyApplication.app"/> <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2"> <security> <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> <requestedExecutionLevel level="asInvoker" uiAccess="false"/> </requestedPrivileges> </security> </trustInfo> </assembly>
Can someone tell me a suitable tool to decompile this assembly or executable? This requires .NET
. Thank you I use it for educational purposes.
Blank source share