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
/
usr /
share /
nodejs /
@types /
source-map-support /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.8
KB
-rw-r--r--
package.json
1.32
KB
-rw-r--r--
register.d.ts
207
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// Type definitions for source-map-support 0.5 // Project: https://github.com/evanw/node-source-map-support // Definitions by: Bart van der Schoor <https://github.com/Bartvds> // Jason Cheatham <https://github.com/jason0x43> // Alcedo Nathaniel De Guzman Jr <https://github.com/natealcedo> // Griffin Yourick <https://github.com/tough-griff> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped import { RawSourceMap } from 'source-map'; /** * Output of retrieveSourceMap(). * From source-map-support: * The map field may be either a string or the parsed JSON object (i.e., * it must be a valid argument to the SourceMapConsumer constructor). */ export interface UrlAndMap { url: string; map: string | RawSourceMap; } /** * Options to install(). */ export interface Options { handleUncaughtExceptions?: boolean | undefined; hookRequire?: boolean | undefined; emptyCacheBetweenOperations?: boolean | undefined; environment?: 'auto' | 'browser' | 'node' | undefined; overrideRetrieveFile?: boolean | undefined; overrideRetrieveSourceMap?: boolean | undefined; retrieveFile?(path: string): string; retrieveSourceMap?(source: string): UrlAndMap | null; } export interface Position { source: string; line: number; column: number; } export function wrapCallSite(frame: any /* StackFrame */): any /* StackFrame */; export function getErrorSource(error: Error): string | null; export function mapSourcePosition(position: Position): Position; export function retrieveSourceMap(source: string): UrlAndMap | null; export function resetRetrieveHandlers(): void; /** * Install SourceMap support. * @param options Can be used to e.g. disable uncaughtException handler. */ export function install(options?: Options): void;
Close