403Webshell
Server IP : 89.46.109.6  /  Your IP : 216.73.217.116
Web Server : Apache
System : Linux hlpi1ws-c284s07.ad.aruba.it 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
User : ID19067310 ( 19067310)
PHP Version : 5.3.29
Disable Function : system,popen,dl,passthru,proc_open,shell_exec
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /web/htdocs/www.edizacco.it/home/pannello/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /web/htdocs/www.edizacco.it/home/pannello/home.php
<?php 
ob_start();
@session_start();
require_once('../include/connect_db.php');
require_once('include/templates.php');
include('include/sessione.inc.php');
require_once 'include/class.ycpager.php';
$meta_title = TITLE;
$_SESSION['page'] = "null";
?>
<!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=iso-8859-1" />
<title><?php echo"$meta_title | Area Riservata"; ?></title>
<link href="css/master.css" rel="stylesheet" type="text/css" />
</head>

<body>
<!-- WRAPPER INIZIO -->
<div id="wrapper">

	<!-- WRAPPER HEADER INIZIO -->
	<div id="wrapper_header">
		<div id="header"><?php select_header(); ?></div>
	</div>
	<!-- WRAPPER HEADER FINE -->

	<!-- WRAPPER CONTAINER INIZIO -->
	<div id="wrapper_container">
	
		<!-- CONTENUTI HOME -->
		<div id="home">
			<h1>Benvenuto nella tua area riservata</h1>
			<ul id="navhome">
			<?php
				$prefix = PREFIX;
				$account_id_login = $_SESSION['pann_id_login'];
				$home_menu = mysql_query("SELECT * FROM ".$prefix."_login WHERE id_login = '$account_id_login'");
			
				while ( $row_home_menu = @mysql_fetch_array($home_menu) ){
					/// GESTIONE ACCOUNT ///
					$gestione_account = stripslashes($row_home_menu['gestione_account']);	
					if ( $gestione_account == "1" ) {
						$menu_account = '<li><a href="gestione_account.php" class="account" title="Gestione Account"><p>Gestione Account</p></a></li>'; 
					} elseif ( $gestione_account == "0" ) { $menu_account = ""; }
					/// GESTIONE NEWS ///
					$gestione_news = stripslashes($row_home_menu['gestione_news']);	
					if ( $gestione_news == "1" ) {
						$menu_news = '<li><a href="gestione_news.php?tipo=tutte&amp;pages=12" class="news" title="Gestione News"><p>Gestione News</p></a></li>';
					} elseif ( $gestione_news == "0" ) { $menu_news = ""; }
					/// GESTIONE COMUNICATI ///
					$gestione_comunicati = stripslashes($row_home_menu['gestione_comunicati']);	
					if ( $gestione_comunicati == "1" ) {
						$menu_comunicati = '<li><a href="gestione_comunicati.php?tipo=tutte&amp;pages=12" class="bacheca" title="Gestione Comunicati"><p>Gestione Comunicati</p></a></li>';
					} elseif ( $gestione_comunicati == "0" ) { $menu_comunicati = ""; }
					/// GESTIONE OFFERTE ///
					$gestione_offerte = stripslashes($row_home_menu['gestione_offerte']);	
					if ( $gestione_offerte == "1" ) {
						$menu_offerte = '<li><a href="gestione_offerte.php?tipo=tutte&amp;pages=12" class="offerte" title="Gestione Offerte"><p>Gestione Offerte</p></a></li>';
					} elseif ( $gestione_offerte == "0" ) { $menu_offerte = ""; }
					/// GESTIONE NEWSLETTER ///
					$gestione_newsletter = stripslashes($row_home_menu['gestione_newsletter']);	
					if ( $gestione_newsletter == "1" ) {
						$menu_newsletter = '<li><a href="gestione_newsletter.php?action=newsletter&amp;tipo=tutte" class="newsletter" title="Gestione Newsletter"><p>Gestione Newsletter</p></a></li>';
					} elseif ( $gestione_newsletter == "0" ) { $menu_newsletter = ""; }
					/// GESTIONE GALLERY ///
					$gestione_gallery = stripslashes($row_home_menu['gestione_gallery']);	
					if ( $gestione_gallery == "1" ) {
						$menu_gallery = '<li><a href="gestione_gallery.php?tipo=tutte" class="gallery" title="Gestione Gallery"><p>Gestione Gallery</p></a></li>';
					} elseif ( $gestione_gallery == "0" ) { $menu_gallery = ""; }
					/// GESTIONE BANNER HOME ///
					$gestione_bannerhome = stripslashes($row_home_menu['gestione_bannerhome']);	
					if ( $gestione_bannerhome == "1" ) {
						$menu_bannerhome = '<li><a href="gestione_bannerhome.php" class="bannerhome" title="Gestione Banner Home"><p>Gestione<br />Banner Home</p></a></li>';
					} elseif ( $gestione_bannerhome == "0" ) { $menu_bannerhome = ""; }
					/// GESTIONE BACHECA ///
					$gestione_bacheca = stripslashes($row_home_menu['gestione_bacheca']);	
					if ( $gestione_bacheca == "1" ) {
						$menu_bacheca = '<li><a href="gestione_bacheca.php" class="bacheca" title="Gestione Bacheca"><p>Gestione Bacheca</p></a></li>';
					} elseif ( $gestione_bacheca == "0" ) { $menu_bacheca = ""; }
					/// GESTIONE PRODOTTI ///
					$gestione_prodotti = stripslashes($row_home_menu['gestione_prodotti']);	
					if ( $gestione_prodotti == "1" ) {
						$menu_prodotti = '<li><a href="gestione_prodotti.php?action=prodotti&amp;tipo=tutte&amp;pages=12&amp;cat1=0&amp;cat2=0&amp;cat3=0&amp;m=0&amp;o=0" class="prodotti" title="Gestione Libri"><p>Gestione Libri</p></a></li>';
					} elseif ( $gestione_prodotti == "0" ) { $menu_prodotti = ""; }
					/// GESTIONE ORDINI ///
					$gestione_ordini = stripslashes($row_home_menu['gestione_ordini']);	
					if ( $gestione_ordini == "1" ) {
						$menu_ordini = '<li><a href="gestione_ordini.php?tipo=ordini&amp;pages=15" class="ordini" title="Gestione Ordini"><p>Gestione Ordini</p></a></li>';
					} elseif ( $gestione_ordini == "0" ) { $menu_ordini = ""; }
					/// GESTIONE VOLANTINI ///
					$gestione_volantini = stripslashes($row_home_menu['gestione_volantini']);	
					if ( $gestione_volantini == "1" ) {
						$menu_volantini = '<li><a href="gestione_volantini.php" class="volantini" title="Gestione Volantini"><p>Gestione Volantini</p></a></li>';
					} elseif ( $gestione_volantini == "0" ) { $menu_volantini = ""; }
					/// GESTIONE BANNER ///
					$gestione_banner = stripslashes($row_home_menu['gestione_banner']);	
					if ( $gestione_banner == "1" ) {
						$menu_banner = '<li><a href="gestione_banner.php" class="banner" title="Gestione Banner"><p>Gestione Banner</p></a></li>';
					} elseif ( $gestione_banner == "0" ) { $menu_banner = ""; }
				
					echo'		
						'.$menu_account.'
						<!--'.$menu_bacheca.'-->
						'.$menu_news.'
						'.$menu_comunicati.'
						'.$menu_newsletter.'
						'.$menu_gallery.'
						'.$menu_bannerhome.'
						<!--'.$menu_offerte.'-->
						'.$menu_prodotti.'
						<!--'.$menu_ordini.'-->
						<!--'.$menu_volantini.'-->
						<!--'.$menu_banner.'-->
					<li><a href="http://webmaildomini.aruba.it" class="webmail" title="Gestione Posta Elettronica" target="_blank"><p>Gestione<br />Posta Elettronica</p></a></li>
					';
				}
			?>
			</ul>
			
		</div>
		<!-- CONTENUTI HOME -->
	</div>
	<!-- WRAPPER CONTAINER FINE -->

	<div class="push"></div>
</div>
<!-- WRAPPER FINE -->


<!-- WRAPPER FOOTER INIZIO-->
<div id="wrapper_footer"><?php select_footer(); ?></div>
<!-- WRAPPER FOOTER FINE-->

</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit