| Server IP : 208.122.213.31 / Your IP : 216.73.216.45 Web Server : Apache System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64 User : WHMCS_MIA_382 ( 1001) PHP Version : 7.4.33 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/httpd/html/members.bustycafe.com/public_html/poop/ |
Upload File : |
<?php
/**
* go.php
*
* DESCRIPTION: Custom PSSO linking script.
*
* LICENSE: This sofware is copyrighted intellectual property of Cyboriginal, Inc.
* All usage rights are owned by Cyboriginal, Inc. and protected by Title 17 United States Code.
* All use, modification or distribution not explicitly authorized by Cyboriginal, Inc. is prohibited.
*
* @package PRX_MODS
* @author Jim Gillispie, Cyboriginal, Inc. <sales@cyboriginal.com>
*
*/
error_reporting(E_ALL);
define('HOSTNM', 'localhost');
define('USERNM', 'elevatedx');
define('PASSWD', 'QGobp5uv3');
define('DBNAME', 'elevatedx');
$timeout = 1;
$link = mysqli_connect(HOSTNM, USERNM, PASSWD, DBNAME);
if (!$link) {
header("Location: /");
die();
}
$siteid = isset($_GET['s']) && is_numeric($_GET['s']) ? intval($_GET['s']) : false;
if ( $siteid ) {
$sql = "SELECT `URL` FROM ".DBNAME.".`sites` "
."WHERE `Id` = $siteid "
."AND `Enabled` "
."LIMIT 0,1";
$qry = mysqli_query($link, $sql);
if ( $qry ) {
$row = mysqli_fetch_object($qry);
if ( $row->URL ) {
$TARGETURL = "$row->URL?PSSO";
$html = <<<EOT
<html>
<head>
<meta http-equiv='refresh' content='$timeout;url=$TARGETURL'/>
</head>
<body>
<div>
You will be redirected to <strong>$row->URL</strong> in <strong>$timeout</strong> seconds.<br/>
If your browser does not redirect you automatically, click the link below.<br/>
<a href='$TARGETURL' title='$row->URL'>$row->URL</a>
</div>
</body>
</html>
EOT;
} // if row
} // if qry
} // if siteid
exit($html);
// end main();
// end-of-file
?>