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.47
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 /
es-abstract /
operations /
[ HOME SHELL ]
Name
Size
Permission
Action
2015.js
20.48
KB
-rw-r--r--
2016.js
22.96
KB
-rw-r--r--
2017.js
26.76
KB
-rw-r--r--
2018.js
28.98
KB
-rw-r--r--
2019.js
29.8
KB
-rw-r--r--
2020.js
35.73
KB
-rw-r--r--
2021.js
37.78
KB
-rw-r--r--
deltas.js
666
B
-rw-r--r--
es5.js
3.07
KB
-rw-r--r--
getOps.js
7.85
KB
-rwxr-xr-x
spackle.js
1.83
KB
-rw-r--r--
years.js
152
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : deltas.js
'use strict'; const diff = require('diff'); const years = require('./years'); const keys = ['../es5'].concat(years).map((x) => [ x, Object.keys(require(`./${x}`)).sort(), // eslint-disable-line global-require ]); const results = Object.fromEntries([5].concat(years).map((y) => [ y, { added: new Set(), removed: new Set() }, ])); function parse(from, to, result) { diff.diffArrays(from, to).forEach((x) => { x.value.forEach((v) => { if (x.added) { result.added.add(v); } if (x.removed) { result.removed.add(v); } }); }); } keys.reduce(([, pK], [y, k]) => { parse(pK, k, results[y]); return [y, k]; }); module.exports = results;
Close