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 /
17292 /
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
#!/usr/bin/python '''apport hook for openssh-client (c) 2010 Canonical Ltd. Author: Chuck Short <chuck.short@canonical.com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See http://www.gnu.org/copyleft/gpl.html for the full text of the license. ''' from apport.hookutils import * def add_info(report, ui): response = ui.yesno("The contents of your /etc/ssh/ssh_config file " "may help developers diagnose your bug more " "quickly. However, it may contain sensitive " "information. Do you want to include it in your " "bug report?") if response == None: # user cancelled raise StopIteration elif response == True: attach_conffiles(report, 'openssh-client') attach_related_packages(report, ['ssh-askpass', 'libpam-ssh', 'keychain', 'ssh-askpass-gnome']) report['SSHClientVersion'] = command_output(['/usr/bin/ssh', '-V'])