I have a question, how do I refer one application that i made that lets say has a text box named "passwd" and a button which is named "Valitade" and in the source we make it compare the users input with the password like this:
Dim password as string
password = "pass"
If passwd.text = password then
msgbox("Valid!")
else
msgbox("Invalid!")
end ifAnd then I make another application which will try and brute force the passwd.text and try any possible combination like "a" "aa" "aaa" "aaaa" "aaab" etc.So i guess i will have to somehow open the application that i want to brute force in the bruteforcer that i made. So one way is to open it with the shell () command or maybe i can refer the program from the "References" tab and then somehow brute force. Anyway, if anyone can help I would really apreciate.
Thank you in advance! ^^












