Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
caniuse-lite /
dist /
unpacker /
[ HOME SHELL ]
Name
Size
Permission
Action
agents.js
1.41
KB
-rw-r--r--
browserVersions.js
71
B
-rw-r--r--
browsers.js
57
B
-rw-r--r--
feature.js
1.3
KB
-rw-r--r--
features.js
141
B
-rw-r--r--
index.js
198
B
-rw-r--r--
region.js
550
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : feature.js
'use strict' const statuses = require('../lib/statuses') const supported = require('../lib/supported') const browsers = require('./browsers').browsers const versions = require('./browserVersions').browserVersions const MATH2LOG = Math.log(2) function unpackSupport(cipher) { // bit flags let stats = Object.keys(supported).reduce((list, support) => { if (cipher & supported[support]) list.push(support) return list }, []) // notes let notes = cipher >> 7 let notesArray = [] while (notes) { let note = Math.floor(Math.log(notes) / MATH2LOG) + 1 notesArray.unshift(`#${note}`) notes -= Math.pow(2, note - 1) } return stats.concat(notesArray).join(' ') } function unpackFeature(packed) { let unpacked = { status: statuses[packed.B], title: packed.C } unpacked.stats = Object.keys(packed.A).reduce((browserStats, key) => { let browser = packed.A[key] browserStats[browsers[key]] = Object.keys(browser).reduce( (stats, support) => { let packedVersions = browser[support].split(' ') let unpacked2 = unpackSupport(support) packedVersions.forEach(v => (stats[versions[v]] = unpacked2)) return stats }, {} ) return browserStats }, {}) return unpacked } module.exports = unpackFeature module.exports.default = unpackFeature
Close