Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
node_modules /
sucrase /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
esm
[ DIR ]
drwxr-xr-x
parser
[ DIR ]
drwxr-xr-x
transformers
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
util
[ DIR ]
drwxr-xr-x
CJSImportProcessor.js
15.99
KB
-rw-r--r--
HelperManager.js
5.57
KB
-rw-r--r--
NameManager.js
927
B
-rw-r--r--
Options-gen-types.js
1.71
KB
-rw-r--r--
Options.js
675
B
-rw-r--r--
TokenProcessor.js
10.26
KB
-rw-r--r--
cli.js
10.12
KB
-rw-r--r--
computeSourceMap.js
2.56
KB
-rw-r--r--
identifyShadowedGlobals.js
3.04
KB
-rw-r--r--
index.js
5.28
KB
-rw-r--r--
register.js
2.77
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : register.js
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } }var _pirates = require('pirates'); var pirates = _interopRequireWildcard(_pirates); var _index = require('./index'); function addHook( extension, sucraseOptions, hookOptions, ) { let mergedSucraseOptions = sucraseOptions; const sucraseOptionsEnvJSON = process.env.SUCRASE_OPTIONS; if (sucraseOptionsEnvJSON) { mergedSucraseOptions = {...mergedSucraseOptions, ...JSON.parse(sucraseOptionsEnvJSON)}; } return pirates.addHook( (code, filePath) => { const {code: transformedCode, sourceMap} = _index.transform.call(void 0, code, { ...mergedSucraseOptions, sourceMapOptions: {compiledFilename: filePath}, filePath, }); const mapBase64 = Buffer.from(JSON.stringify(sourceMap)).toString("base64"); const suffix = `//# sourceMappingURL=data:application/json;charset=utf-8;base64,${mapBase64}`; return `${transformedCode}\n${suffix}`; }, {...hookOptions, exts: [extension]}, ); } exports.addHook = addHook; function registerJS(hookOptions) { return addHook(".js", {transforms: ["imports", "flow", "jsx"]}, hookOptions); } exports.registerJS = registerJS; function registerJSX(hookOptions) { return addHook(".jsx", {transforms: ["imports", "flow", "jsx"]}, hookOptions); } exports.registerJSX = registerJSX; function registerTS(hookOptions) { return addHook(".ts", {transforms: ["imports", "typescript"]}, hookOptions); } exports.registerTS = registerTS; function registerTSX(hookOptions) { return addHook(".tsx", {transforms: ["imports", "typescript", "jsx"]}, hookOptions); } exports.registerTSX = registerTSX; function registerTSLegacyModuleInterop(hookOptions) { return addHook( ".ts", { transforms: ["imports", "typescript"], enableLegacyTypeScriptModuleInterop: true, }, hookOptions, ); } exports.registerTSLegacyModuleInterop = registerTSLegacyModuleInterop; function registerTSXLegacyModuleInterop(hookOptions) { return addHook( ".tsx", { transforms: ["imports", "typescript", "jsx"], enableLegacyTypeScriptModuleInterop: true, }, hookOptions, ); } exports.registerTSXLegacyModuleInterop = registerTSXLegacyModuleInterop; function registerAll(hookOptions) { const reverts = [ registerJS(hookOptions), registerJSX(hookOptions), registerTS(hookOptions), registerTSX(hookOptions), ]; return () => { for (const fn of reverts) { fn(); } }; } exports.registerAll = registerAll;
Close