Jump to content
Tuts 4 You

Themida v2.4.6.30


1 Screenshot

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;
}

User Feedback

Recommended Comments

There are no comments to display.

×
×
  • Create New...