403Webshell
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/glamourdollars.com/vip-area/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/httpd/html/glamourdollars.com/vip-area/qa.php
<?php
// http://hits.epochstats.com/hits.php?clc=96a0d511e88d3d599104c1c149eb940c&id=69063793
$default_link = "http://www.viparea.com/";
$fs = "1";
if ($_COOKIE["fs_link-$fs"]) $default_link = $_COOKIE["fs_link-$fs"];
include_once('fs_mpa3.php');

/*
if (isset($_POST['post'])) {
	include('config.php');
	dbConn();
	$model_id = $_POST['model_id'];
	$php_self = $_POST['php_self'];
	$name = addslashes(strip_tags($_POST['name']));
	$email = addslashes(strip_tags($_POST['email']));
	$question = addslashes(strip_tags($_POST['question']));
	$question = str_replace(chr(10), "<br />", $question);
  $question = str_replace(chr(13), "", $question);
		
	if($question == "") {
		printf("<meta http-equiv=\"Refresh\" content=\"0;url=./".$php_self."?id=".$model_id."&error=2\">");
		die();
	}
	
	$rvalues = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
	$rlen = strlen($rvalues);
	$code = "";
	for($i=0;$i<25;$i++) {
		$code .= substr($rvalues, rand(1, $rlen), 1);
	}
	
	$checkcode = @mysql_query("SELECT * FROM qa WHERE code = '".$code."'");
	if(@mysql_num_rows($checkcode) > 0) {
		$rvalues = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
		$rlen = strlen($rvalues);
		$code = "";
		for($i=0;$i<25;$i++) {
			$code .= substr($rvalues, rand(1, $rlen), 1);
		}
	}

	$insert = @mysql_query("INSERT INTO qa SET date=NOW(), code='".$code."', model_id='".$model_id."', name='".$name."', email='".$email."', question='".$question."'");
	
	$subject = " ** VIPAREA.COM MODEL QA ** ";
	$model_info = @mysql_query("SELECT email FROM cms_models WHERE model_id = '".$model_id."'");
	$model_email = @mysql_result($model_info, 0, 'email');

	$to = "VIParea.support@gmail.com";
	
	if($model_email != "") { $to .= ",".$model_email; }
	
	$headers = "From: VIPAREA.COM <NO-REPLY@VIPAREA.COM>\r\n" .
				 'X-Mailer: PHP/' . phpversion() . "\r\n" .
				 "MIME-Version: 1.0\r\n" .
				 "Content-Type: text/html; charset=utf-8\r\n" .
				 "Content-Transfer-Encoding: 8bit\r\n\r\n";
	
	$message = "<strong>QUESTION:</strong><br>";
	$message .= $question."<br><br><br>";
	$message .= "<strong>ANSWER:</strong> http://www.viparea.com/_qa/index.php?code=".$code."<br><br>";
	
	mail($to, $subject, $message, $headers);
		
	
	//printf("<meta http-equiv=\"Refresh\" content=\"0;url=./qa.php?id=".$model_id."&error=1\">");
	printf("<meta http-equiv=\"Refresh\" content=\"0;url=./".$php_self."?id=".$model_id."&error=1\">");
	die();
}
*/
//$_GET['id'] = 52;
if (!isset($_GET['id'])) { // IF NO MODEL_ID... REDIRECT
	printf("<meta http-equiv=\"Refresh\" content=\"0;url=http://www.viparea.com/models.php\">"); 
	die();
}

if (isset($_GET['error'])) {
	$error = $_GET['error'];
} else {
	$error = 0;
}

$content_id = $_GET['id'];
include('config.php');
dbConn();

$feature = @mysql_query("SELECT feature_id FROM cms_feature WHERE content_id = '".$content_id."' AND content_type = '1'");
$feature_id = @mysql_result($feature, 0, 'feature_id');

if(@mysql_num_rows($feature) == 0) {
	printf("<meta http-equiv=\"Refresh\" content=\"0;url=http://www.viparea.com/models.php\">");  
	die();
}

