In this article, I'm going to explain how to sign in a web site that protected with Two-factor authentication in End to End Testing using Selenium....
For further actions, you may consider blocking this person and/or reporting abuse
Dear jsakamoto,
Thanks for your code.
However, when I am applying the below code, I'm unable to login into the aws. Can I request you to kindly help me a bit more on this, please?
import org.jboss.aerogear.security.otp.Totp;
...
String otpKeyStr = "6jm7n6xwitpjooh7ihewyyzeux7aqmw2"; // <- this 2FA secret key.
Totp totp = new Totp(otpKeyStr);
String twoFactorCode = totp.now(); // <- got 2FA coed at this time!
I am able to generate the MFA code but when it is getting inserted into the aws MFA page using selenium, it is throwing incorrect credentials error.
Do we need to register our aws account with the aerogear first?
Kindly suggest.
Thanks in advance!
Regards
Amit
Ok, I'll try to reproduce and resolve your problem.
But so I'm busy few weeks, my response will be late.
Hi..thanks for your response!
Few weeks !! oh okay...I was actually working on it but unable to proceed further.
I'll be waiting for your response..request you to kindly revert at your earliest convenience. Meanwhile, if you have any suggestion which I can look into kindly suggest, thanks very much for your beautiful support!!
I could compute MFA code for my AWS account by that Java sample code.
Question: Did you rewrite the sample source code at "2FA secret key" row with your own MFA secret key?
See also: gist.github.com/jsakamoto/54f77ae1...
You should capture the MFA secret key of your AWS account in an enabling MFA steps.
In this sample case above, the sample code should be bellow.
Logging in and authentication are two challenges to automated testing, in our team we bypass the whole process for simplicity's sake but I do see the benefit in automating the testing here. Would you create a test user for your e2e tests?
Yes I do.
In some case, creating (registration) user account for testing, enabling 2FA, and getting 2FA secret key, are included our testing scenario.
But in another case, I think, bypassing those processes is best choice for keeping simply it and stabilize testing.
jsakamoto
Hi Jsakamoto, We are getting QR Code URL from some 3rd party w/o having any secret key nor they give any option to convert to secret key. Is there any way I can convert QR code to secret key? otherwise I won't able to use your code to get authorized.
Please guide.
Thanks!
Java code:
String otpKeyStr = "6jm7n6xwitpjooh7ihewyyzeux7aqmw2" //secret key
Yes, you may can do it.
The Java Library "Zixing" is useful for decoding QR code images.
"Zixing" is here: github.com/zxing/zxing
Also, you can find many questions and answers about decoding QR code images on "Stack Overflow".com.
I propose to search on Google with the keyword
"java how to decode qr zxing site:stackoverflow.com"
.Hello, i used topt.now for my automation code. Was working fine for signing in but as soon as i changed to updated chrome driver to 76, the opt part stopped working. The authentication is wrong now. Any feedback. Is there any relationship with chromedriver version for totp
public static String getotp(String secretkey) {
// String secretkey = "6BSLNLLRH7HLJFMM"; // <- this 2FA secret key.
My understanding is that there is no relationship between computational TOTP and Selenium WebDriver.
I guess your problem is caused by becoming incompatibility of your test code that against with test target web site.
Hi guys,
Is anyone knows how to bypass a two-step verification via e-mail?
Im trying to bypass that in selenium with C#.
I have access to the email but I'm trying to automate this process.
Thank yo in advance for your responses!
This doesn't seem to work for the secret taken from the QR code given by Facebook 2 factor. I've gotten this method to work for Google Account 2 factor, but not Facebook
I'm not sure that how does Facebook 2 factor work. I have not e2e test for Facebook 2 factor.
Could you explain more details of what you ran into?
What did you do, and what did you get as a result?
facebook.com/help/270942386330392?...
It works similarly to setting up 2-factor for a Google Account. If you select "Code Generator" they present you with a 2-factor QR code.
In order to get the secret for my Google Account 2-factor, I scanned the Google Account QR code with a QR code scanner and stripped out the secret parameter. This secret worked for your steps in your article.
For Facebook, I tried to do the same thing, but it's not generating the right 2-factor codes, which leads me to believe the secret or the steps or something else is wrong.
Was wondering if you have any insight
Hello Sakamoto,
I accessed the user configuration in mfa (Microsoft), clicked the button to configure the authenticator application and took the 12 digits of the user's secret key, converted it to base32 and added it to the code in the system, but it is generating a code that is not expected . I cannot identify what is wrong.
Can you help me?
I don't know where did you get 12 digits secret key, but Microsoft MFA worked for me with 16 characters secret key. Maybe you provided the wrong value. I've got 16 characters MFA Microsoft secret key this way:
1) Go to MFA setup window by this Microsoft Documentation:
1.1) Sign in to myapps.microsoft.com.
1.2) Select your account name in the top right, then select profile.
1.3) Select Additional security verification.
2) Click "Set up Authenticator app".
3) Click "Configure app without notifications".
You should see 16 characters secret key value (it contains spaces, but you need to remove them).
How to you bypass MFA in azure active directory?
Unfortunately, I couldn't answer this question because I'm not familiar with MFA in Azure Active Directory.
If I have a chance, I'll try to resolve your question due to I'm also interested in your question, however, I can not promise it.
Just use messages.google.com/web/
Hi Jsakamoto, can I use this code in Cypress?
Hi,
I am unable to generate optKeyStr
Is there a process to generate it or we need to create an account somewhere? Please clarify
Hi jsakamoto,
Thanks for the code.
Can you please help me with the code to Automate 2FA using JavaScript.
Thanks.
Regards,
Zisu Kumar
How did you managed to get the optKeyString from the authenticator app?
Hi Mr. Sakamoto is there a python version for this? Thanks in advance
Hi Joel, How do u bypass logging and authentication. For me its asking for google authentication and it would be helpful if yo share the code to bypass google login and 2FA. Thanks in advance