Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
core22 /
2411 /
usr /
share /
apport /
package-hooks /
Delete
Unzip
Name
Size
Permission
Date
Action
cloud-init.py
176
B
-rw-r--r--
2025-11-16 03:11
cryptsetup.py
1.06
KB
-rw-r--r--
2025-03-08 02:50
isc-dhcp-client.py
1.75
KB
-rw-r--r--
2022-05-05 17:18
openssh-client.py
1.18
KB
-rw-r--r--
2025-04-11 21:05
openssh-server.py
1004
B
-rw-r--r--
2025-04-11 21:05
source_apparmor.py
2.72
KB
-rw-r--r--
2025-08-15 21:17
source_plymouth.py
1.44
KB
-rw-r--r--
2023-01-03 18:56
source_shadow.py
720
B
-rw-r--r--
2020-02-08 00:32
source_sudo.py
1.13
KB
-rw-r--r--
2022-08-03 16:22
systemd.py
871
B
-rw-r--r--
2025-08-27 00:23
udev.py
455
B
-rw-r--r--
2025-08-27 00:23
Save
Rename
'''apport package hook for systemd (c) 2014 Canonical Ltd. Author: Martin Pitt <martin.pitt@ubuntu.com> ''' import os.path import apport.hookutils def add_info(report): apport.hookutils.attach_hardware(report) report['SystemdDelta'] = apport.hookutils.command_output(['systemd-delta']) if not os.path.exists('/run/systemd/system'): return # Add details about all failed units, if any out = apport.hookutils.command_output(['systemctl', '--state=failed', '--full', '--no-legend']).strip() if out: failed = '' for line in out.splitlines(): unit = line.split()[0] if failed: failed += '------\n' failed += apport.hookutils.command_output(['systemctl', 'status', '--full', unit]) report['SystemdFailedUnits'] = failed