One Hat Cyber Team
Your IP :
3.145.175.141
Server IP :
50.28.103.30
Server :
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software :
nginx/1.24.0
PHP Version :
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
wwwroot
/
globify.live
/
fns
/
ip_intelligence
/
View File Name :
getipintel.php
<?php $contactEmail = Registry::load('settings')->system_email_address; $timeout = 8; $banOnProbability = Registry::load('settings')->ip_intelligence_probability; if (empty($banOnProbability) || (float)$banOnProbability > 2) { $banOnProbability = 0.99; } $curl = curl_init(); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_TIMEOUT, $timeout); curl_setopt($curl, CURLOPT_URL, "http://check.getipintel.net/check.php?ip=$ip_address&contact=$contactEmail&format=json"); $response = curl_exec($curl); curl_close($curl); $response = json_decode($response); if (!empty($response)) { if (isset($response->result)) { $score = $response->result; if ((float)$score < (float)$banOnProbability) { $result['success'] = true; } else { $result['success'] = false; $result['response'] = $response; if ($score < 0 || strcmp($score, "") == 0) { if ((int)$score === -5) { $result['success'] = true; } } } } } ?>