Crack Me (Testing weird password thing) Please Help

Discussion in 'Programming General' started by htaed, Sep 7, 2008.

Crack Me (Testing weird password thing) Please Help
  1. Unread #1 - Sep 7, 2008 at 2:31 PM
  2. htaed
    Joined:
    Dec 19, 2005
    Posts:
    336
    Referrals:
    0
    Sythe Gold:
    0

    htaed Forum Addict
    Banned

    Crack Me (Testing weird password thing) Please Help

    Right, well it could be the stupidest thing i have ever done, but i just wanted to test it anyway, so a few months ago i released a simple crackme program in c++ to see if anyone could find out the password, many people did,

    So i've written a very strange way of calculating if the password is correct, i will tell you how it is done if someone cracks it, it shouldn't be to hard, just post the code given to you after the password was entered correctly.

    [​IMG]
     

    Attached Files:

  3. Unread #2 - Sep 7, 2008 at 2:58 PM
  4. Visual Basic Matt
    Joined:
    Jan 29, 2008
    Posts:
    647
    Referrals:
    2
    Sythe Gold:
    56
    Discord Unique ID:
    223154494878253056

    Visual Basic Matt Apprentice

    Crack Me (Testing weird password thing) Please Help

    Erm... What does this mean......

    Code:
    You fucking cheatzor don't tell anyone the secret codez :P
    Edit: I used my app made in vb to semi-decompile it...
     
  5. Unread #3 - Sep 7, 2008 at 3:01 PM
  6. htaed
    Joined:
    Dec 19, 2005
    Posts:
    336
    Referrals:
    0
    Sythe Gold:
    0

    htaed Forum Addict
    Banned

    Crack Me (Testing weird password thing) Please Help

    Thats not it its just a joke i put in for people that tried what you did, the code is stated quite clearly
     
  7. Unread #4 - Sep 7, 2008 at 3:18 PM
  8. iHem
    Joined:
    Jun 28, 2008
    Posts:
    503
    Referrals:
    0
    Sythe Gold:
    0

    iHem Forum Addict
    Banned

    Crack Me (Testing weird password thing) Please Help

    run time error

    EDit got it working lol secret code = R o C K E t M a n z W i n t e h G a m e r
     
  9. Unread #5 - Sep 7, 2008 at 3:19 PM
  10. htaed
    Joined:
    Dec 19, 2005
    Posts:
    336
    Referrals:
    0
    Sythe Gold:
    0

    htaed Forum Addict
    Banned

    Crack Me (Testing weird password thing) Please Help

    don't do what you did then :)
     
  11. Unread #6 - Sep 7, 2008 at 3:20 PM
  12. Visual Basic Matt
    Joined:
    Jan 29, 2008
    Posts:
    647
    Referrals:
    2
    Sythe Gold:
    56
    Discord Unique ID:
    223154494878253056

    Visual Basic Matt Apprentice

    Crack Me (Testing weird password thing) Please Help

    Yea, Runtime error for me... I think i had the right pass cause it said runtime error when i put it in otherwise its wrong pass...

    Edit: Yep, Nvm I got it.... I had it right cause when i decompiled i came up with that weird thing then scrolled down a bit and found this R o C K E t M a n z W i n t e h G a m e r

    Same as ihem
     
  13. Unread #7 - Sep 7, 2008 at 3:23 PM
  14. htaed
    Joined:
    Dec 19, 2005
    Posts:
    336
    Referrals:
    0
    Sythe Gold:
    0

    htaed Forum Addict
    Banned

    Crack Me (Testing weird password thing) Please Help

    Ok i am just writing how it works, good job.. can you say how you did it, so maybe i can try to make a more secure one and challange you devils some more :D

    [​IMG]
    So it works like this, there are 6 textboxes at the bottom, every time you press a key in the password box, it puts the keyascii of the button you pressed in the textboxes at the bottom, for the first six then it starts again, then it does this sum
    Code:
    sum = 0
    sum = Text2.Text
    sum = sum + Text3.Text
    sum = sum + Text4.Text
    sum = sum + Text5.Text
    sum = sum + Text6.Text
    sum = sum + Text7.Text
    sum = sum * 4
    sum = sum - 60
    sum = sum / 90
    
    Then the result of that is checked to another sum, and only if a boolean is set to true, which is set at true when six keys are pressed
    Code:
    Private Sub Command1_Click()
    If Text8.Text = 12 + 10 - 2 + 4 + 4 And resone = True Then
    MsgBox "Correct: Secret Code = RoCKEtManzWintehGamer"
    Else: MsgBox "Wrong Password"
    End If
    End Sub
    
     
  15. Unread #8 - Sep 7, 2008 at 5:46 PM
  16. Jazz00006
    Joined:
    Aug 26, 2005
    Posts:
    807
    Referrals:
    0
    Sythe Gold:
    0

    Jazz00006 Apprentice
    Visual Basic Programmers

    Crack Me (Testing weird password thing) Please Help

    Too easy. I cracked it the old fashion way.

    Any 6+ combination will get you access.
     

    Attached Files:

  17. Unread #9 - Sep 7, 2008 at 7:27 PM
  18. Visual Basic Matt
    Joined:
    Jan 29, 2008
    Posts:
    647
    Referrals:
    2
    Sythe Gold:
    56
    Discord Unique ID:
    223154494878253056

    Visual Basic Matt Apprentice

    Crack Me (Testing weird password thing) Please Help

    I made my own after I did this one... :p
    Can anyone get the final code after beating all 3 levels?

    -Sorry kinda hijacked your thread but i didn't see any point in making another when this has the same topic. (Its just basically a reply...)
     
  19. Unread #10 - Sep 8, 2008 at 10:24 AM
  20. macs
    Joined:
    Aug 29, 2008
    Posts:
    408
    Referrals:
    1
    Sythe Gold:
    0

    macs Forum Addict
    Banned

    Crack Me (Testing weird password thing) Please Help

    What does this actually do?
     
  21. Unread #11 - Sep 8, 2008 at 5:24 PM
  22. Jazz00006
    Joined:
    Aug 26, 2005
    Posts:
    807
    Referrals:
    0
    Sythe Gold:
    0

    Jazz00006 Apprentice
    Visual Basic Programmers

    Crack Me (Testing weird password thing) Please Help

    Nothing. It's just a way for people to test their programs and see if anyone can 'crack' them.

    And VB Matt. Your program shows all of its 'passwords' when viewed with a hex editor, or even notepad.
    Try not to store passwords in plain text.
     
  23. Unread #12 - Sep 8, 2008 at 5:39 PM
  24. Visual Basic Matt
    Joined:
    Jan 29, 2008
    Posts:
    647
    Referrals:
    2
    Sythe Gold:
    56
    Discord Unique ID:
    223154494878253056

    Visual Basic Matt Apprentice

    Crack Me (Testing weird password thing) Please Help

    I know... Thats just the numbers used to figure out the actual password your need to devide, add, using the numbers given. Try every possibility until you get the password....
     
  25. Unread #13 - Sep 8, 2008 at 6:40 PM
  26. Jazz00006
    Joined:
    Aug 26, 2005
    Posts:
    807
    Referrals:
    0
    Sythe Gold:
    0

    Jazz00006 Apprentice
    Visual Basic Programmers

    Crack Me (Testing weird password thing) Please Help

    I don't have to :D

    Your original (compiled) code looks something like this
    [​IMG]

    See that highlighted part, ... JE ... that simply put, means jump if equal to. (If X = true then)


    If we get rid of that if statement, we get something like this
    [​IMG]


    And if we compile that and run it, we have something that doesn't require any input to equal true.
    [​IMG]



    Repeat for all 3 and your 'try all the possibilities' becomes nothing.
     
  27. Unread #14 - Sep 9, 2008 at 3:48 PM
  28. Visual Basic Matt
    Joined:
    Jan 29, 2008
    Posts:
    647
    Referrals:
    2
    Sythe Gold:
    56
    Discord Unique ID:
    223154494878253056

    Visual Basic Matt Apprentice

    Crack Me (Testing weird password thing) Please Help

    Hey, whats that program... I've saw it before but don't recall what it is... I want to use it to figure out how some stuff works.... I bet, i could learn a lot from using that.
     
  29. Unread #15 - Sep 9, 2008 at 5:12 PM
  30. htaed
    Joined:
    Dec 19, 2005
    Posts:
    336
    Referrals:
    0
    Sythe Gold:
    0

    htaed Forum Addict
    Banned

    Crack Me (Testing weird password thing) Please Help

    i used to have it to, but can't remember, ill have a quick think, hmmmm,

    ok it worked, its called olly.
     
  31. Unread #16 - Sep 9, 2008 at 5:41 PM
  32. Swan
    Joined:
    Jan 23, 2007
    Posts:
    4,957
    Referrals:
    0
    Sythe Gold:
    0
    Sythe's 10th Anniversary Member of the Month Winner

    Swan When They Cry...
    Retired Global Moderator

    Crack Me (Testing weird password thing) Please Help


    OllyDbg. It is a debugger. Trust me, you can't just pick up and learn ASM in a matter of weeks like some languages.
     
  33. Unread #17 - Sep 9, 2008 at 6:05 PM
  34. htaed
    Joined:
    Dec 19, 2005
    Posts:
    336
    Referrals:
    0
    Sythe Gold:
    0

    htaed Forum Addict
    Banned

    Crack Me (Testing weird password thing) Please Help

    I agree with you! :)
    [​IMG]
     
  35. Unread #18 - Oct 6, 2008 at 7:11 AM
  36. serialthrilla
    Referrals:
    0

    serialthrilla Guest

    Crack Me (Testing weird password thing) Please Help

    Code:
    Level 1 key = 187569-657485-2219749-6721887
    Level 2 key = 552854205727664
    Level 3 key = 2931444135969.5
    
    Code is 123765567321
    
     
< How to control mouse and clicks with VB6? | Vb 2008 or 2005 dont care, Question >

Users viewing this thread
1 guest


 
 
Adblock breaks this site