Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 13.59.88.8
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
kusdde /
adm2018 /
js /
pages /
ui /
[ HOME SHELL ]
Name
Size
Permission
Action
animations.js
563
B
-rwxr-xr-x
dialogs.js
3.77
KB
-rwxr-xr-x
modals.js
268
B
-rwxr-xr-x
notifications.js
2.11
KB
-rwxr-xr-x
range-sliders.js
1.8
KB
-rwxr-xr-x
sortable-nestable.js
279
B
-rwxr-xr-x
tooltips-popovers.js
168
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dialogs.js
$(function () { $('.js-sweetalert button').on('click', function () { var type = $(this).data('type'); if (type === 'basic') { showBasicMessage(); } else if (type === 'with-title') { showWithTitleMessage(); } else if (type === 'success') { showSuccessMessage(); } else if (type === 'confirm') { showConfirmMessage(); } else if (type === 'cancel') { showCancelMessage(); } else if (type === 'with-custom-icon') { showWithCustomIconMessage(); } else if (type === 'html-message') { showHtmlMessage(); } else if (type === 'autoclose-timer') { showAutoCloseTimerMessage(); } else if (type === 'prompt') { showPromptMessage(); } else if (type === 'ajax-loader') { showAjaxLoaderMessage(); } }); }); //These codes takes from http://t4t5.github.io/sweetalert/ function showBasicMessage() { swal("Here's a message!"); } function showWithTitleMessage() { swal("Here's a message!", "It's pretty, isn't it?"); } function showSuccessMessage() { swal("Good job!", "You clicked the button!", "success"); } function showConfirmMessage() { swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "warning", showCancelButton: true, confirmButtonColor: "#DD6B55", confirmButtonText: "Yes, delete it!", closeOnConfirm: false }, function () { swal("Deleted!", "Your imaginary file has been deleted.", "success"); }); } function showCancelMessage() { swal({ title: "Are you sure?", text: "You will not be able to recover this imaginary file!", type: "warning", showCancelButton: true, confirmButtonColor: "#DD6B55", confirmButtonText: "Yes, delete it!", cancelButtonText: "No, cancel plx!", closeOnConfirm: false, closeOnCancel: false }, function (isConfirm) { if (isConfirm) { swal("Deleted!", "Your imaginary file has been deleted.", "success"); } else { swal("Cancelled", "Your imaginary file is safe :)", "error"); } }); } function showWithCustomIconMessage() { swal({ title: "Sweet!", text: "Here's a custom image.", imageUrl: "../../images/thumbs-up.png" }); } function showHtmlMessage() { swal({ title: "HTML <small>Title</small>!", text: "A custom <span style=\"color: #CC0000\">html<span> message.", html: true }); } function showAutoCloseTimerMessage() { swal({ title: "Auto close alert!", text: "I will close in 2 seconds.", timer: 2000, showConfirmButton: false }); } function showPromptMessage() { swal({ title: "An input!", text: "Write something interesting:", type: "input", showCancelButton: true, closeOnConfirm: false, animation: "slide-from-top", inputPlaceholder: "Write something" }, function (inputValue) { if (inputValue === false) return false; if (inputValue === "") { swal.showInputError("You need to write something!"); return false } swal("Nice!", "You wrote: " + inputValue, "success"); }); } function showAjaxLoaderMessage() { swal({ title: "Ajax request example", text: "Submit to run ajax request", type: "info", showCancelButton: true, closeOnConfirm: false, showLoaderOnConfirm: true, }, function () { setTimeout(function () { swal("Ajax request finished!"); }, 2000); }); }
Close