Author | App 5 |
Member

Posts: Location:
Joined: 01.01.70 Rank: Guest | |
How did you get the button clicked at application cracking 5?
I used Spy++, Visual C++ and wrote some code to click the button for me.
But i'm curious if there are other ways to get the button clicked, or enabled. |
 |
Author | RE: App 5 |
korg Member

Posts: 2803 Location: ENDING YOUR ONLINE EXPERIENCE!
Joined: 01.01.06 Rank: God | |
It can be done in Ollydbg really easy also.
I deal in pain, All life I drain, I dominate, I seal your fate. |
 |
Author | RE: App 5 |
GTADarkDude Member

Posts: 142 Location: The Netherlands
Joined: 23.02.08 Rank: Newbie | |
MoshBat wrote:
I actually can't remember which I used, but methinks it was the ampersand one. Yes it was that one.
I used a simple hex editor. Easy.
... |
 |
Author | RE: App 5 |
SpitFire46 Member

Posts: 14 Location: Anywhere
Joined: 17.05.16 Rank: Mad User | |
I can't even click the enter button..and I think the serial key is not numbers right?? |
 |
Author | RE: App 5 |
_spartax_ Member

Posts: 33 Location: SYSTEM
Joined: 03.06.16 Rank: HBH Guru | |
Its correct. I have solved it
Edited by _spartax_ on 07-12-16 17:43 |
 |
Author | RE: App 5 |
Huitzilopochtli Member

Posts: 1644 Location:
Joined: 19.02.13 Rank: God | |
Finding the serial number is easy and pretty straight forward, the main part of the challenge is enabling the enter button.
Try googling for how to create an access key for Windows forms, and if you still don't get it, go back and re read GTADarkDude's post right above yours. |
 |
Author | RE: App 5 |
_spartax_ Member

Posts: 33 Location: SYSTEM
Joined: 03.06.16 Rank: HBH Guru | |
https://paste.kde.org/pbth1i5kg
Edited by _spartax_ on 10-12-16 15:10 |
 |
Author | RE: App 5 |
SpitFire46 Member

Posts: 14 Location: Anywhere
Joined: 17.05.16 Rank: Mad User | |
I've watched a tutorial where the guy made a windows form application to crack an app using visual c#..is there a visual c++ to download ?? cuz i'm pretty good at it   |
 |
Author | RE: App 5 |
_spartax_ Member

Posts: 33 Location: SYSTEM
Joined: 03.06.16 Rank: HBH Guru | |
C# is a byte compiled language. You can access Window Handles through it, as it provides a wrapper to the C functions of Win32 API
|
 |
Author | RE: App 5 |
_spartax_ Member

Posts: 33 Location: SYSTEM
Joined: 03.06.16 Rank: HBH Guru | |
Actually there is no need to write a cpp program. Just open the disassembly and you scroll down to __vbaStrCmp routine call. You'll see that the serial is constructed with __vbaStrI2 function. __vbaStrI2 === convert a short int to String
|
 |