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 | : 3.147.42.34
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 /
website /
gfgcg /
assets /
scripts /
custom /
[ HOME SHELL ]
Name
Size
Permission
Action
calendar.js
7.07
KB
-rwxr-xr-x
charts.js
29.93
KB
-rwxr-xr-x
coming-soon.js
637
B
-rwxr-xr-x
components-dropdowns.js
9.89
KB
-rwxr-xr-x
components-editors.js
494
B
-rwxr-xr-x
components-form-tools.js
18.13
KB
-rwxr-xr-x
components-ion-sliders.js
2.19
KB
-rwxr-xr-x
components-jqueryui-sliders.js
3.49
KB
-rwxr-xr-x
components-knob-dials.js
523
B
-rwxr-xr-x
components-nouisliders.js
1.69
KB
-rwxr-xr-x
components-pickers.js
7.46
KB
-rwxr-xr-x
contact-us.js
606
B
-rwxr-xr-x
custom.js
521
B
-rwxr-xr-x
ecommerce-index.js
7.64
KB
-rwxr-xr-x
ecommerce-orders-view.js
6.99
KB
-rwxr-xr-x
ecommerce-orders.js
2.64
KB
-rwxr-xr-x
ecommerce-products-edit.js
6.22
KB
-rwxr-xr-x
ecommerce-products.js
2.66
KB
-rwxr-xr-x
form-dropzone.js
1.37
KB
-rwxr-xr-x
form-editable.js
17.65
KB
-rwxr-xr-x
form-fileupload.js
2.6
KB
-rwxr-xr-x
form-image-crop.js
16.13
KB
-rwxr-xr-x
form-samples.js
1.4
KB
-rwxr-xr-x
form-validation.js
11.43
KB
-rwxr-xr-x
form-wizard.js
9.96
KB
-rwxr-xr-x
inbox.js
10.95
KB
-rwxr-xr-x
index.js
31
KB
-rwxr-xr-x
lock.js
376
B
-rwxr-xr-x
login-soft.js
8.62
KB
-rwxr-xr-x
login.js
7.89
KB
-rwxr-xr-x
maps-google.js
5.81
KB
-rwxr-xr-x
maps-vector.js
1.79
KB
-rwxr-xr-x
portfolio.js
181
B
-rwxr-xr-x
portlet-draggable.js
629
B
-rwxr-xr-x
search.js
273
B
-rwxr-xr-x
table-advanced.js
4.36
KB
-rwxr-xr-x
table-ajax.js
3.21
KB
-rwxr-xr-x
table-editable.js
5.91
KB
-rwxr-xr-x
table-managed.js
5.8
KB
-rwxr-xr-x
tasks.js
365
B
-rwxr-xr-x
ui-alert-dialog-api.js
3.17
KB
-rwxr-xr-x
ui-blockui.js
3.66
KB
-rwxr-xr-x
ui-datepaginator.js
774
B
-rwxr-xr-x
ui-extended-modals.js
2.44
KB
-rwxr-xr-x
ui-general.js
6.31
KB
-rwxr-xr-x
ui-idletimeout.js
2.23
KB
-rwxr-xr-x
ui-nestable.js
1.5
KB
-rwxr-xr-x
ui-notific8.js
1.4
KB
-rwxr-xr-x
ui-toastr.js
4.76
KB
-rwxr-xr-x
ui-tree.js
6.13
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : form-validation.js
var FormValidation = function () { var handleValidation1 = function() { // for more info visit the official plugin documentation: // http://docs.jquery.com/Plugins/Validation var form1 = $('#form_sample_1'); var error1 = $('.alert-danger', form1); var success1 = $('.alert-success', form1); form1.validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input ignore: "", rules: { name: { minlength: 2, required: true }, email: { required: true, email: true }, url: { required: true, url: true }, number: { required: true, number: true }, digits: { required: true, digits: true }, creditcard: { required: true, creditcard: true }, occupation: { minlength: 5, }, category: { required: true } }, invalidHandler: function (event, validator) { //display error alert on form submit success1.hide(); error1.show(); App.scrollTo(error1, -200); }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, unhighlight: function (element) { // revert the change done by hightlight $(element) .closest('.form-group').removeClass('has-error'); // set error class to the control group }, success: function (label) { label .closest('.form-group').removeClass('has-error'); // set success class to the control group }, submitHandler: function (form) { success1.show(); error1.hide(); } }); } var handleValidation2 = function() { // for more info visit the official plugin documentation: // http://docs.jquery.com/Plugins/Validation var form2 = $('#form_sample_2'); var error2 = $('.alert-danger', form2); var success2 = $('.alert-success', form2); form2.validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input ignore: "", rules: { name: { minlength: 2, required: true }, email: { required: true, email: true }, email: { required: true, email: true }, url: { required: true, url: true }, number: { required: true, number: true }, digits: { required: true, digits: true }, creditcard: { required: true, creditcard: true }, }, invalidHandler: function (event, validator) { //display error alert on form submit success2.hide(); error2.show(); App.scrollTo(error2, -200); }, errorPlacement: function (error, element) { // render error placement for each input type var icon = $(element).parent('.input-icon').children('i'); icon.removeClass('fa-check').addClass("fa-warning"); icon.attr("data-original-title", error.text()).tooltip({'container': 'body'}); }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, unhighlight: function (element) { // revert the change done by hightlight }, success: function (label, element) { var icon = $(element).parent('.input-icon').children('i'); $(element).closest('.form-group').removeClass('has-error').addClass('has-success'); // set success class to the control group icon.removeClass("fa-warning").addClass("fa-check"); }, submitHandler: function (form) { success2.show(); error2.hide(); } }); } var handleValidation3 = function() { // for more info visit the official plugin documentation: // http://docs.jquery.com/Plugins/Validation var form3 = $('#form_sample_3'); var error3 = $('.alert-danger', form3); var success3 = $('.alert-success', form3); //IMPORTANT: update CKEDITOR textarea with actual content before submit form3.on('submit', function() { for(var instanceName in CKEDITOR.instances) { CKEDITOR.instances[instanceName].updateElement(); } }) form3.validate({ errorElement: 'span', //default input error message container errorClass: 'help-block', // default input error message class focusInvalid: false, // do not focus the last invalid input ignore: "", rules: { name: { minlength: 2, required: true }, email: { required: true, email: true }, category: { required: true }, options1: { required: true }, options2: { required: true }, occupation: { minlength: 5, }, membership: { required: true }, service: { required: true, minlength: 2 }, markdown: { required: true }, editor1: { required: true }, editor2: { required: true } }, messages: { // custom messages for radio buttons and checkboxes membership: { required: "Please select a Membership type" }, service: { required: "Please select at least 2 types of Service", minlength: jQuery.format("Please select at least {0} types of Service") } }, errorPlacement: function (error, element) { // render error placement for each input type if (element.parent(".input-group").size() > 0) { error.insertAfter(element.parent(".input-group")); } else if (element.attr("data-error-container")) { error.appendTo(element.attr("data-error-container")); } else if (element.parents('.radio-list').size() > 0) { error.appendTo(element.parents('.radio-list').attr("data-error-container")); } else if (element.parents('.radio-inline').size() > 0) { error.appendTo(element.parents('.radio-inline').attr("data-error-container")); } else if (element.parents('.checkbox-list').size() > 0) { error.appendTo(element.parents('.checkbox-list').attr("data-error-container")); } else if (element.parents('.checkbox-inline').size() > 0) { error.appendTo(element.parents('.checkbox-inline').attr("data-error-container")); } else { error.insertAfter(element); // for other inputs, just perform default behavior } }, invalidHandler: function (event, validator) { //display error alert on form submit success3.hide(); error3.show(); App.scrollTo(error3, -200); }, highlight: function (element) { // hightlight error inputs $(element) .closest('.form-group').addClass('has-error'); // set error class to the control group }, unhighlight: function (element) { // revert the change done by hightlight $(element) .closest('.form-group').removeClass('has-error'); // set error class to the control group }, success: function (label) { label .closest('.form-group').removeClass('has-error'); // set success class to the control group }, submitHandler: function (form) { success3.show(); error3.hide(); } }); //apply validation on select2 dropdown value change, this only needed for chosen dropdown integration. $('.select2me', form3).change(function () { form3.validate().element($(this)); //revalidate the chosen dropdown value and show error or success message for the input }); } var handleWysihtml5 = function() { if (!jQuery().wysihtml5) { return; } if ($('.wysihtml5').size() > 0) { $('.wysihtml5').wysihtml5({ "stylesheets": ["assets/plugins/bootstrap-wysihtml5/wysiwyg-color.css"] }); } } return { //main function to initiate the module init: function () { handleWysihtml5(); handleValidation1(); handleValidation2(); handleValidation3(); } }; }();
Close