<?php
/* System created by Vrop93 ;)
*/
session_start();
$client["fdata"] = "furnidata.txt";
$client["pdata"] = "productdata.txt";
$client["vars"] = "external_variables.txt";
$client["txts"] = "external_flash_texts.txt";
$client["swf"] = "Habbo.swf";
$vllb = $_GET['external'];
switch($vllb)
{
case "txt":
include($client["txts"]);
return;
case "var":
include($client["vars"]);
return;
case "product":
include($client["pdata"]);
return;
case "furni":
include($client["fdata"]);
return;
case "swf":
readfile($client["swf"]); // Thanks Joopie ;)
return;
}
?>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_REFERER} !/client\.php [NC]
RewriteRule \.(php)$ - [F,L]
RewriteCond %{HTTP_REFERER} !/swfs/externals\.php [NC]
RewriteRule \.(swf|txt)$ - [F,L]