Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.69
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
.nvm /
test /
slow /
nvm uninstall /
Delete
Unzip
Name
Size
Permission
Date
Action
Running 'nvm uninstall 0.12.6' uninstalls v0.12.6
739
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm uninstall' with incorrect file permissions fails nicely
849
B
-rwxrwxr-x
2025-06-22 16:20
setup_dir
49
B
-rwxrwxr-x
2025-06-22 16:20
teardown_dir
66
B
-rwxrwxr-x
2025-06-22 16:20
Save
Rename
#!/bin/sh die () { echo "$@" ; exit 1; } # Source nvm \. ../../../nvm.sh # Version to install/uninstall NVM_TEST_VERSION=5.10.1 # Make sure it's not already here [ -e ../../../$NVM_TEST_VERSION ] && rm -R ../../../$NVM_TEST_VERSION # Install it nvm install $NVM_TEST_VERSION # Make sure it installed nvm ls | grep "$NVM_TEST_VERSION" || die "Failed to install node" # Install global module as root npm_path=$(which npm) sudo -n "$npm_path" install jspm@'<2' -g || die 'either sudo failed, or `npm install jspm -g` failed`' # Switch to another version so we can uninstall nvm use 0.12.7 # Attempt to uninstall it RETURN_MESSAGE="$(nvm uninstall $NVM_TEST_VERSION 2>&1)" CHECK_FOR="Cannot uninstall, incorrect permissions on installation folder" test "${RETURN_MESSAGE#*$CHECK_FOR}" != "$RETURN_MESSAGE" || die "Failed to show error message"