Get Password form Last Pass PWD generator

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
SvenBent
Posts: 266
Joined: 09 Aug 2015, 01:34

Get Password form Last Pass PWD generator

19 Jun 2019, 13:22

so i have been using this little script to get a random generate password from random.org

Code: Select all

chars=12
wr := ComObjCreate("WinHttp.WinHttpRequest.5.1")
wr.Open("GET", "https://www.random.org/passwords/?num=1&len=" chars "&format=plain&rnd=new")
wr.Send()
Var_GenPassword := SubStr(wr.ResponseText,1,chars)
wr := ""

Gui, New
Gui, Font,S12, Consolas
Gui, Add, Edit, w160 R1 ReadOnly , %Var_GenPassword%
Gui, Add, Button, Default w160, OK
Gui, Show,, Password
Var_GenPassword := ""
I want it to use the lastpass generator instead. but im unable to figure out how to replace random.org with lastpas

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: Araphen and 376 guests