• Skip to main content
  • Skip to secondary menu
  • Skip to primary sidebar
LLODO – Education and technology

LLODO - Education and technology

Find your international education - university and college study education programs, student Exam, and course information.

  • Technology News
  • Blog Anony
  • Technology Quiz

Share Code to get 2FA code like 2fa.live

04/23/2022 by admin Leave a Comment

2FA, also known as 2-step verification, helps you to secure your Facebook account more. Once you have entered your Facebook login password, you will need to provide an additional 6-digit random code provided by the 2FA code generator. However, if you don’t have a phone, you can still make your own 2FA code site. Below is the source Code to get the 2FA code like 2fa.live. Proceed as follows:

Share Code to get 2FA code like 2fa.live

The source code below you can use to install xampp to run php on Windows or upload to hosting.

Create File Name GoogleAuthenticator.php with content

<?php

class PHPGangsta_GoogleAuthenticator
{
    protected $_codeLength = 6;

    
    public function createSecret($secretLength = 16)
    {
        $validChars = $this->_getBase32LookupTable();

        
        if ($secretLength < 16 || $secretLength > 128) {
            throw new Exception('Bad secret length');
        }
        $secret="";
        $rnd = false;
        if (function_exists('random_bytes')) {
            $rnd = random_bytes($secretLength);
        } elseif (function_exists('mcrypt_create_iv')) {
            $rnd = mcrypt_create_iv($secretLength, MCRYPT_DEV_URANDOM);
        } elseif (function_exists('openssl_random_pseudo_bytes')) {
            $rnd = openssl_random_pseudo_bytes($secretLength, $cryptoStrong);
            if (!$cryptoStrong) {
                $rnd = false;
            }
        }
        if ($rnd !== false) {
            for ($i = 0; $i < $secretLength; ++$i) {
                $secret .= $validChars[ord($rnd[$i]) & 31];
            }
        } else {
            throw new Exception('No source of secure random');
        }

        return $secret;
    }

  
    public function getCode($secret, $timeSlice = null)
    {
        if ($timeSlice === null) {
            $timeSlice = floor(time() / 30);
        }

        $secretkey = $this->_base32Decode($secret);

        $time = chr(0).chr(0).chr(0).chr(0).pack('N*', $timeSlice);
        
        $hm = hash_hmac('SHA1', $time, $secretkey, true);
        
        $offset = ord(substr($hm, -1)) & 0x0F;
        
        $hashpart = substr($hm, $offset, 4);

        $value = unpack('N', $hashpart);
        $value = $value[1];
        $value = $value & 0x7FFFFFFF;

        $modulo = pow(10, $this->_codeLength);

        return str_pad($value % $modulo, $this->_codeLength, '0', STR_PAD_LEFT);
    }

    
    public function setCodeLength($length)
    {
        $this->_codeLength = $length;

        return $this;
    }

    
    protected function _base32Decode($secret)
    {
        if (empty($secret)) {
            return '';
        }

        $base32chars = $this->_getBase32LookupTable();
        $base32charsFlipped = array_flip($base32chars);

        $paddingCharCount = substr_count($secret, $base32chars[32]);
        $allowedValues = array(6, 4, 3, 1, 0);
        if (!in_array($paddingCharCount, $allowedValues)) {
            return false;
        }
        for ($i = 0; $i < 4; ++$i) {
            if ($paddingCharCount == $allowedValues[$i] &&
                substr($secret, -($allowedValues[$i])) != str_repeat($base32chars[32], $allowedValues[$i])) {
                return false;
            }
        }
        $secret = str_replace('=', '', $secret);
        $secret = str_split($secret);
        $binaryString = '';
        for ($i = 0; $i < count($secret); $i = $i + 8) {
            $x = '';
            if (!in_array($secret[$i], $base32chars)) {
                return false;
            }
            for ($j = 0; $j < 8; ++$j) {
$x .= str_pad(base_convert(@$base32charsFlipped[@$secret[$i + $j]], 10, 2), 5, '0', STR_PAD_LEFT);
            }
            $eightBits = str_split($x, 8);
            for ($z = 0; $z < count($eightBits); ++$z) {
                $binaryString .= (($y = chr(base_convert($eightBits[$z], 2, 10))) || ord($y) == 48) ? $y : '';
            }
        }

        return $binaryString;
    }

    
    protected function _getBase32LookupTable()
    {
        return array(
            'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', //  7
            'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', // 15
            'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', // 23
            'Y', 'Z', '2', '3', '4', '5', '6', '7', // 31
            '=',  // padding char
        );
    }

   
    private function timingSafeEquals($safeString, $userString)
    {
        if (function_exists('hash_equals')) {
            return hash_equals($safeString, $userString);
        }
        $safeLen = strlen($safeString);
        $userLen = strlen($userString);

        if ($userLen != $safeLen) {
            return false;
        }

        $result = 0;

        for ($i = 0; $i < $userLen; ++$i) {
            $result |= (ord($safeString[$i]) ^ ord($userString[$i]));
        }

        
        return $result === 0;
    }
}

?>

Create files 2fa.php with content:

<?php 

require_once 'GoogleAuthenticator.php';

if (isset($_GET['key']))
{
    $key = trim($_GET['key']);
    $ga = new PHPGangsta_GoogleAuthenticator();
    $code = $ga->getCode($key);
    $list = [
    "key"=>$key,
    "code"=>$code
    ];
    $daucatmoi = json_encode($list, JSON_PRETTY_PRINT);
    $memay = json_decode($daucatmoi, true);
    echo $memay['code'];
}
?>

Upload to Hosting. So we have the source code to get the 2FA code like 2fa.live.

Activate 2FA on Facebook to get secret code

You access the link to enable 2FA for the application at: https://www.facebook.com/security/2fac/settings

Navigate to Authenticator -> Setup

Facebook authentication app

A QR code and secret code will be displayed on the screen, you need to copy this secret code to notepad and save it on your computer. This secret code is used to get Facebook’s 2FA code

love 2 love

Now we have the secret code: MM5B7S2J605NE4CSXXXXXXXXX (please remove the spaces).

Now to get 2FA we do the following:

Enter the secret code after the = sign. Eg: https://domain.com/2fa.php?key=mã-bí-mật (Replace domain to your domain name)

Example: https://domain.com/2fa.php?key=MM5B7S2J605NE4CSXXXXXXXXX

The sequence of numbers below is a 2FA code for you to authenticate with Facebook.

2fa code 2fa.live

If anyone does not understand, please comment below, tomorrow I will guide you in detail with pictures step by step

  • 2fa.live
  • code 2fa.live
  • 2fa.live source code
  • fake code 2fa.live
  • code get code 2fa

Filed Under: Blog Anony Tagged With: Anony Hack, News Tech Anony

Related posts:

  1. 5 “Shadow” Chrome Extensions You Need To Delete Immediately
  2. 5 Websites to help you find out who the Email account holder is
  3. How to protect website copyright with DMCA
  4. What is CTF? If you want to be a Hacker, should you play CTF?
  5. How to hide your home from Google Maps
  6. Phishing Site Creation Tool for Linux and Android
  7. Use AI to turn sketches into real photos
  8. Tips to find other people’s information on the Internet
  9. Calendar’s File .ics phishing attack technique
  10. How to fix “This Site Can’t Be Reached” error ERR_ADDRESS_UNREACHABLE
  11. How to Get Free Remitano’s RENEC Tokens
  12. 14 Google Sheets functions that Excel doesn’t have
  13. Experience in Website Security Testing
  14. How to download all Instagram users’ photos and videos
  15. Change Header to Bypass WAF when scanning Website vulnerabilities with Scan Tools
  16. List of 15 largest hacked companies in history
  17. Use Netcat to Transfer Files in Windows and Linux
  18. Top 3 Safe and Clean Game Crack Download Websites
  19. TOP 5 Wifi Routers under 500,000 VND suitable for families in 2022
  20. How to secretly Track your phone using xfi endpoint

Reader Interactions

Leave a Reply Cancel reply

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

Primary Sidebar

Recent Posts

  • 5 “Shadow” Chrome Extensions You Need To Delete Immediately
  • There may be a parallel reality existing with us, right here and now
  • Fearing catastrophic climate change, scientists want to store all mankind’s knowledge on the Moon’s volcano
  • As a man in the house, it is indispensable for screwdrivers, electric drills, to repair anything is as easy as turning your hand
  • Summer is here, install solar panels! But, read some of these tips first




Categories

  • Blog Anony (387)
  • Family and Friends 1 (63)
  • Family and Friends 2 (80)
  • Family and Friends 3 (80)
  • Family and Friends 4 (84)
  • Family and Friends 5 (82)
  • Grade 1 Math (61)
  • Grade 2 Math (96)
  • Grade 3 English (68)
  • Grade 3 Math (67)
  • Grade 4 English (68)
  • Grade 4 Math (77)
  • Grade 5 English (68)
  • Grade 5 Math (88)
  • Grade 6 English (104)
  • Grade 6 Math (67)
  • Grade 6 Physics (30)
  • Grade 7 English (104)
  • Grade 7 Math (57)
  • Grade 7 Physics (30)
  • Grade 8 Biology (64)
  • Grade 8 Chemistry (43)
  • Grade 8 English (104)
  • Grade 8 Math (75)
  • Grade 8 Physics (29)
  • Grade 9 Biology (63)
  • Grade 9 Chemistry (56)
  • Grade 9 English (104)
  • Grade 9 Math (61)
  • Grade 9 Physics (62)
  • Houseware (126)
  • Learning English (50)
  • Linux Quiz (300)
  • Software (31)
  • Technology News (7,495)
  • Technology Quiz (850)
  • Windows Quiz (200)

Copyright (c) 2022 · LLODO.COM - About Us - Privacy Policy - Contact Us - Site map
Link: Question Answer English - Hoc edu - Internet Do