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 /
@types /
node /
[ HOME SHELL ]
Name
Size
Permission
Action
assert
[ DIR ]
drwxrwxr-x
dns
[ DIR ]
drwxrwxr-x
fs
[ DIR ]
drwxrwxr-x
readline
[ DIR ]
drwxrwxr-x
stream
[ DIR ]
drwxrwxr-x
timers
[ DIR ]
drwxrwxr-x
ts4.8
[ DIR ]
drwxrwxr-x
LICENSE
1.11
KB
-rw-rw-r--
README.md
2.27
KB
-rw-rw-r--
assert.d.ts
40.67
KB
-rw-rw-r--
async_hooks.d.ts
22.21
KB
-rw-rw-r--
buffer.d.ts
104.77
KB
-rw-rw-r--
child_process.d.ts
67.57
KB
-rw-rw-r--
cluster.d.ts
20.36
KB
-rw-rw-r--
console.d.ts
18.04
KB
-rw-rw-r--
constants.d.ts
623
B
-rw-rw-r--
crypto.d.ts
186.28
KB
-rw-rw-r--
dgram.d.ts
27.11
KB
-rw-rw-r--
diagnostics_channel.d.ts
22.62
KB
-rw-rw-r--
dns.d.ts
30.51
KB
-rw-rw-r--
dom-events.d.ts
5.61
KB
-rw-rw-r--
domain.d.ts
7.64
KB
-rw-rw-r--
events.d.ts
39.98
KB
-rw-rw-r--
fs.d.ts
182.76
KB
-rw-rw-r--
globals.d.ts
13.96
KB
-rw-rw-r--
globals.global.d.ts
39
B
-rw-rw-r--
http.d.ts
82.29
KB
-rw-rw-r--
http2.d.ts
114.11
KB
-rw-rw-r--
https.d.ts
24.31
KB
-rw-rw-r--
index.d.ts
3.65
KB
-rw-rw-r--
inspector.d.ts
122.42
KB
-rw-rw-r--
module.d.ts
13.46
KB
-rw-rw-r--
net.d.ts
42.28
KB
-rw-rw-r--
os.d.ts
17.65
KB
-rw-rw-r--
package.json
6.62
KB
-rw-rw-r--
path.d.ts
7.57
KB
-rw-rw-r--
perf_hooks.d.ts
23.93
KB
-rw-rw-r--
process.d.ts
74.43
KB
-rw-rw-r--
punycode.d.ts
5.35
KB
-rw-rw-r--
querystring.d.ts
6.49
KB
-rw-rw-r--
readline.d.ts
22.44
KB
-rw-rw-r--
repl.d.ts
19.08
KB
-rw-rw-r--
stream.d.ts
80.72
KB
-rw-rw-r--
string_decoder.d.ts
2.78
KB
-rw-rw-r--
test.d.ts
58.43
KB
-rw-rw-r--
timers.d.ts
11.99
KB
-rw-rw-r--
tls.d.ts
55.52
KB
-rw-rw-r--
trace_events.d.ts
7.74
KB
-rw-rw-r--
tty.d.ts
9.82
KB
-rw-rw-r--
url.d.ts
40.17
KB
-rw-rw-r--
util.d.ts
83.38
KB
-rw-rw-r--
v8.d.ts
31.46
KB
-rw-rw-r--
vm.d.ts
38.17
KB
-rw-rw-r--
wasi.d.ts
7.65
KB
-rw-rw-r--
worker_threads.d.ts
33.17
KB
-rw-rw-r--
zlib.d.ts
19.09
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : path.d.ts
declare module "path/posix" { import path = require("path"); export = path; } declare module "path/win32" { import path = require("path"); export = path; } /** * The `node:path` module provides utilities for working with file and directory * paths. It can be accessed using: * * ```js * const path = require('node:path'); * ``` * @see [source](https://github.com/nodejs/node/blob/v20.2.0/lib/path.js) */ declare module "path" { namespace path { /** * A parsed path object generated by path.parse() or consumed by path.format(). */ interface ParsedPath { /** * The root of the path such as '/' or 'c:\' */ root: string; /** * The full directory path such as '/home/user/dir' or 'c:\path\dir' */ dir: string; /** * The file name including extension (if any) such as 'index.html' */ base: string; /** * The file extension (if any) such as '.html' */ ext: string; /** * The file name without extension (if any) such as 'index' */ name: string; } interface FormatInputPathObject { /** * The root of the path such as '/' or 'c:\' */ root?: string | undefined; /** * The full directory path such as '/home/user/dir' or 'c:\path\dir' */ dir?: string | undefined; /** * The file name including extension (if any) such as 'index.html' */ base?: string | undefined; /** * The file extension (if any) such as '.html' */ ext?: string | undefined; /** * The file name without extension (if any) such as 'index' */ name?: string | undefined; } interface PlatformPath { /** * Normalize a string path, reducing '..' and '.' parts. * When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used. * * @param path string path to normalize. * @throws {TypeError} if `path` is not a string. */ normalize(path: string): string; /** * Join all arguments together and normalize the resulting path. * * @param paths paths to join. * @throws {TypeError} if any of the path segments is not a string. */ join(...paths: string[]): string; /** * The right-most parameter is considered {to}. Other parameters are considered an array of {from}. * * Starting from leftmost {from} parameter, resolves {to} to an absolute path. * * If {to} isn't already absolute, {from} arguments are prepended in right to left order, * until an absolute path is found. If after using all {from} paths still no absolute path is found, * the current working directory is used as well. The resulting path is normalized, * and trailing slashes are removed unless the path gets resolved to the root directory. * * @param paths A sequence of paths or path segments. * @throws {TypeError} if any of the arguments is not a string. */ resolve(...paths: string[]): string; /** * Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory. * * If the given {path} is a zero-length string, `false` will be returned. * * @param path path to test. * @throws {TypeError} if `path` is not a string. */ isAbsolute(path: string): boolean; /** * Solve the relative path from {from} to {to} based on the current working directory. * At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve. * * @throws {TypeError} if either `from` or `to` is not a string. */ relative(from: string, to: string): string; /** * Return the directory name of a path. Similar to the Unix dirname command. * * @param path the path to evaluate. * @throws {TypeError} if `path` is not a string. */ dirname(path: string): string; /** * Return the last portion of a path. Similar to the Unix basename command. * Often used to extract the file name from a fully qualified path. * * @param path the path to evaluate. * @param suffix optionally, an extension to remove from the result. * @throws {TypeError} if `path` is not a string or if `ext` is given and is not a string. */ basename(path: string, suffix?: string): string; /** * Return the extension of the path, from the last '.' to end of string in the last portion of the path. * If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string. * * @param path the path to evaluate. * @throws {TypeError} if `path` is not a string. */ extname(path: string): string; /** * The platform-specific file separator. '\\' or '/'. */ readonly sep: "\\" | "/"; /** * The platform-specific file delimiter. ';' or ':'. */ readonly delimiter: ";" | ":"; /** * Returns an object from a path string - the opposite of format(). * * @param path path to evaluate. * @throws {TypeError} if `path` is not a string. */ parse(path: string): ParsedPath; /** * Returns a path string from an object - the opposite of parse(). * * @param pathObject path to evaluate. */ format(pathObject: FormatInputPathObject): string; /** * On Windows systems only, returns an equivalent namespace-prefixed path for the given path. * If path is not a string, path will be returned without modifications. * This method is meaningful only on Windows system. * On POSIX systems, the method is non-operational and always returns path without modifications. */ toNamespacedPath(path: string): string; /** * Posix specific pathing. * Same as parent object on posix. */ readonly posix: PlatformPath; /** * Windows specific pathing. * Same as parent object on windows */ readonly win32: PlatformPath; } } const path: path.PlatformPath; export = path; } declare module "node:path" { import path = require("path"); export = path; } declare module "node:path/posix" { import path = require("path/posix"); export = path; } declare module "node:path/win32" { import path = require("path/win32"); export = path; }
Close