I'm really just stupid, I didn't see these http packets and ignored them... A very interesting crackme! |
==> |
I got libgen.dll with wireshark dump and encrypted user.html . But from this dll, functions are called with an argument in the form of a file, for example:
void* gen_from_file(char* arg1)
FILE* _Stream = fopen(_FileName: arg1, _Mode: "rb")
or
void* gen(void* file, void* len)
And I can't figure out what to do about it, maybe I'm stupid? |
==> |
this is a complete shitcode; answer: 13678967 |
==> |
I'm stuck on libgen.dll and the first function in the program. I don't understand where to get the "anonymous" file or something like that. Can I get a hint? |
==> |
the password is "6B 6F 74 61 6B 62 61 73 73" convert it from ASCII if you want to see it as text. |
==> |
I got the password by brute force, algorithm on cpp:
int alg(std::string passw) {
int len = passw.length();
int final = 0;
for (int i = 0; i (passw[i])) % 10000000;
}
return final;
}
The closest password is - 519187 |
==> |