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 : helpers.d.ts
export declare const isPresent: (value: unknown) => boolean; export declare const round: (number: number, digits?: number, base?: number) => number; export declare const floor: (number: number, digits?: number, base?: number) => number; /** * Clamps a value between an upper and lower bound. * We use ternary operators because it makes the minified code * is 2 times shorter then `Math.min(Math.max(a,b),c)` * NaN is clamped to the lower bound */ export declare const clamp: (number: number, min?: number, max?: number) => number; /** * Processes and clamps a degree (angle) value properly. * Any `NaN` or `Infinity` will be converted to `0`. * Examples: -1 => 359, 361 => 1 */ export declare const clampHue: (degrees: number) => number; /** * Converts a hue value to degrees from 0 to 360 inclusive. */ export declare const parseHue: (value: string, unit?: string) => number;
Close