Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
apport /
package-hooks /
Delete
Unzip
Name
Size
Permission
Date
Action
openssh-client.py
1.18
KB
-rw-r--r--
2025-02-14 13:06
openssh-server.py
1004
B
-rw-r--r--
2025-02-14 13:06
source_apparmor.py
2.72
KB
-rw-r--r--
2023-02-14 11:49
source_grub2.py
3.79
KB
-rw-r--r--
2023-10-02 14:11
source_mariadb.py
1.91
KB
-rw-r--r--
2025-02-19 00:56
source_nginx.py
647
B
-rw-r--r--
2025-02-17 19:40
source_sudo.py
1.13
KB
-rwxr-xr-x
2023-06-27 11:45
Save
Rename
'''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 ( attach_conffiles, attach_related_packages, command_output, ) 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: 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'])