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 /
rohit20538 /
.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 from source
#!/bin/sh set -ex die () { echo "$@" ; exit 1; } set +e # TODO: fix \. ../../nvm.sh set -e nvm deactivate || die 'deactivate failed' nvm unalias default || die 'unable to unalias default' NVM_TEST_VERSION=v0.10.7 # Remove the stuff we're clobbering. nvm uninstall "${NVM_TEST_VERSION}" || die 'nvm uninstall failed' # Install from source nvm install -s "${NVM_TEST_VERSION}" || die "'nvm install -s ${NVM_TEST_VERSION}' failed" # Check [ -d ../../$NVM_TEST_VERSION ] || die "../../${NVM_TEST_VERSION} is not a directory" nvm run $NVM_TEST_VERSION --version | grep $NVM_TEST_VERSION || "'nvm run ${NVM_TEST_VERSION} --version | grep ${NVM_TEST_VERSION}' failed" # ensure default is set NVM_CURRENT_DEFAULT="$(nvm_alias default)" [ "${NVM_CURRENT_DEFAULT}" = "${NVM_TEST_VERSION}" ] || die "wrong default alias: $(nvm alias)"
Close