⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.108
Server IP:
97.74.83.112
Server:
Linux 112.83.74.97.host.secureserver.net 5.14.0-611.54.6.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 04:23:18 EDT 2026 x86_64
Server Software:
Apache
PHP Version:
8.2.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
trinadezambia
/
public_html
/
gambling
/
app
/
Lib
/
View File Name :
ClientInfo.php
<?php namespace App\Lib; class ClientInfo{ /** * Get requestor IP information * * @return array */ public static function ipInfo() { $ip = getRealIP(); $response = json_decode(file_get_contents("http://ip-api.com/json/$ip")); if ($response && $response->status == 'success') { $data['country'] = [$response->country ?? '']; $data['city'] = [$response->city ?? '']; $data['area'] = [$response->regionName ?? '']; $data['code'] = [$response->countryCode ?? '']; $data['long'] = [$response->lon ?? '']; $data['lat'] = [$response->lat ?? '']; $data['ip'] = $ip; $data['time'] = date('Y-m-d h:i:s A'); } else { $data = []; } return $data; } /** * Get requestor operating system information * * @return array */ public static function osBrowser(){ $userAgent = $_SERVER['HTTP_USER_AGENT']; $osPlatform = "Unknown OS Platform"; $osArray = array( '/windows nt 10/i' => 'Windows 10', '/windows nt 6.3/i' => 'Windows 8.1', '/windows nt 6.2/i' => 'Windows 8', '/windows nt 6.1/i' => 'Windows 7', '/windows nt 6.0/i' => 'Windows Vista', '/windows nt 5.2/i' => 'Windows Server 2003/XP x64', '/windows nt 5.1/i' => 'Windows XP', '/windows xp/i' => 'Windows XP', '/windows nt 5.0/i' => 'Windows 2000', '/windows me/i' => 'Windows ME', '/win98/i' => 'Windows 98', '/win95/i' => 'Windows 95', '/win16/i' => 'Windows 3.11', '/macintosh|mac os x/i' => 'Mac OS X', '/mac_powerpc/i' => 'Mac OS 9', '/linux/i' => 'Linux', '/ubuntu/i' => 'Ubuntu', '/iphone/i' => 'iPhone', '/ipod/i' => 'iPod', '/ipad/i' => 'iPad', '/android/i' => 'Android', '/blackberry/i' => 'BlackBerry', '/webos/i' => 'Mobile' ); foreach ($osArray as $regex => $value) { if (preg_match($regex, $userAgent)) { $osPlatform = $value; } } $browser = "Unknown Browser"; $browserArray = array( '/msie/i' => 'Internet Explorer', '/firefox/i' => 'Firefox', '/safari/i' => 'Safari', '/chrome/i' => 'Chrome', '/edge/i' => 'Edge', '/opera/i' => 'Opera', '/netscape/i' => 'Netscape', '/maxthon/i' => 'Maxthon', '/konqueror/i' => 'Konqueror', '/mobile/i' => 'Handheld Browser' ); foreach ($browserArray as $regex => $value) { if (preg_match($regex, $userAgent)) { $browser = $value; } } $data['os_platform'] = $osPlatform; $data['browser'] = $browser; return $data; } }