Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
virtueex /
online.amdconsults.com /
build /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2026-01-07 15:46
cgi-bin
[ DIR ]
drwxr-xr-x
2026-01-21 17:05
logos
[ DIR ]
drwxr-xr-x
2026-01-07 15:46
static
[ DIR ]
drwxr-xr-x
2025-12-10 15:21
.htaccess
259
B
-rw-r--r--
2026-02-20 01:08
asset-manifest.json
517
B
-rw-r--r--
2026-01-07 16:44
browserconfig.xml
450
B
-rw-r--r--
2025-05-31 17:01
favicon.ico
3.78
KB
-rw-r--r--
2025-05-23 21:56
index.html
8.96
KB
-rw-r--r--
2026-01-07 16:44
logo192.png
5.22
KB
-rw-r--r--
2025-05-23 21:56
logo512.png
9.44
KB
-rw-r--r--
2025-05-23 21:56
manifest.json
1.6
KB
-rw-r--r--
2025-11-17 22:02
offline.html
7.01
KB
-rw-r--r--
2025-07-11 03:09
privacy.html
8.31
KB
-rw-r--r--
2025-05-23 21:56
pwabuilder-adv-sw.js
3.07
KB
-rw-r--r--
2025-07-26 23:12
robots.txt
70
B
-rw-r--r--
2025-05-23 21:56
Save
Rename
// This is the "Offline page" service worker importScripts('https://storage.googleapis.com/workbox-cdn/releases/5.1.2/workbox-sw.js'); const CACHE = "pwabuilder-page"; // TODO: replace the following with the correct offline fallback page i.e.: const offlineFallbackPage = "offline.html"; const offlineFallbackPage = "offline.html"; self.addEventListener("message", (event) => { if (event.data && event.data.type === "SKIP_WAITING") { self.skipWaiting(); } }); self.addEventListener('install', async (event) => { event.waitUntil( caches.open(CACHE) .then((cache) => cache.add(offlineFallbackPage)) ); }); if (workbox.navigationPreload.isSupported()) { workbox.navigationPreload.enable(); } self.addEventListener('fetch', (event) => { if (event.request.mode === 'navigate') { event.respondWith((async () => { try { const preloadResp = await event.preloadResponse; if (preloadResp) { return preloadResp; } const networkResp = await fetch(event.request); return networkResp; } catch (error) { const cache = await caches.open(CACHE); const cachedResp = await cache.match(offlineFallbackPage); return cachedResp; } })()); } }); self.addEventListener('notificationclick', function(event){ var notification = event.notification; var action = event.action; if (action === 'confirm') { notification.close(); }else{ event.waitUntil( clients.matchAll() .then(function(clis){ var client = clis.find(function(c){ return c.visibilityState === 'visible'; }); if (client !== undefined) { client.navigate(notification.data.url); client.focus(); }else{ clients.openWindow(notification.data.url); } notification.close(); }) ); } }); self.addEventListener('push', function(e){ var data = {}; console.log(e.data.json()); if (e.data) { data = e.data.json(); } var title = data.title || 'HULA CAPITAL'; var message = data.message || 'New investment opportunity available!'; var action = data.action || 'https://dashboard.hulacapital.com'; var img = data.image || 'https://res.cloudinary.com/dqbbuntc6/image/upload/v1751818518/hulacapital-appicon_qfzgqw.png'; var options = { body: message, image: img, icon: 'https://res.cloudinary.com/dqbbuntc6/image/upload/v1751818518/hulacapital-appicon_qfzgqw.png', dir: 'ltr', lang: 'en-Us', vibrate: [100, 50, 200], badge: 'https://res.cloudinary.com/dqbbuntc6/image/upload/v1751818518/hulacapital-appicon_qfzgqw.png', data: { url: action }, actions: [ {action: 'visit', title: 'View'} ], requireInteraction: false, silent: false, tag: 'hulacapital-notification' } registration.showNotification(title, options); });