shell bypass 403
<div id="error_del_client"></div> <div class="table-responsive"> <table class="table table-bordered table-striped table-hover" style="background-color:white;" id="table_direc"> <thead> <tr> <th>#</th> <th>Client Image</th> <th>Edit</th> <th>Delete</th> </tr> </thead> <tbody> <?php include('../config/config.php'); $sql = "SELECT * FROM clients2 "; $res = $conn->query($sql); $n = 0; while($row = $res->fetch_assoc()){ ?> <tr> <td width="5%"><?php echo ++$n; ?></td> <td width="20%"><?php echo '<img src="'."../".$row['cl2_image'].'" width="100%" class="img-responsive"/>' ?></td> <td width="5%"><a href="edit_client2.php?q=<?php echo $row['cl2_id']; ?>" class="btn btn-success edit_client" atr="">Edit</a></td> <td width="5%"><button class="btn btn-danger del_client" atr="<?php echo $row['cl2_id']; ?>">Delete</button></td> </tr> <?php } ?> </tbody> </table> </div> <script src="dist/js/jquery.validate.min.js"></script> <script src="http://malsup.github.com/jquery.form.js"></script> <script> $(function () { $('#table_direc').DataTable({ 'paging' : true, 'lengthChange': true, 'searching' : true, 'ordering' : true, 'info' : true, 'autoWidth' : true }) }) $(".del_client").click(function(){ var q = $(this).attr("atr"); if(confirm('Warning confirm delete Client !!! ')){ $.ajax({ url:"del_client2.php", type:"post", data:{q:q}, }).done(function(data){ console.log(data); if(data == 1){ $("#error_del_client").html('<div class="alert alert-danger">Delete Client complete</div>').fadeIn(1000).delay(5000).fadeOut(function(){ $("#table_client").load('table_client2.php'); }); }else{ console.log(data); return false; } }); }else{ console.log(data); return false; } }); </script>