Questions tagged [google-2fa]

49 questions
0
votes
0 answers

SSO with Google 2fa account in WKWebview using ASWebAuthenticationSession not working right

We have a web app which has two single sign-on options sign-in with apple and sign-in with google which all works fine in the browser. On iOS we have this web app in WKWebview app shell in which we use ASWebAuthenticationSession for sign-in with…
0
votes
0 answers

MFA using auth0 in django

I need to enable authentication using Auth0 in my django app This are things i want to achieve with auth0 in my django app 1.MFA with OTP via email 2.2FA using google authentication/authy/etc 3.SSO using google, outlook. 4.existing accounts to move…
0
votes
1 answer

how to make the previous otp code expired in Google2FA used Laravel

I have code OTP for verification. I have problem when i verification code OTP, previous code OTP its true, it should be wrong. Example : OTP code 1: 325 620 (previous OTP code) --> when I input this code it's already wrong OTP code 2: 412 650…
0
votes
0 answers

Is there a way to enable 2 factor authorization for when you try to access Apache Tomcat that is running on an Azure VM?

Basically, I want 2FA to be implemented when people enter the ip address and port number. At the moment there is only a simple authentication in place (username & password).
0
votes
1 answer

How do developers handle 3rd party account creations for their clients?

As an ios/android app developer, my pain point is having clients sign up for the various 3rd party accounts needed for their app to work (e.g. google cloud, mapbox, firebase, etc.), however with 2-factor authentication (2fa) being a requirement on…
0
votes
1 answer

Does Google Authenticator track user data

I'm considering authentication option and wondered if Google accumulates user data from Google Authenticator? App side? Server side? If so, anyone know what data this is?
MaybeWeAreAllRobots
  • 1,105
  • 2
  • 9
  • 12
0
votes
1 answer

Validating OTP with Google Authenticator app

I have implemented 2-factor authentication in my application, but I am unable to verify the OTP generated inside my app and from the Google Authenticator app, the OTPs generated in my app are very different from the Authenticator app. here is how I…
OddlyGhost
  • 128
  • 2
  • 14
0
votes
1 answer

Google Cloud Platform - Enforce Multi Factor Authentication (MFA)

What is the proper way to configure / enforce MFA, so that all of the admin accounts in my Google Cloud Platform are required to have MFA configured and enabled? I found some guidance about this topic, but that required logging in each and every…
0
votes
0 answers

Accessing google authenticator with puppeteer

I am trying to automate a sign in process to a website, after i enter the login details i am asked to enter the 2FA code every time even on my regular browser, is there a way i can get puppeteer to access my chrome extensions so it can read the 2FA…
0
votes
1 answer

Google Authenticator 2FA returning True always

I'm using the GoogleAuthenticator nuget package for 2FA authentication in an ASP.NET application. The issue being that the function ValidateTwoFactorPIN always returns true even when the authenticator app has already changed TOTP code. Nuget…
0
votes
0 answers

SSH 2FA authentification

I'm trying to enable 2fA authentification on my lighsail server, running ubuntu 20.04. I installed google-authenticator and launched it, configured /etc/pam.d/sshd to add the following line : auth required pam_google_authenticator.so auth required…
Nathos8
  • 27
  • 6
0
votes
1 answer

2FA - how to store login credentials correctly

I'm working on 2FA auth application implementation. Here's the proces: User enters login and password and submits the form Login and pass are sent to validate function Page reloads - if they are correct I store them inside hidden inputs User enters…
Pablo
  • 3
  • 2
0
votes
1 answer

TOTP, 2FA testing in cypress without 30s wait

Normally, you get single-use TOTP token, and need to wait for 30s for next one. This in not acceptable for tests, tho. Is there any way of skipping TOTP validation during testing or maybe guys you know some solution? I am using cypress software.
0
votes
0 answers

Implement 2FA both server and client on my website

I'm working on a website using PHP, jQuery, CSS, Bootstrap (standard suite) and i'd like to implement standard Google 2FA. Now, I know how 2FA usually works - client gets secret code, he enters that into his mobile app and every X seconds he gets…
guest86
  • 2,894
  • 8
  • 49
  • 72
0
votes
3 answers

Django - Two Factor Authentication Custom Login

After a quick search and reading documentation I implemented Django - Two Factor Authentication in one of my Django project [Reference Link]. It works great I am using Google Authenticator for token based login. The problem arises when I want to…