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
#!/usr/bin/python3 '''Apport package hook for sudo (c) 2010 Canonical Ltd. Contributors: Marc Deslauriers <marc.deslauriers@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/sudoers 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: # This needs to be run as root report['Sudoers'] = root_command_output(['/bin/cat', '/etc/sudoers']) report['VisudoCheck'] = root_command_output(['/usr/sbin/visudo', '-c']) elif response == False: ui.information("The contents of your /etc/sudoers will NOT be included in the bug report.")