Search code examples
c#metasploit

How to create "native 32 bit" application?


I am using shellter in my kali linux and want to inject a file using the software? I created a Simple Calculator in C# using visual studio with plateform x86 and release mode while compiling. But still shellter shows error that it only support "native 32 bit applications only". What i am doing wrong? I compiled 32 bit in my visual studio.


Solution

  • i am not a linux-pro and do not know what shellter is but i guess in this case native means the application must be native as a cpp-application. dotnet and java as examble are not native because the are compiled to bytecode on build and then compiled to machine code at runtime. so i think you have to write your application in a language which builds machine code as c++ does.