Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
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
apache2.py
1.77
KB
-rw-r--r--
2020-07-16 00:33
cloud-init.py
175
B
-rw-r--r--
2021-04-21 00:06
cryptsetup.py
259
B
-rw-r--r--
2017-09-06 12:08
isc-dhcp-client.py
1.75
KB
-rw-r--r--
2016-12-09 18:45
openssh-client.py
1.14
KB
-rw-r--r--
2020-05-27 01:17
openssh-server.py
1011
B
-rw-r--r--
2020-05-27 01:17
postfix.py
2.68
KB
-rw-r--r--
2020-07-28 23:11
source_apparmor.py
2.82
KB
-rw-r--r--
2016-10-04 22:14
source_apport.py
569
B
-rw-r--r--
2016-03-31 16:13
source_apport.pyc
830
B
-rw-r--r--
2025-07-15 07:05
source_byobu.py
417
B
-rw-r--r--
2016-04-08 00:05
source_console-setup.py
374
B
-rw-r--r--
2019-04-10 23:25
source_debian-installer.py
1.86
KB
-rw-r--r--
2025-07-11 17:07
source_debian-installer.pyc
2.04
KB
-rw-r--r--
2025-07-15 07:05
source_ghostscript.py
219
B
-rw-r--r--
2021-01-06 20:23
source_grub2.py
3.69
KB
-rw-r--r--
2020-08-24 10:54
source_linux-meta.py
6.04
KB
-rw-r--r--
2025-07-11 17:07
source_linux-meta.pyc
4.39
KB
-rw-r--r--
2025-07-15 07:05
source_linux-nexus7.py
948
B
-rw-r--r--
2025-07-11 17:07
source_linux-nexus7.pyc
1.11
KB
-rw-r--r--
2025-07-15 07:05
source_linux.py
6.04
KB
-rw-r--r--
2025-07-11 17:07
source_linux.pyc
4.38
KB
-rw-r--r--
2025-07-15 07:05
source_mdadm.py
2.05
KB
-rw-r--r--
2017-11-08 14:18
source_mysql-5.7.py
2.46
KB
-rw-r--r--
2017-02-03 18:32
source_ntp.py
485
B
-rw-r--r--
2020-01-07 16:08
source_plymouth.py
1.26
KB
-rw-r--r--
2018-05-09 13:58
source_samba.py
5.97
KB
-rw-r--r--
2021-04-14 18:00
source_shadow.py
720
B
-rw-r--r--
2019-03-26 20:34
source_sudo.py
1.13
KB
-rw-r--r--
2021-01-20 18:08
source_ubiquity.py
7.38
KB
-rw-r--r--
2025-07-11 17:07
source_ubiquity.pyc
5.98
KB
-rw-r--r--
2025-07-15 07:05
source_ubuntu-release-upgrader.py
2.07
KB
-rw-r--r--
2019-10-02 16:08
source_unattended-upgrades.py
705
B
-rw-r--r--
2021-02-24 02:21
source_update-manager.py
1.21
KB
-rw-r--r--
2019-08-20 13:59
systemd.py
866
B
-rw-r--r--
2021-04-02 17:50
udev.py
455
B
-rw-r--r--
2021-04-02 17:50
ureadahead.py
475
B
-rw-r--r--
2019-04-23 17:22
Save
Rename
#!/usr/bin/python '''Samba Apport interface Copyright (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. ''' import os import subprocess from apport.hookutils import * def recent_smblog(pattern): '''Extract recent messages from log.smbd or messages which match a regex pattern should be a "re" object. ''' lines = '' if os.path.exists('/var/log/samba/log.smbd'): file = '/var/log/samba/log.smbd' else: return lines for line in open(file): if pattern.search(line): lines += line return lines def recent_nmbdlog(pattern): ''' Extract recent messages from log.nmbd or messages which match regex pattern should be a "re" object. ''' lines = '' if os.path.exists('/var/log/samba/log.nmbd'): file = '/var/log/samba/log.nmbd' else: return lines for line in open(file): if pattern.search(line): lines += line return lines def add_info(report, ui): packages = ['samba', 'samba-common-bin', 'samba-common', 'samba-tools', 'smbclient', 'swat', 'samba-doc', 'samba-doc-pdf', 'smbfs', 'libpam-smbpass', 'libsmbclient', 'libsmbclient-dev', 'winbind', 'samba-dbg', 'libwbclient0'] versions = '' for package in packages: try: version = packaging.get_version(package) except ValueError: version = 'N/A' if version is None: version = 'N/A' versions += '%s %s\n' %(package, version) report['SambaInstalledVersions'] = versions # Interactive report # start by checking if /etc/samba/smb.conf exists if not os.path.exists ('/etc/samba/smb.conf'): ui.information("The configuration file '/etc/samba/smb.conf' does not exist. This file, and its contents, are critical for the operation of the SAMBA package(s). A common situation for this is:\n * you removed (but did not purge) SAMBA;\n * later on, you (or somebody) manually deleted '/etc/samba/smb.conf;\n * you reinstalled SAMBA.\nAs a result, this file is *not* reinstalled. If this is your case, please purge samba-common (e.g., sudo apt-get purge samba-common) and then reinstall SAMBA.\nYou may want to check other sources, like: https://answers.launchpad.net, https://help.ubuntu.com, and http://ubuntuforums.org. Please press any key to end apport's bug collection.") raise StopIteration # we are out ui.information("As a part of the bug reporting process, you'll be asked as series of questions to help provide a more descriptive bug report. Please answer the following questions to the best of your abilities. Afterwards, a browser will be opened to finish filing this as a bug in the Launchpad bug tracking system.") response = ui.choice("How would you best describe your setup?", ["I am running a Windows File Server.", "I am connecting to a Windows File Server."], False) if response == None: raise StopIteration # user has canceled elif response[0] == 0: #its a server response = ui.yesno("Did this used to work properly with a previous release?") if response == None: # user has canceled raise StopIteration if response == False: report['SambaServerRegression'] = "No" if response == True: report['SambaServerRegression'] = 'Yes' response = ui.choice("Which clients are failing to connect?", ["Windows", "Ubuntu", "Both", "Other"], False) if response == None: raise StopIteration # user has canceled if response[0] == 0: report['UbuntuFailedConnect'] = 'Yes' if response[0] == 1: report['WindowsFailedConnect'] = 'Yes' if response[0] == 2: report['BothFailedConnect'] = 'Yes' if response[0] == 3: report['OtherFailedConnect'] = 'Yes' response = ui.yesno("The contents of your /etc/samba/smb.conf 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: raise StopIteration if response == False: report['SmbConfIncluded'] = 'No' if response == True: report['SmbConfIncluded'] = 'Yes' attach_file_if_exists(report, '/etc/samba/smb.conf', key='SMBConf') response = ui.yesno("The contents of your /var/log/samba/log.smbd and /var/log/samba/log.nmbd 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: raise StopIteration elif response == False: ui.information("The contents of your /var/log/samba/log.smbd and /var/log/samba/log.nmbd will NOT be included in the bug report.") elif response == True: sec_re = re.compile('failed', re.IGNORECASE) report['SmbLog'] = recent_smblog(sec_re) report['NmbdLog'] = recent_nmbdlog(sec_re) elif response[0] == 1: #its a client response = ui.yesno("Did this used to work properly with a previous release?") if response == None: #user has canceled raise StopIteration if response == False: report['SambaClientRegression'] = "No" if response == True: report['SambaClientRegression'] = "Yes" response = ui.choice("How is the remote share accessed from the Ubuntu system?", ["Nautilus (or other GUI Client)", "smbclient (from the command line)", "cifs filesystem mount (from /etc/fstab or a mount command)"], False) if response == None: #user has canceled raise StopIteration if response[0] == 0: attach_related_packages(report, ['nautilus', 'gvfs']) if response[0] == 1: ui.information("Please attach the output of 'smbclient -L localhost' to the end of this bug report.") if response[0] == 2: report['CIFSMounts'] = command_output(['mount', '|', 'grep', 'cifs']) if os.path.exists('/proc/fs/cifs/DebugData'): report['CifsVersion'] = command_output(['cat', '/proc/fs/cifs/DebugData']) ui.information("After apport finishes collecting information, please document your steps to reproduce the issue when filling out the bug report.")