Crack

03/07/2015 00:25 asdjkhjkasdnm,#1
Title says all, could someone crack an .exe for me? I just want to have it as unprotected, I didn't bother with Co for years and many things has changed since, cracking exes changed aswell just as the new ways of encrypting I guess, so if any of you have a few seconds, I'll add upload the .exe.

Thank you for your patience.
03/07/2015 02:51 Xio.#2
Well... people usually crack the conquer.exe to achieve that sort of thing

just saying.
03/07/2015 06:16 LetterX#3
I want some crack.
03/07/2015 10:11 asdjkhjkasdnm,#4
Quote:
Originally Posted by Xio. View Post
Well... people usually crack the conquer.exe to achieve that sort of thing

just saying.
oh lol I uploaded wrong one.

Any hints since nobody got time for it? I tried every single tool provided by Ulti. but neither of them seemed to work. I also tried a very old method, using Notepad++ but TQSever wasn't found.
03/07/2015 18:22 m e n a#5
Try Ollydbg " website > [Only registered and activated users can see links. Click Here To Register...]."
direct download link for the latest version from [Only registered and activated users can see links. Click Here To Register...]

Helpful thread " [Only registered and activated users can see links. Click Here To Register...]"
______________________________________________

EDIT: I was also searching in the thread for any useful posts and i found this it may help a little I don't know actually what you mean with cracked-unprotected .exe but this may be on-topic I assume.

Originally posted by [Only registered and activated users can see links. Click Here To Register...]



Removing the "server.dat is damaged" message so we can connect to private servers/proxies.
Do it manually rather than downloading those patched binaries.


1. Open Conquer in OllyDbg, then load the conquer module into the main CPU window.
2. Right click->Search for->All intermodular calls
3. Click the Destination header to sort alphabetically, then scroll down till you see WS2_32.inet_addr in the destination column (There should be more than one instance of it.)
4. Click on each instance and look at the code. In my version, there 3 are calls to inet_addr, but we only need 2 of those.

Code:
00432A16  |. FF15 50375200  CALL DWORD PTR DS:[<&WS2_32.#11>]; inet_addr
00432A1C  |. 83F8 FF        CMP EAX,-1
00432A1F  |. 74 08          JE SHORT Conquer.00432A29
[color=orange]00432A21     3C 7F          CMP AL,7F[/color]
00432A23  |. 75 04          JNZ SHORT Conquer.00432A29
00432A25  |. 6A 01          PUSH 1
00432A27  |. 58             POP EAX
00432A28  |. C3             RETN
Code:
004E251C   . E8 6BCCF9FF    CALL <JMP.&WS2_32.#11>; inet_addr
004E2521   . 83F8 FF        CMP EAX,-1
004E2524   . 74 79          JE SHORT Conquer.004E259F
[color=orange]004E2526     3C 7F          CMP AL,7F[/color]
004E2528   . 74 75          JE SHORT Conquer.004E259F
004E252A   . 8B86 04040000  MOV EAX,DWORD PTR DS:[ESI+404]
004E2530   . 8BCB           MOV ECX,EBX
004E2532   . FF70 1C        PUSH DWORD PTR DS:[EAX+1C]
The inet_addr function converts an IP string into a 32-bit integer, for example, 127.0.0.1 becomes 7f 00 00 01.
In the above code, the comparison to localhost is done on the highlighted line, CMP AL,7F. To skip this comparison we can just replace this code with NOP (no operation). Make sure you check "Fill with NOPs" in Olly, because the original instruction is 2 bytes, and thus you need to place 2 NOP instructions there to cover it.

The new code will look like this:


Code:
00432A16  |. FF15 50375200  CALL DWORD PTR DS:[<&WS2_32.#11>]; inet_addr
00432A1C  |. 83F8 FF        CMP EAX,-1
00432A1F  |. 74 08          JE SHORT Conquer.00432A29
[COLOR="Blue"]00432A21     90             NOP
00432A22     90             NOP[/COLOR]
00432A23  |. 75 04          JNZ SHORT Conquer.00432A29
00432A25  |. 6A 01          PUSH 1
00432A27  |. 58             POP EAX
00432A28  |. C3             RETNDo
the same for the second one. Job done.
03/07/2015 19:20 asdjkhjkasdnm,#6
What I mean by protected .exe is I tried to inject a .dll (not for aimbot) and it didn't work, gave me an error saying the .exe I'm trying to inject is protected.

Thank you for all your effort by the way.

"Unable to read memory." this is what I got when I tried to do what you just showed me, and I know the methods with Olly, this .exe just seems to be different, I don't know. Doesn't worth the effort, thank you all so much though.
03/07/2015 19:52 m e n a#7
Quote:
Originally Posted by asdjkhjkasdnm, View Post
What I mean by protected .exe is I tried to inject a .dll (not for aimbot) and it didn't work, gave me an error saying the .exe I'm trying to inject is protected.

Thank you for all your effort by the way.

"Unable to read memory." this is what I got when I tried to do what you just showed me, and I know the methods with Olly, this .exe just seems to be different, I don't know. Doesn't worth the effort, thank you all so much though.
Well, my knowledge about injecting and dlls is so so little but while I was searching that guy threads I found a debugger that showing the .dlls it may help you I really don't know [Only registered and activated users can see links. Click Here To Register...].

and here's another thread talking about dlls, I'm really idiot I only learn what goes in my way so dll injecting isn't what I want to learn atm. [Only registered and activated users can see links. Click Here To Register...]
03/07/2015 20:27 asdjkhjkasdnm,#8
I know how it's done, that's not the problem, I could do everything just fine if the exe wasn't protected and I can't get the BF key via Olly cause Idk that method, nor can find any useful for that. I used Ulti's tool and got this for BF key, ¸@@V é`VýÿÌ̸h@V but after inserting it into another .exe using notepad++, it didn't let me to login.
03/07/2015 20:31 pro4never#9
Not sure why you're trying to get people to do your work for you.

If public tools and public methods don't work then it's up to you to put the effort in to un-pack the exe. It's probably some shitty public client protection but even still that will involve you doing some digging to crack it (or more accurately, find a public guide on cracking it)


Just a friendly reminder that hack requests are not permitted on epvp and people release what they want to release.