| Server IP : 208.122.213.31 / Your IP : 216.73.216.185 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/www.superporner.com/tube/process/ |
Upload File : |
<?
session_start();
set_time_limit(86400);
include '../admin/db.php';
if(!$_POST) { exit(); }
$newfilename = $_POST["hidFileID"];
$filename = str_replace("\n","",$newfilename);
if(eregi('.flv',$newfilename)) {
$newfilename = substr($filename,0,-4).'.flv';
}
else {
$newfilename = substr($filename,0,-4).'.mp4';
}
$filesize = filesize($content_path.'/'.$filename);
$_POST[keywords] = strip_tags(html_entity_decode($_POST[keywords]));
$_POST[pornstars] = strip_tags(html_entity_decode($_POST[pornstars]));
$_POST[description] = strip_tags(html_entity_decode($_POST[description]));
$_POST[title] = strip_tags(html_entity_decode($_POST[title]));
$_POST[channel] = strip_tags(html_entity_decode($_POST[channel]));
$_POST[paysite] = strip_tags(html_entity_decode($_POST[paysite]));
$_POST = mysql_real_escape_array($_POST);
mysql_query("INSERT INTO content (length, title, filename, orig_filename, description, keywords, date_added, submitter, ip, approved, paysite) VALUES ('$length', '$_POST[title]', '".$newfilename."', '$filename', '$_POST[description]', '$_POST[keywords]', NOW(), '$_SESSION[userid]', '$_SERVER[REMOTE_ADDR]', '$approved', '$_POST[paysite]')") or die(mysql_error());
$insert = mysql_insert_id();
mysql_query("INSERT INTO content_niches (content, niche) VALUES ('$insert', '$_POST[channel]')");
header("Location: $basehttp/thanks.php");
exit();
?>