Jump to content

Recommended Posts

Posted

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

Posted

what is this "brute force script" ment for?

Posted (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 by spudw2k
Posted

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

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...