Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 13.58.48.103
Domains :
Cant Read [ /etc/named.conf ]
User : elibrary.unsap.ac.id
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
D: /
localhost /
member /
public /
Delete
Unzip
Name
Size
Permission
Date
Action
assets
[ DIR ]
drwxrwxrwx
2024-05-24 19:28
vendor
[ DIR ]
drwxrwxrwx
2024-05-24 19:28
.htaccess
624
B
-rw-rw-rw-
2024-05-24 19:28
favicon.ico
14.73
KB
-rw-rw-rw-
2024-05-25 21:23
index.php
1.72
KB
-rw-rw-rw-
2024-05-24 19:28
logo.png
16.34
KB
-rw-rw-rw-
2024-05-24 19:28
manifest.json
428
B
-rw-rw-rw-
2024-05-25 21:23
offline.html
2.01
KB
-rw-rw-rw-
2024-05-24 19:28
robots.txt
26
B
-rw-rw-rw-
2024-05-24 19:28
sw.js
1.55
KB
-rw-rw-rw-
2024-05-24 19:28
Save
Rename
const preLoad = function () { return caches.open("offline").then(function (cache) { // caching index and important routes return cache.addAll(filesToCache); }); }; self.addEventListener("install", function (event) { event.waitUntil(preLoad()); }); const filesToCache = [ '/', '/offline.html' ]; const checkResponse = function (request) { return new Promise(function (fulfill, reject) { fetch(request).then(function (response) { if (response.status !== 404) { fulfill(response); } else { reject(); } }, reject); }); }; const addToCache = function (request) { return caches.open("offline").then(function (cache) { return fetch(request).then(function (response) { return cache.put(request, response); }); }); }; const returnFromCache = function (request) { return caches.open("offline").then(function (cache) { return cache.match(request).then(function (matching) { if (!matching || matching.status === 404) { return cache.match("offline.html"); } else { return matching; } }); }); }; self.addEventListener("fetch", function (event) { event.respondWith(checkResponse(event.request).catch(function () { return returnFromCache(event.request); })); if(!event.request.url.startsWith('http')){ event.waitUntil(addToCache(event.request)); } });