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 : spackle.js
'use strict'; const path = require('path'); const fs = require('fs'); const childProcess = require('child_process'); const deltas = require('./deltas'); const years = require('./years'); const writtenFiles = [5].concat(years).flatMap((year, i, arr) => { if ((i + 1) < arr.length) { const ops = fs.readdirSync(path.join(process.cwd(), String(year))); return ops.flatMap((opFile) => { const maybeDirPath = path.join(process.cwd(), String(year), opFile); if (fs.statSync(maybeDirPath).isDirectory()) { return fs.readdirSync(maybeDirPath).map((x) => `${opFile}::${path.basename(x, path.extname(x))}`); } return opFile; }).map((opFile) => { const op = path.basename(opFile, path.extname(opFile)); const opPath = op.replace('::', '/'); const thisFile = path.join(process.cwd(), String(year), `${opPath}.js`); const nextYear = arr[i + 1]; const nextFile = path.join(process.cwd(), String(nextYear), `${opPath}.js`); console.log('**', opFile, op, opPath, thisFile, nextFile); if (op.includes('::')) { fs.mkdirSync(path.dirname(nextFile), { recursive: true }); } if (!deltas[nextYear].removed.has(op) && fs.existsSync(thisFile) && !fs.existsSync(nextFile)) { console.log(`writing: ${nextYear}/${opPath} -> ${year}/${opPath}`); const thisSpecifier = `../${year}/${opPath}`; const reexport = `'use strict'; module.exports = require('${thisSpecifier}'); `; const replacement = fs.readFileSync(thisFile, 'utf-8'); fs.writeFileSync(nextFile, process.argv[2] ? replacement : reexport); return path.relative(process.cwd(), nextFile); } return null; }); } return []; }).filter(Boolean); fs.writeFileSync(path.join(process.cwd(), '.gitattributes'), writtenFiles.map((x) => `${x}\tspackled linguist-generated=true`).join('\n')); childProcess.execSync(`git add .gitattributes ${writtenFiles.join(' ')}`);
Close