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.171.26
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 /
AccelCMS /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
ace-responsive-menu.js
4.59
KB
-rw-r--r--
bootstrap-select.min.js
44.06
KB
-rw-r--r--
bootstrap.min.js
58.6
KB
-rw-r--r--
chart-custome.js
4.25
KB
-rw-r--r--
chart.min.js
156.31
KB
-rw-r--r--
dashboard-script.js
1.99
KB
-rw-r--r--
google-maps.js
38.83
KB
-rw-r--r--
googlemaps1.js
2.85
KB
-rw-r--r--
googlemaps2.js
2.83
KB
-rw-r--r--
isotop.js
55.75
KB
-rw-r--r--
jquery-3.3.1.js
332.61
KB
-rw-r--r--
jquery-migrate-3.0.0.min.js
8.32
KB
-rw-r--r--
jquery-scrolltofixed-min.js
28.9
KB
-rw-r--r--
jquery.counterup.js
9.09
KB
-rw-r--r--
jquery.marquee.min.js
2.2
KB
-rw-r--r--
jquery.mmenu.all.js
23.53
KB
-rw-r--r--
parallax.js
33.07
KB
-rw-r--r--
popper.min.js
20.76
KB
-rw-r--r--
progressbar.js
5.91
KB
-rw-r--r--
script.js
30.31
KB
-rw-r--r--
script2.js
30.31
KB
-rw-r--r--
scrollto.js
6.88
KB
-rw-r--r--
simplebar.js
41.76
KB
-rw-r--r--
single-counter.js
655
B
-rw-r--r--
slider.js
116.34
KB
-rw-r--r--
smartuploader.js
749
B
-rw-r--r--
snackbar.min.js
3.31
KB
-rw-r--r--
timepicker.js
60.78
KB
-rw-r--r--
wow.min.js
8.22
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : progressbar.js
(function($) { jQuery.fn.progressBar = function( options ) { //Default values for progress_bar var defaults = { height : "30", backgroundColor : "#E0E0E0", barColor : "#F97352", targetBarColor : "#CCC", percentage : true, shadow : false, border : false, animation : false, animateTarget : false, }; var settings = $.extend( {}, defaults, options ); return this.each( function() { var elem = $( this ); $.fn.replaceProgressBar( elem, settings ); }); }; $.fn.replaceProgressBar = function( item, settings ) { var skill = item.text(); var progress = item.data( 'width' ); var target = item.data ( 'target' ); var bar_classes = ' '; var animation_class = ''; var bar_styles = 'background-color:' + settings.backgroundColor + ';height:' + settings.height + 'px;'; if ( settings.shadow ) { bar_classes += 'shadow'; } if ( settings.border ) { bar_classes += ' border'; } if ( settings.animation ) { animation_class = ' animate'; } var overlay = '<div class="sonny_progressbar' + animation_class + '" data-width="' + progress + '">'; overlay += '<p class="title">' + skill + '</p>'; overlay += '<div class="bar-container' + bar_classes + '" style="' + bar_styles + '">'; // Render the progress bar background overlay += '<span class="backgroundBar"></span>'; // Display target bar only if set if ( target ) { if ( settings.animateTarget ) { overlay += '<span class="targetBar loader" style="width:' + target + '%;background-color:' + settings.targetBarColor + ';"></span>'; } else { overlay += '<span class="targetBar" style="width:' + target + '%;background-color:' + settings.targetBarColor + ';"></span>'; } } // Render the progress bar if ( settings.animation ) { overlay += '<span class="bar" style="background-color:' + settings.barColor + ';"></span>'; } else { overlay += '<span class="bar" style="width:' + progress + '%;background-color:' + settings.barColor + ';"></span>'; } // Render the percentage if enabled if ( settings.percentage ) { overlay += '<span class="progress-percent" style="line-height:' + settings.height + 'px;">' + progress + '%</span>'; } // End overlay += '</div></div>'; // Render the progress bar on the page $( item ).replaceWith( overlay ); }; var animate = function() { var doc_height = $(window).height(); $( '.sonny_progressbar.animate' ).each( function() { var position = $( this ).offset().top; if ( ( $(window).scrollTop() + doc_height - 60 ) > position ) { var progress = $( this ).data( 'width' ) + "%"; $( this ).removeClass( 'animate' ); $( this ).find( '.bar' ).css('opacity', '0.1'); $( this ).find( '.bar' ).animate({ width : progress, opacity : 1 }, 3000 ); } }); }; // Looking for an animation element in the view $(window).scroll(function() { if ( $( '.sonny_progressbar.animate' ).length < 1 ) { return; } // If there is an animate element visible on the page, trigger the animation animate(); }); })(jQuery); /* Dashboard CIrcle Progress Bar Script */ function makesvg(percentage, inner_text=""){ var abs_percentage = Math.abs(percentage).toString(); var percentage_str = percentage.toString(); var classes = "" if(percentage < 0){ classes = "danger-stroke circle-chart__circle--negative"; } else if(percentage > 0 && percentage <= 30){ classes = "warning-stroke"; } else{ classes = "success-stroke"; } var svg = '<svg class="circle-chart" viewbox="0 0 33.83098862 33.83098862" xmlns="http://www.w3.org/2000/svg">' + '<circle class="circle-chart__background" cx="16.9" cy="16.9" r="15.9" />' + '<circle class="circle-chart__circle '+classes+'"' + 'stroke-dasharray="'+ abs_percentage+',100" cx="16.9" cy="16.9" r="15.9" />' + '<g class="circle-chart__info">' + ' <text class="circle-chart__percent" x="17.9" y="15.5">'+percentage_str+'%</text>'; if(inner_text){ svg += '<text class="circle-chart__subline" x="16.91549431" y="22">'+inner_text+'</text>' } svg += ' </g></svg>'; return svg } (function( $ ) { $.fn.circlechart = function() { this.each(function() { var percentage = $(this).data("percentage"); var inner_text = $(this).text(); $(this).html(makesvg(percentage, inner_text)); }); return this; }; }( jQuery )); $(document).on('ready', function() { $('.circlechart').circlechart(); // Initialization }); /* ----- Job List V3 Page On Click SIdebar ----- */ function openNav() { document.getElementById("mySidenav").style.width = "300px"; document.getElementById("mySidenav").style.marginLeft = "0px"; document.getElementById("main").style.marginLeft = "0"; document.body.style.backgroundColor = "rgba(250,250,250,0.4)"; } function closeNav() { document.getElementById("mySidenav").style.width = "0"; document.getElementById("mySidenav").style.marginLeft= "-30px"; document.getElementById("main").style.marginLeft= "0"; document.body.style.backgroundColor = "white"; } // Display the progress bar calling progressbar.js $(document).on('ready', function() { $('.progressbar1').progressBar({ shadow : false, percentage : false, animation : true, barColor : "#ff5a5f", }); $('.progressbar2').progressBar({ shadow : false, percentage : false, animation : true, barColor : "#ff5a5f", }); $('.progressbar3').progressBar({ shadow : false, percentage : false, animation : true, animateTarget : true, barColor : "#ff5a5f", }); $('.progressbar4').progressBar({ shadow : false, percentage : false, animation : true, animateTarget : true, barColor : "#ff5a5f", }); $('.progressbar5').progressBar({ shadow : false, percentage : false, animation : true, animateTarget : true, barColor : "#ff5a5f", }); });
Close