Sasuda1456
Altcoin Explorer
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
500 XP
So basically after some testing, this is a neat AutoHotKey password generator script that easily creates 20 length passwords in 1 hotkey press, which actually causes Account Checkers to give out Invalid Credentials errors, probably because of the ":" inside of them. Not really sure what causes it but this is pretty good if you want to grab accounts to your own possession.
It was pretty useful for me after I had to change passwords for multiple accounts.
You just press F1 and it pastes the password into your clipboard and automatically pastes it to the current window.
Download AutoHotKey (google it), right click anywhere on your pc and choose "New AutoHotKey Script"
Paste the code and run it. Press F1 in notepad.
If you want to exit it just press CTRL+ESC or close the icon in taskbar.
#NoEnv
#singleInstance, Force
#MaxThreads, 100
#MaxThreadsPerHotkey, 2
#Persistent
SetBatchLines, -1
DetectHiddenWindows, On
CoordMode, Mouse, Screen
CoordMode, Pixel, Screen
CoordMode, Tooltip, Screen
SetTitleMatchMode, 2
SetKeyDelay, 30,50
SetMouseDelay 10
SendMode Event
#InstallKeybdHook
#InstallMouseHook
#UseHook, On
SplitPath, A_ScriptFullPath, ofname, ofdir, ofext, ofnamene, odrv
SetWorkingDir, %ofdir%
return
F1:: ;<-- change this if you want a diff hotkey
Chars1 = abcdefghijklmnopqrstuvwxyz
Chars2 = ABCDEFGHIJKLMNOPQRSTUVWXYZ
Chars3 = 1234567890
Chars4 = _-+=()!@#$^&*{}[]|\:;'<>?,./
str =
clipboard =
UpperRange = 4 ;<-- use all 4 character strings
len = 20 ;<-- number of characters in the password
loop, %len%
{ random,x,1,%UpperRange%
random,y,1,26
if (x = 3)
{ random,y,1,10
}
If (x = 4)
{ random,y,1,28
}
StringMid,z,Chars%x%,%y%,1
str = %str%%z%
}
clipboard = %str%
Clipwait
send,^v{enter}
Return
^!Esc:: ExitApp
It was pretty useful for me after I had to change passwords for multiple accounts.
You just press F1 and it pastes the password into your clipboard and automatically pastes it to the current window.
Download AutoHotKey (google it), right click anywhere on your pc and choose "New AutoHotKey Script"
Paste the code and run it. Press F1 in notepad.
If you want to exit it just press CTRL+ESC or close the icon in taskbar.
#NoEnv
#singleInstance, Force
#MaxThreads, 100
#MaxThreadsPerHotkey, 2
#Persistent
SetBatchLines, -1
DetectHiddenWindows, On
CoordMode, Mouse, Screen
CoordMode, Pixel, Screen
CoordMode, Tooltip, Screen
SetTitleMatchMode, 2
SetKeyDelay, 30,50
SetMouseDelay 10
SendMode Event
#InstallKeybdHook
#InstallMouseHook
#UseHook, On
SplitPath, A_ScriptFullPath, ofname, ofdir, ofext, ofnamene, odrv
SetWorkingDir, %ofdir%
return
F1:: ;<-- change this if you want a diff hotkey
Chars1 = abcdefghijklmnopqrstuvwxyz
Chars2 = ABCDEFGHIJKLMNOPQRSTUVWXYZ
Chars3 = 1234567890
Chars4 = _-+=()!@#$^&*{}[]|\:;'<>?,./
str =
clipboard =
UpperRange = 4 ;<-- use all 4 character strings
len = 20 ;<-- number of characters in the password
loop, %len%
{ random,x,1,%UpperRange%
random,y,1,26
if (x = 3)
{ random,y,1,10
}
If (x = 4)
{ random,y,1,28
}
StringMid,z,Chars%x%,%y%,1
str = %str%%z%
}
clipboard = %str%
Clipwait
send,^v{enter}
Return
^!Esc:: ExitApp