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_iojs /
[ HOME SHELL ]
Name
Size
Permission
Action
install already installed uses...
1007
B
-rwxr-xr-x
install from binary
996
B
-rwxr-xr-x
install from source
664
B
-rw-r--r--
install two versions and use t...
924
B
-rwxr-xr-x
install version specified in ....
652
B
-rwxr-xr-x
install version specified in ....
632
B
-rw-r--r--
install while reinstalling pac...
1.13
KB
-rwxr-xr-x
nvm install v1 works
679
B
-rwxr-xr-x
setup_dir
62
B
-rwxr-xr-x
teardown_dir
243
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : install while reinstalling packages
#!/bin/sh die () { echo "$@" ; exit 1; } \. ../../nvm.sh # Remove the stuff we're clobbering. [ -e "${NVM_DIR}/versions/io.js/v1.0.0" ] && rm -R "${NVM_DIR}/versions/io.js/v1.0.0" [ -e "${NVM_DIR}/versions/io.js/v1.0.1" ] && rm -R "${NVM_DIR}/versions/io.js/v1.0.1" # Install from binary nvm install iojs-v1.0.0 # Check [ -d "${NVM_DIR}/versions/io.js/v1.0.0" ] || die "nvm install iojs-v1.0.0 didn't install" node --version | grep v1.0.0 > /dev/null || die "nvm install didn't use iojs-v1.0.0" npm install -g object-is@0.0.0 || die "npm install -g object-is failed" npm list --global | grep object-is > /dev/null || die "object-is isn't installed" nvm ls iojs-1 | grep iojs-v1.0.0 > /dev/null || die "nvm ls iojs-1 didn't show iojs-v1.0.0" nvm install iojs-v1.0.1 --reinstall-packages-from=iojs-1.0.0 || die "nvm install iojs-v1.0.1 --reinstall-packages-from=iojs-1.0.0 failed" [ -d "${NVM_DIR}/versions/io.js/v1.0.1" ] || die "nvm install iojs-v1.0.1 didn't install" nvm use iojs-1 node --version | grep v1.0.1 > /dev/null || die "nvm use iojs-1 didn't use v1.0.1" npm list --global | grep object-is > /dev/null || die "object-is isn't installed"
Close