__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
import os, apport.packaging
from apport.hookutils import *
def add_info(report):
# the crash is not in nautilus code so reassign
if "Stacktrace" in report and "/usr/lib/x86_64-linux-gnu/nautilus" in report["Stacktrace"]:
for words in report["Stacktrace"].split():
if words.startswith("/usr/lib/x86_64-linux-gnu/nautilus"):
report.add_package_info(apport.packaging.get_file_package(words))
return
# collect informations on the nautilus components
plugin_packages = set()
for dirpath, dirnames, filenames in os.walk("/usr/lib/x86_64-linux-gnu/nautilus"):
for filename in filenames:
path = os.path.join(dirpath, filename)
package = apport.packaging.get_file_package(path)
if package == 'nautilus':
continue
plugin_packages.add(package)
report["usr_lib_nautilus"] = package_versions(*sorted(plugin_packages))
attach_gsettings_package(report, 'nautilus-data')