Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 1.00 KB | None | 0 0
  1. #include <Array.au3>
  2. #include <Crypt.au3>
  3.  
  4. Dim $aBig[36]   = ["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z", 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  5. Dim $aSmall[36] = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  6. Dim $Hash = "73F27B0BCBF9846B2911BDFD54A3265D"
  7.  
  8. $iMax = UBound($aBig) - 1
  9.  
  10. For $1 = 0 To $iMax
  11.     For $2 = 0 To $iMax
  12.         For $3 = 0 To $iMax
  13.             For $4 = 0 To $iMax
  14.                 For $5 = 0 To $iMax
  15.                     For $6 = 0 To $iMax
  16.                         For $7 = 0 To $iMax
  17.                             For $8 = 0 To $iMax
  18.                                 $String = $aSmall[$1] & $aSmall[$2] & $aSmall[$3] & $aSmall[$4] & $aSmall[$5] & $aSmall[$6] & $aSmall[$7] & $aSmall[$8]
  19.                                 ConsoleWrite($String & @CRLF)
  20.                                 If $Hash = StringTrimLeft(_Crypt_HashData($String, $CALG_MD5), 2) Then
  21.                                     MsgBox(0, "", $String)
  22.                                 EndIf
  23.                             Next
  24.                         Next
  25.                     Next
  26.                 Next
  27.             Next
  28.         Next
  29.     Next
  30. Next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement