File Manager

Path: /home/u153614772/domains/cryptonexglobaltrading.com/public_html/users/pages/

Viewing File: generate.php

<?php
session_start();
include "../../config/db.php";
include "../../config/config.php";
require_once 'PHPGangsta/GoogleAuthenticator.php';
$msg = "";
$ga = new PHPGangsta_GoogleAuthenticator();

$secret = $ga->createSecret();



$qr = $ga->getQRCodeGoogleUrl($name, $secret);


$myCode = $ga->getCode($secret);

$result = $ga->verifyCode($secret, $myCode, 3);

$email= $_SESSION['email'];

if(isset($_POST['submit'])){


  
$sql1= "SELECT * FROM tfa WHERE email = '$email'";
$result1 = mysqli_query($link,$sql1);

if(mysqli_num_rows($result1) > 0){
 $row = mysqli_fetch_assoc($result1);
 $row['result'];
 }
 if(isset($row['result']) && $row['result'] == 1){

  $msg = "2FA Already activated!";


   }else{
       
       

 $email= $_POST['email'];
$secret = $_POST['secret'];
$qrcode = $_POST['qrcode'];
$result = $_POST['result'];

$sql= "INSERT INTO tfa (email,secret,qrcode,result) VALUES ('$email','$secret','$qrcode','$result')";

if ($link->query($sql) === TRUE) {
    
    	$sql1 = "UPDATE users SET 2fa='1' WHERE email='$email'";

				  mysqli_query($link, $sql);

    
    $msg= " You have successfully activated google authenticator security down 2fa app from playstore";
} else {
    $msg= " Error activating google authenticator";
}

}
}

include "header.php";

?>

<div class="content-wrapper">
  


  <!-- Main content -->
  <section class="content">


  <div class="col-md-12 col-sm-12 col-sx-12">
          <div class="box box-default">
            <div class="box-header with-border">
            <h2 align="center" ><b><?php echo $name;?> GOOGLE AUTHENTICATOR</b></h2>
            <h5 align="center" ><b>Make sure you scan the Qr code and authenticate your email before logging out else click Deactivate 2fa</b></h5>
            </br>
            <?php if($msg != "") echo "<div style='padding:20px;background-color:#dce8f7;color:black'> $msg</div class='btn btn-success'>" ."</br></br>";  ?>
          </br>
          </br>
<div style="margin-left:20%">
<?php echo '<img src="'.$qr.'" /><br />';?>

</br>
</br>
<form action="generate.php" method="POST">

<input style="padding:12px;border-radius:5px" type="email" name="email" placeholder="Enter your email">
<input type="hidden" name="secret" value="<?php echo $secret; ?>">
<input  type="hidden" name="qrcode" value="<?php echo $qr; ?>" >
<input  type="hidden" name="result" value="<?php echo $result; ?>" >
</br></br>
<input type="submit" class="btn btn-success" name="submit" value="authenticate">


</form>
</div>