shell bypass 403

Cubjrnet7 Shell


name : order-details.php
<?php
include('login-status.php');
include("global.inc.php");
include("connection.inc.php");


pageHeaderOne("Eklavya Publications Order Details");
adminPageHeaderTwo();
?>
<link type="text/css" rel="stylesheet" href="print.css" media="print">
<?php
adminPageHeaderThree();
$order_status_arr = array();
?>
<div id="content_box">

<?php
	$dispatchArray = true;
	$order_id = (isset($_REQUEST['i'])?$_REQUEST['i']:'');
	if(orderDetails($order_id, $status, $name, $CustEmail, $CustMsgCC, $order_data, $cust_data, $cust_shipping_data, $link, $custArray, $ShippingDtlArray, $dispatchArray, $dispatch_data))
	{
		echo '<div style="text-align:center; padding:1em;margin:auto;"  id="Print">'.
  			'<input type="button" value="Print" name="Print" onclick="window.print();">'.
  			'</div>';
		echo '<h2 id="printTitle">Eklavya Pitara</h2><h2 id="screenTitle">Order details</h2>Order# <span style="font-weight:bold;font-size:1.5em;">'.$order_id.'</span> '.
	 			'Status: <span style="font-weight:bold;font-size:1.5em;">'.$status_arr[$status].'</span><br /><br />';
				if($dispatch_data != '')
				{
					echo $dispatch_data.'</br>';
				}
	 	echo $order_data . '<br>' . $cust_data .'<br>'.$cust_shipping_data.'<br>'; 
	}
	else
	{
	 echo '<div style="text-align:center;font-weight:bold;">Order not found!</div>';
	}
?>
</div>	

© 2025 Cubjrnet7