One Hat Cyber Team
Your IP :
18.226.181.49
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
/
url_metadata
/
Edit File:
YouTube.php
<?php $result['mime_type'] = 'video/youtube'; if (isset($link_meta_data['title'])) { $result['title'] = $link_meta_data['title']; $result['image'] = $link_meta_data['thumbnail_url']; if (isset($link_meta_data['description'])) { $result['description'] = $link_meta_data['description']; } else if (isset($link_meta_data['author_name'])) { $result['description'] = $link_meta_data['author_name']; } $yt_pattern = '/<iframe[^>]+src="([^"]+)"/i'; $yt_embed_code = $link_meta_data['html']; if (preg_match($yt_pattern, $yt_embed_code, $yt_matches)) { if (isset($yt_matches[1])) { $yt_matches = $yt_matches[1]; if (filter_var($yt_matches, FILTER_VALIDATE_URL) !== false) { $result['url'] = $yt_matches; } } } }
Simpan