Skip to content

Instantly share code, notes, and snippets.

@MtucX
Created May 26, 2016 00:54
Show Gist options
  • Save MtucX/ee68ac5b96c6508e500a267cc0d3f74c to your computer and use it in GitHub Desktop.
Save MtucX/ee68ac5b96c6508e500a267cc0d3f74c to your computer and use it in GitHub Desktop.

Revisions

  1. MtucX created this gist May 26, 2016.
    9 changes: 9 additions & 0 deletions autoit3 crackme source
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    #include <Crypt.au3>
    $dzx = '0x309cd3800aacbd003ac36199fa537295'
    $pass = InputBox("MtucX", "EAsy one", "", "*")
    $password = _Crypt_HashData($pass, $CALG_MD5)
    If $password = $dzx Then
    MsgBox(16, "Done ", "You can send me the pass")
    Else
    MsgBox(16, "lammer", "You entered wrong password")
    EndIf