Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
es-abstract /
operations /
Delete
Unzip
Name
Size
Permission
Date
Action
2015.js
23.35
KB
-rw-r--r--
2022-12-05 08:07
2016.js
26.13
KB
-rw-r--r--
2022-12-05 08:07
2017.js
30.5
KB
-rw-r--r--
2022-12-05 08:07
2018.js
33.03
KB
-rw-r--r--
2022-12-05 08:07
2019.js
33.91
KB
-rw-r--r--
2022-12-05 08:07
2020.js
40.58
KB
-rw-r--r--
2022-12-05 08:07
2021.js
42.88
KB
-rw-r--r--
2022-12-05 08:07
2022.js
45.86
KB
-rw-r--r--
2022-12-05 08:07
deltas.js
684
B
-rw-r--r--
2022-12-05 08:07
es5.js
3.07
KB
-rw-r--r--
2022-12-05 08:07
getOps.js
8.3
KB
-rwxr-xr-x
2022-12-05 08:07
spackle.js
1.8
KB
-rw-r--r--
2022-12-05 08:07
years.js
152
B
-rw-r--r--
2022-12-05 08:07
Save
Rename
'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); 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(' ')}`);