$model_info = @mysql_query("SELECT `cms_models`.`model_id`,
`cms_models`.`name`,
`cms_models`.`total_photos`,
`cms_models`.`total_videos`,
(`cms_models`.`rate_total`/`cms_models`.`rate_count`) as rate,
`cms_models`.`rate_count`,
`cms_models`.`birthday`,
`cms_models`.`link_official`,
`cms_models`.`link_facebook`,
`cms_models`.`link_twitter`,
`cms_models`.`link_myspace`
FROM `cms_models`
WHERE `cms_models`.`model_id` = '".$content_id."'");

if(@mysql_num_rows($model_info) == 0) {
	printf("<meta http-equiv=\"Refresh\" content=\"0;url=http://www.viparea.com/models.php\">");  
	die();
}


$model_name = @mysql_result($model_info, 0, 'name');

$model_photos = @mysql_result($model_info, 0, 'total_photos');
$model_videos = @mysql_result($model_info, 0, 'total_videos');

$model_rating = round(@mysql_result($model_info, 0, 'rate'),2);
if ($model_rating == "") {
	$model_rating = "0";
}
$model_about = @mysql_result($model_info, 0, 'about');
$rating_count = @mysql_result($model_info, 0, 'rate_count');

$link_official = @mysql_result($model_info, 0, 'link_official');
$link_facebook = @mysql_result($model_info, 0, 'link_facebook');
$link_twitter = @mysql_result($model_info, 0, 'link_twitter');
$link_myspace = @mysql_result($model_info, 0, 'link_myspace');

$dt = explode("-", mysql_result($model_info, 0, 'birthday'));
$model_birthday = date("F jS", mktime(0, 0, 0, $dt[1], $dt[2], $dt[0]));


$model_info2 = @mysql_query("SELECT `cms_tags_s`.`ctag_id` , `cms_tags_s`.`description`, `cms_tags_s`.`stag_id`
FROM `cms_tags`
INNER JOIN `cms_tags_s` ON `cms_tags_s`.`stag_id` = `cms_tags`.`stag_id`
WHERE `cms_tags`.`content_id` = '".$content_id."' AND `cms_tags`.`content_type` = '1'");

$tag_html = "";

while ($row = mysql_fetch_array($model_info2)) {
	//$model_stats[$row['ctag_id']] = "<a href=\"join.php?type=1&id=".$content_id."\" class=\"pl\">".stripslashes($row['description'])."</a>";
	$model_stats[$row['ctag_id']] = stripslashes($row['description']);
	//$tag_html .= " <a href=\"search.php?tag=".stripslashes($row['description'])."\">".stripslashes($row['description'])."</a>,";
}

//$tag_html = rtrim($tag_html, ',');




//include('mod_html_top.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<meta name="Description" content="VIParea.com presented by Glamour Photographer Tammy Sands featuring only the hottest most beautiful nude models and pornstars masturbating, posing nude, lesbian sex, hardcore glamour" />
<meta name="Keywords" content="glamour nude models, babes, porn stars, beautiful babes, Andie Valentino, Erica Campbell, Kayden Kross, Aria Giovanni, Jelena Jensen, Lela Star" />
<meta name="Reply-to" content="viparea.support@gmail.com" />
<meta name="robots" content="index, follow" />
<title>VIParea.com photographing only the hottest most beautiful models and pornstars from around the world.</title>

<link href="viparea.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="1000" height="100%" border="0" align="center" cellpadding="0" cellspacing="0" background="images/table_bg.jpg" bgcolor="#FFFFFF">

  <tr>
    <td valign="top">
       <a href="<?php echo urldecode($link); ?>"><img src="images/qahdr.jpg" width="1000" height="305" border="0" /></a> 
<table width="800" border="0" cellspacing="5" cellpadding="0" align="center">
  <tr>
    <td width="550" valign="top"><img src="images/feature/<?=$feature_id?>_feature2.jpg" class="tn" /></td>
    <td valign="top"><span class="heading"><?=$model_name?></span><br />
<strong>Measurements</strong> <?=$model_stats['4']?><?=$model_stats['5']?>-<?=$model_stats['6']?>-<?=$model_stats['7']?><br />
<strong>Hair</strong> <?=$model_stats['8']?><br />
<strong>Eyes</strong> <?=$model_stats['9']?><br />
<strong>Height</strong> <?=$model_stats['10']?><br />
<strong>Ethnicity</strong> <?=$model_stats['18']?><br />
<strong>Location</strong> <?=$model_stats['13']?><br />
<strong>Birthday</strong> <?=$model_birthday?><br />
<strong>Website(s):</strong><br />
<?
if($link_official != "") { echo "&nbsp;&nbsp;&nbsp;<a href=\"".$link_official."\" target=\"_blank\">Official Website</a><br />"; }
if($link_facebook != "") { echo "&nbsp;&nbsp;&nbsp;<a href=\"".$link_facebook."\" target=\"_blank\">Facebook</a><br />"; }
if($link_twitter != "") { echo "&nbsp;&nbsp;&nbsp;<a href=\"".$link_twitter."\" target=\"_blank\">Twitter</a><br />"; }
if($link_myspace != "") { echo "&nbsp;&nbsp;&nbsp;<a href=\"".$link_myspace."\" target=\"_blank\">Myspace</a><br />"; }
//stripslashes($model_about)
?>
</td>
  </tr>
</table>
<table width="800" border="0" cellspacing="5" cellpadding="0" align="center">
  <tr><td><a href="<?php echo urldecode($link); ?>" class="contentname">See more of <?=$model_name?> in the VIP</a></td>
  </tr></table>
<hr width="800" align="center"  noshade="noshade" color="#CCCCCC" size="1"/>
<? /*
<table width="800" border="0" cellspacing="5" cellpadding="0" align="center">
  <tr><td><span class="heading">Ask me anything:</span><br />
<? if($error == 1) { ?>
<span class="contentname">Thank you for submitting a question!</span><br />
<? } else { ?>
	<? if($error == 2) { ?>
  	<span class="contentname">You forgot to write a question!</span><br />
  <? } ?>
  <form method="post" action="qa.php">
  <table width="700" border="0" cellspacing="0" cellpadding="5">
  <tr>
    <td><div align="right"><strong>display name</strong></div></td>
    <td><input name="name" type="text" size="40" /></td>
  </tr>
  <tr>
    <td><div align="right"><strong>email</strong></div></td>
    <td><input name="email" type="text" size="40" /></td>
  </tr>
  <tr>
    <td valign="top"><div align="right"><strong>question</strong></div></td>
    <td><textarea name="question" cols="100" rows="5"></textarea></td>
  </tr>
    <tr>
    <td><div align="right"></div></td>
    <td><input name="post" type="submit" value="Ask!" /></td>
  </tr>
</table>
  <input type="hidden" name="model_id" value="<?=$content_id?>">
  <input type="hidden" name="php_self" value="<?=$_SERVER['PHP_SELF']?>">
  </form>
<? } ?>  
  
  </td></tr></table>
	*/ ?>
<hr width="800" align="center"  noshade="noshade" color="#CCCCCC" size="1"/>
<table width="800" border="0" cellspacing="5" cellpadding="0" align="center">
  <tr><td><span class="heading">Answered Questions:</span><br /><br />
<?
$get_questions = @mysql_query("SELECT * FROM qa WHERE model_id = '".$content_id."' AND answer != '' ORDER BY date DESC");
while ($row = mysql_fetch_array($get_questions)) {
?>  
<strong><span class="comingsoon"><?=stripslashes($row['name'])?>:</span>&nbsp;<?=stripslashes($row['question'])?></strong><br />
<?=stripslashes($row['answer'])?><br />
<hr width="775" align="center"  noshade="noshade" color="#CCCCCC" size="1"/>
<?
}
?>  
  </td></tr></table>

<?php
//include('mod_html_bottom.php');
?>
    
    </td>
  </tr>
<tr>
    <td height="100">
      <div align="center"><br />
        <br />

  <span class="contentname">This site contains nudity and is only intended for adults over the age of 18!</span><br />
          <br />
        
        If you are not 18 or you wish to prevent the transfer of this kind of content! <a href="http://www.google.com" class="contentname">Exit Here</a><br />
          
   <br />
        
        This web site contains nudity and depictions of graphic sexual material, including explicit depictions of sexual conduct and other materials for mature adult viewers only.<br />
        This web site contains age-restricted materials and access is limited to adults only.<br />
        You also acknowledge and agree that you are over 18 and not offended by nudity and explicit depictions of sexual activity.<br />
  <br />
      
        All models were 18 years of age or older at the time of photography.<br />
        By entering this site you have read and agreed to our <a href="legal.php#tos" class="sublink" target="_blank">terms and conditions</a><br />
        <a href="legal.php#2257" class="sublink" target="_blank">18 U.S.C. 2257 Record-Keeping Requirements Compliance Statement</a><br />
        <br />
        VipArea.com is updated daily. Date of Production is <?=date("m-d-Y")?>
        <br />
        Copyright &copy; <?=date("Y")?> VipArea.com All Rights Reserved.<br />
        <br />
    </div></td>
  </tr>
</table>


</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit