Questions tagged [two-step-verification]

2-Step Verification is a method of confirming a user's claimed identity by utilizing a combination of two different components. These components may be something that the user knows, something that the user possesses or something that is inseparable from the user.

2-Step Verification is a method of confirming a user's claimed identity by utilizing a combination of two different components. These components may be something that the user knows, something that the user possesses or something that is inseparable from the user. A good example from everyday life is the withdrawing of money from a cash machine. Only the correct combination of a bank card (something that the user possesses) and a PIN (personal identification number, something that the user knows) allows the transaction to be carried out. 2FA is ineffective against modern threats,[1] like ATM skimming, phishing, and malware etc. Two-factor authentication is a type of multi-factor authentication.

Source: https://en.wikipedia.org/wiki/Two-factor_authentication

15 questions
9
votes
1 answer

How do I resolve macOS Carthage hangs when running update?

Started working on a new project where I need to run "Carthage update" for a mix of private and public projects some of which have submodules. No matter what I do Carthage hangs with no indication of why. What can I do to determine the hangs, and…
David H
  • 40,852
  • 12
  • 92
  • 138
6
votes
3 answers

Gmail smtp SASL authentication

I'm using postfix to send email via gmail with an application's password (two step-validation activated). Each time I test sending mail using sendmail command, I get this error: Action: delayed Status: 4.7.14 Diagnostic-Code: X-Postfix; delivery…
Trong Lam Phan
  • 2,292
  • 3
  • 24
  • 51
3
votes
1 answer

Disable gitlab two step verification in CLI

I have a situation, Google Authenticator generates non-valid codes and my recovery codes are all expired, how can I disable it via command line?
Moe Far
  • 2,742
  • 2
  • 23
  • 41
2
votes
1 answer

Sending email using C and google gmail 2-step authentication

I am using my own command line email program (written in C) to send emails. As of 30th May 2022 Google have discontinued using insecure app passwords to authenticate, which was required to bypass their requirement for 2-step authentication. How do I…
stcr
  • 21
  • 2
2
votes
0 answers

Sonata Admin Two-Steps Google Authentication

I followed this guide to setup the two-steps authentication: https://sonata-project.org/bundles/user/3-x/doc/reference/two_step_validation.html Unfortunately the documentation is very short and I couldn't make it work. These are steps I…
2
votes
1 answer

Can JSoup handle two-step auth form?

I'm trying to log into a page that uses xenForo for their forums. I can log in fine without the two-step verification, but if a user is using two-step verification, is it possible to complete the login? Here's the necessary HTML
FooBar
  • 51
  • 4
1
vote
2 answers

Failure sending mail. ---> System.IO.IOException: Unable to read data from the transport connection: net_io_connectionclose

In May 2022, Google no longer supports the "Allow less secure apps" feature. So , I enabled two step verification in gmail using my phone and generated an App Password (16 digit random string) and used it in my C# code, but getting this…
DfrDkn
  • 1,270
  • 2
  • 16
  • 23
1
vote
0 answers

How to run a cgi program as a google authorised user - as 3rd party apps are now forbidden

Background: From May 30, 2022, ​​Google no longer supports the use of third-party apps or devices which ask you to sign in to your Google Account using only your username and password. I have a Perl program that (via a cronjob) runs through all the…
Melchester
  • 421
  • 3
  • 18
1
vote
0 answers

PHP use cookies with selenium

i need a script that logins to amazon on schedule. I am trying to automate it with selenium. But each time i am trying to login amazon sends a sms with password which is hard to retrive. I need to be able to this without this extra step. i decided…
tttaaabbb
  • 407
  • 7
  • 19
1
vote
1 answer

Twilio SMS Forgotten Password Rails

When a user clicks on "Forgot My Password" on the login screen, they are redirected to a route '/password-reset'. Right now, I'm trying to understand how to right the form for entering your email to receive and SMS from Twilio with a code.
Sam
  • 17
  • 1
  • 7
0
votes
0 answers

how can i implement two step registration with phone number in django?

I'm trying to make a django app that needs to implement two-step registration with phone number and i searched for it and i did not find a useful result. I have this idea that take a phone number and then generate random hash URL then redirect them…
0
votes
0 answers

2 step authentication with django rest framework

EDIT i am looking to implement a 2 step authentication into my django application. Previously , i have used the package django-two-step-auth, however i have made the decision to adopt the django x react.js combination. Unfortunately there is not…
0
votes
0 answers

Should I encrypt memorable-word?

We're using a two-step authentication on a web-app, which consist of: 1- Username/password 2- Memorable-word The password is being hashed then stored, where the memorable-word is stored as it is, obviously, it is as important as the password, do you…
iseenoob
  • 339
  • 1
  • 8
0
votes
1 answer

How to change YAML value from Controller in Symfony

I want to change a value of my config.yml I need to change it from my DefaultController.php but I don't know if this is possible (and if it's possible how to do it). The YAML file google: enabled: true # If Google Authenticator should…
Marco Koopman
  • 126
  • 2
  • 14
-4
votes
1 answer

Firebase SMS code verification at log-in

I am trying to implement a two step authentication system in my app. I have already completed the part where the user is registering with Firebase and the other technicalities. The user is required to provide a phone number when registering. Now,…