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 plymouth Copyright 2010 Canonical Ltd. Authors: Steve Langasek <steve.langasek@ubuntu.com>, Brian Murray <brian@ubuntu.com> ''' from apport.hookutils import * import os.path def _attach_file_filtered(report, path, key=None): '''filter out password from grub configuration''' if not key: key = path_to_key(path) if os.path.exists(path): with open(path,'r') as f: filtered = [l if not l.startswith('password') else '### PASSWORD LINE REMOVED ###' for l in f.readlines()] report[key] = ''.join(filtered) def add_info(report): attach_hardware(report) attach_file(report, '/proc/fb', 'ProcFB') attach_file(report, '/proc/cmdline', 'ProcCmdLine') attach_file(report, '/var/log/boot.log', 'BootLog') debug_log = '/var/log/plymouth-debug.log' if os.path.exists(debug_log): attach_root_command_outputs(report, {'PlymouthDebug': 'cat %s' % debug_log}) _attach_file_filtered(report, '/etc/default/grub', 'EtcDefaultGrub') default_alternative = '/etc/alternatives/default.plymouth' if os.path.exists(default_alternative): report['DefaultPlymouth'] = command_output(['readlink', default_alternative]) text_alternative = '/etc/alternatives/text.plymouth' if os.path.exists(text_alternative): report['TextPlymouth'] = command_output(['readlink', text_alternative])