Advanced certificate install question
-
Recently Browsing 0 members
No registered users viewing this page.
-
Similar Content
-
By izmegna
I am trying to auto login to web app that has the following HTML for the username, password and submit button:
USERNAME:
<input name="usernameField" tabindex="0" class="inp" id="usernameField" type="text" value="" message="FND_SSO_USER_NAME">
Password:
<input name="passwordField" tabindex="0" class="inp" id="passwordField" type="password" value="" message="FND_SSO_PASSWORD">
Login:
<button tabindex="0" class="OraButton left" style="padding-right: 6px; padding-left: 6px;" onclick="submitCredentials()" message="FND_SSO_LOGIN">Log In</button>
Following is the AutoIT script I am using I am passing the username and password via cmd but it is not working, any suggestion?
#include <IE.au3>
Local $url ="https://www.Intra.edwa.com"
Local $oIE =_IECreate($url)
_IELoadWait($oIE)
Local $oUser =_IEGetObjById($oIE,"usernameField")
Local $oPass =_IEGetObjById($oIE,"passwordField")
_IEFormElementSetValue($oUser, $CmdLine[1])
_IEFormElementSetValue($oPass, $CmdLine[2])
_IELoadWait($oIE)
$oLinks = _IETagNameGetCollection($oIE, "input")
For $oLink In $oLinks
If String($oLink.type) = "submit" And String($oLink.value) = "Sign In" Then
_IEAction($oLink, "click")
ExitLoop
EndIf
Next
-
By hek
Hey everyone,
Was wondering how I would be able to implement this on a local computer instead of using connectserver?
Any suggestions or help would be appreciated. Thanks.
-
By Stormgrade
Hello.
I'm french, sorry for my english.
I release my project, a password manager : Password Keeper
First I would like to thanks Guinness and Melba23 for their help, and I'm very sorry for those I forget, please remind me to add you.
Well my program manage and crypt passwords, first I understand if you don't trust me for this kind of sensible software, but I remember you that all the the source files are at your disposal, fell free to explore them.
The login is : admin and you can change it later
How it work ? see Methode de cryptage en BDD.pdf in french
login
The main interface
You can obviously add,modify and delete your entry, also you can search with keywords
A password generator is included
I won't update it anymore.
It's a BSD license.
Autoit version : 3.3.14.5
Have a good day.
Methode de cryptage en BDD.pdf Passwordkeeper.7z
-
By nacerbaaziz
hello all, and welcome to this tool
the NB-Password_generator is a small tool which allow you to create a strong passwords
with this tool you can create a random passwords using :
1. capital letters
2. small letters
3. numbers
4. symbols
be sure that you can check any option that you want and uncheck what you don't want to use
this tool allow you to create a password from 6 letters to 150 lettersNB-Password_generator.zip
at the end please accept my greetings
am waiting for your commants
-
By Gowrisankar
Dear members of the forum,
I need to open excel files that may or may not need a password and finally move the files that needs password to manual queue.
Is there a fastest way to do this?
PS: I have a huge respect for the rules of this forum. I am not asking assistance to override any security measure. I just need to segregate the files that needs passwords.
-
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now