infernothebest Posted January 7, 2008 Share Posted January 7, 2008 hi, iam traying to make a password cracker because iam borred, i came up with this. but it is far from complete -mouse select password windows -eta -check if word if already has been used without to mutch lost of performance #Include <GUIConstants.au3> #Include <Array.au3> $main = GUICreate("Password Cracker", 400, 120) $But1 = GUICtrlCreateButton("Crack Password", 40, 80, 100) $NumInput = GUICtrlCreateInput("8", 200, 80, 80) $UpDown = GUICtrlCreateUpdown(-1) GUICtrlSetLimit(-1, 20, 1) $Result = GUICtrlCreateInput("", 40, 40, 150, 20, BitOR($ES_AUTOHSCROLL,$ES_READONLY)) GUISetState() While 1 $msg = GUIGetMsg() Switch $msg Case $But1 while 1 GUICtrlSetData($Result, "") GUICtrlSetData($Result, _Generate(GUICtrlRead($NumInput))) WEnd Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Func _Generate($MaxChar) $Pass = "" For $x = 1 to $MaxChar $Pass &= Chr(Random(Asc("0"), Asc("Z"))) Next Return $Pass EndFunc Apple Keybord shortcuts for XP Link to comment Share on other sites More sharing options...
GaryFrost Posted January 7, 2008 Share Posted January 7, 2008 *Click* No good came come of this type of thread. SciTE for AutoItDirections for Submitting Standard UDFs Don't argue with an idiot; people watching may not be able to tell the difference. Link to comment Share on other sites More sharing options...
Recommended Posts