nimaid Posted September 28, 2009 Posted September 28, 2009 How can i make a brute force script where i specify the characters to use and saves the password to a specified directory? This statement is a lie.˙uʍop-ǝpısdn sı ǝuo sıɥʇ ʇnq 'ǝıl ɐ ǝq ʎɐɯ ʇuǝɯǝʇɐʇs snoıʌǝɹd ǝɥʇ¡6u15nɟu0) ʎ||43ɹ 51 51ɥ7
CodyBarrett Posted September 28, 2009 Posted September 28, 2009 what is this "brute force script" ment for? [size="1"][font="Tahoma"][COMPLETED]-----[FAILED]-----[ONGOING]VolumeControl|Binary Converter|CPU Usage| Mouse Wrap |WinHide|Word Scrammbler|LOCKER|SCREEN FREEZE|Decisions Decisions|Version UDF|Recast Desktop Mask|TCP Multiclient EXAMPLE|BTCP|LANCR|UDP serverless|AIOCR|OECR|Recast Messenger|AU3C|Tik-Tak-Toe|Snakes & Ladders|BattleShips|TRON|SNAKE_____________________[u]I love the Helpfile it is my best friend.[/u][/font][/size]
spudw2k Posted September 28, 2009 Posted September 28, 2009 (edited) what is this "brute force script" ment for?Brute force tools, "break" their way (or attempt too) into password protected and/or secured access. These scripts ARE NOT welcome here. They bring a bad name to AutoIt (have in the past) and cause troubles for us folks who have legitimate purposes. This thread should be locked. No one, who doesn't want a temp/perm ban, is going to help nimaid. Not to speak on an Admin's behalf...but it's the truth.edit: grammar Edited September 28, 2009 by spudw2k Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF
trancexx Posted September 28, 2009 Posted September 28, 2009 Just to say that there is nothing wrong with brute-force method itself. This is example of brute force code: Global $iRandomGenerated = Random(0, 1000, 1) ConsoleWrite("Number: " & $iRandomGenerated & @CRLF) Global $sDiv = _BruteForceFindThePositiveDivisorsOfSomeNumber($iRandomGenerated) ConsoleWrite("Positive divisor(s): " & $sDiv & @CRLF) Func _BruteForceFindThePositiveDivisorsOfSomeNumber($iNum) Local $sOut For $i = 1 To $iNum If Not Mod($iNum, $i) Then $sOut &= $i & ", " EndIf Next Return StringTrimRight($sOut, 2) EndFunc ♡♡♡ . eMyvnE
Recommended Posts