I am a beginner, I want to decode 1 lvl in crackmes, I downloaded a GHIDRA as my main tool. I've got a simple keygen app.
Here it is: https://crackmes.one/crackme/5ab77f6433c5d40ad448cb2d. The solution is simple
use Reflectorand- go
KeyMe->KeyMe.exe->KeyMe->Form1 - now Go to the
CloseApp()method.
The source appears to be like this :
private void CloseApp()
{
string str = "papanyquiL";
for (int i = 0; i < this.textBox1.Text.Length; i++)
{ etc..
I won't ask how to get this function if the name would be different. But there are other problems - All my functions aren't visible in the decompiler, only enter function is available. I can't find an Assembler code and code in the solution.
Is GHIDRA ever available to decompile this type of file? It says that it is .NET CLR Managed Code, and that's all I've found.
