Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
core /
17284 /
usr /
share /
apport /
package-hooks /
Delete
Unzip
Name
Size
Permission
Date
Action
cloud-init.py
175
B
-rw-r--r--
2025-07-28 18:21
isc-dhcp-client.py
1.75
KB
-rw-r--r--
2016-12-09 17:45
openssh-client.py
1.14
KB
-rw-r--r--
2025-02-18 15:23
openssh-server.py
1011
B
-rw-r--r--
2025-02-18 15:23
source_apparmor.py
2.82
KB
-rw-r--r--
2016-10-04 20:14
source_console-setup.py
374
B
-rw-r--r--
2019-04-10 21:25
source_shadow.py
720
B
-rw-r--r--
2024-02-07 10:59
source_sudo.py
1.13
KB
-rw-r--r--
2025-06-26 17:58
systemd.py
866
B
-rw-r--r--
2023-03-03 04:27
udev.py
455
B
-rw-r--r--
2023-03-03 04:27
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', '--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