This is a .NET executable with a Goland DLL packed with Themida.
Try to unpack the executable, dump the bundled DLL then fix the DLL to make it work.
Once completed detail the methods used and how you fixed the DLL.
c# exe code: private void button1_Click(object sender, EventArgs e) { MessageBox.Show (Sum(22, 33).ToString (),"dump it"); } goland dll code: export Sum func Sum(a int, b int) int{ return a + b; }
Recommended Comments
There are no comments to display.