Affected versions: openSUSE Leap 15.5

📖 ~4 min read  •  Source: SUSE advisory SUSE-SU-2024:1440-1 (see also SUSE bugzilla)

Related CVEs: CVE-2024-1135

Upstream summary: Gunicorn fails to properly validate Transfer-Encoding headers, leading to HTTP Request Smuggling (HRS) vulnerabilities. By crafting requests with conflicting Transfer-Encoding headers, attackers can bypass security restrictions and access restricted endpoints. This issue is due to Gunicorn's handling of Transfer-Encoding headers, where it incorrectly processes requests with multiple, conflicting Transfer-Encoding headers, treating them as chunked regardless of the final encod

Table of contents
  1. Symptom & Impact
  2. Environment & Reproduction
  3. Root Cause Analysis
  4. Quick Triage
  5. Step-by-Step Diagnosis
  6. Solution – Primary Fix
  7. Solution – Alternative Approaches
  8. Verification & Acceptance Criteria
  9. Rollback Plan
  10. Prevention & Hardening
  11. Related Errors & Cross-Refs
  12. References & Further Reading

Symptom & Impact

Nothing visibly changes on an openSUSE Leap 15.5 host until python3-gunicorn is next invoked: it runs, exits and leaves no daemon behind, so there is no restart loop or service log to watch. Exposure is per-invocation, and the invocations that matter are the unattended ones — cron jobs, backup and deployment scripts, CI runners, and anything passing attacker-influenced input such as a remote URL, a supplied archive or an untrusted filename. Where python3-gunicorn is run under sudo or from a privileged job, the same flaw becomes local privilege escalation. python3-gunicorn ships command-line programs that run when invoked and then exit, so there is no unit to restart — systemctl and journalctl -u have nothing to act on; only the next invocation matters.

Environment & Reproduction

Reproduction targets openSUSE Leap 15.5. Confirm release and installed package:

cat /etc/os-release
rpm -q python3-gunicorn
zypper info python3-gunicorn | head -20
zypper lr -E                              # enabled repositories
SUSEConnect --status-text 2>/dev/null || echo 'SCC not connected (optional on openSUSE Leap)'

Exercise the workload that uses python3-gunicorn while collecting:

sudo journalctl -xe --no-pager | tail -200
sudo tail -200 /var/log/zypp/history
sudo journalctl -k | grep -i apparmor | tail -100
# Bundle evidence for SUSE / community support:
sudo supportconfig -R /var/tmp -B python3-gunicorn

Root Cause Analysis

Root cause is documented in SUSE advisory SUSE-SU-2024:1440-1. openSUSE security maintainers shipped fixes in the corresponding python3-gunicorn update for openSUSE Leap 15.5; running an outdated build leaves the host exposed to the failure modes described in the advisory. Correlate zypper history with system logs:

sudo zypper history | grep python3-gunicorn
sudo zypper history --since='-7 days' | tail -40
sudo journalctl -k | grep -i apparmor | tail -100
cat /proc/sys/kernel/tainted   # non-zero = tainted kernel / out-of-tree modules

Quick Triage

Run these on openSUSE Leap 15.5 to capture the current state of python3-gunicorn:

rpm -q python3-gunicorn                              # installed NVR
rpm -V python3-gunicorn                              # verify shipped files
sudo zypper patch-check                    # open patches
sudo zypper lp 2>/dev/null | head
systemctl --failed --no-pager
sudo firewall-cmd --list-all
sudo aa-status                             # AppArmor profiles
rpm -ql python3-gunicorn | grep -E '^/(usr/lib|etc)/systemd/(system|user)/[^/]+\.(service|socket|timer|path|target|mount)$'  # the units python3-gunicorn REALLY ships - NO OUTPUT means it ships no service at all, so never run systemctl on it
rpm -ql python3-gunicorn | grep -E '^/usr/sbin/rc[^/]+$'  # SUSE-only rcNAME compat symlink (it points at /usr/sbin/service, not at a unit): the NAME after 'rc' IS the service name - bind ships /usr/sbin/rcnamed, so the unit is named.service

Step-by-Step Diagnosis

  1. List failed systemd units.

    systemctl --failed --no-pager
  2. Tail the journal for python3-gunicorn and the system bus.

    sudo journalctl -xe -f --no-pager
  3. Inspect firewall posture (firewalld is the default on openSUSE).

    sudo firewall-cmd --list-all-zones --permanent
    sudo nft list ruleset 2>/dev/null | head -50
  4. Surface AppArmor denials and switch the profile to complain mode if needed.

    sudo journalctl -k | grep -i 'apparmor="DENIED"' | tail -30
    sudo aa-status
  5. Verify python3-gunicorn integrity and reinstall if anything is altered.

    sudo rpm -V python3-gunicorn
    sudo zypper verify
    sudo zypper install --force python3-gunicorn
  6. Inspect Snapper snapshots to know exactly which transaction introduced the regression.

    sudo snapper list | tail -20
    sudo snapper status <pre-id>..<post-id>
  7. Correlate findings with /var/log/zypp/history, zypper history, and SUSE advisory SUSE-SU-2024:1440-1 to pin the change that introduced the regression.

Solution – Primary Fix

Apply the corrective zypper transaction referenced by SUSE advisory SUSE-SU-2024:1440-1, then reload affected systemd units:

sudo zypper ref                        # refresh repos
sudo zypper -n patch                   # apply ALL open patches (recommended)
# Or target a single package:
sudo zypper -n update python3-gunicorn
# Unit name may differ from pkg name; check first:
rpm -q python3-gunicorn                           # confirm new NVR

For kernel / glibc / systemd / openssl advisories a reboot is required. Snapper takes pre/post snapshots on Btrfs root automatically, giving a safety net:

sudo zypper ps -s                      # services using deleted libs
sudo snapper list | tail -5            # pre/post snapshots around the patch
sudo systemctl reboot                  # or: sudo shutdown -r now

Need help rolling this patch across an openSUSE fleet? Our IT Solutions & Services team supports openSUSE Leap and Tumbleweed estates with snapper-backed rollback workflows and salt-driven patching. Get in touch for a free consultation.

Solution – Alternative Approaches

If the primary fix is not viable, choose from these:

  • Roll back via Snapper (Btrfs snapshots are taken automatically before zypper transactions on openSUSE Leap 15.5). This is the primary safety net for openSUSE administrators:

    sudo snapper list
    sudo snapper status <pre-id>..<post-id>   # diff between two snapshot numbers
    sudo snapper undochange <pre-id>..<post-id>
    sudo snapper rollback <pre-id>            # boot the host into the chosen snapshot
    sudo systemctl reboot
  • Lock the package so zypper cannot upgrade it:

    sudo zypper al python3-gunicorn                   # add lock
    zypper ll | grep python3-gunicorn                 # list locks
    sudo zypper rl python3-gunicorn                   # remove lock
  • Install an older NVR if a regression is suspected:

    zypper se -s python3-gunicorn                     # show all available versions
    sudo zypper install --oldpackage python3-gunicorn-<older-NVR>
  • Disable the AppArmor profile briefly to confirm policy is the cause, then re-enable:

    # reproduce, capture denials in the journal:
    sudo journalctl -k | grep apparmor | tail
  • openSUSE Leap follows the SUSE Linux Enterprise patch stream. Sync against the official update repository if a mirror has drifted:

    sudo zypper mr -e repo-update          # ensure update repo is enabled
    sudo zypper ref repo-update
    sudo zypper -n patch

Verification & Acceptance Criteria

All of these should pass after the fix:

rpm -q python3-gunicorn                                            # expected fixed NVR
sudo zypper patch-check                                  # 0 critical patches outstanding
sudo firewall-cmd --list-services
sudo aa-status | head -5
sudo zypper ps -s                                        # any services still using deleted libs

The conditions described in the advisory must no longer be reported for python3-gunicorn across two consecutive runs.

Rollback Plan

Capture state before any change. On openSUSE, Snapper is the canonical rollback path:

rpm -qa > /root/rpm-pre.txt
sudo zypper history list > /root/zypper-history-pre.txt
# Snapper takes pre/post snapshots automatically on Btrfs root.
sudo snapper create -d 'pre-patch-python3-gunicorn'   # explicit named snapshot
sudo snapper list | head

To revert if the patch / roll is bad:

# Preferred on Btrfs root — boot the prior snapshot:
sudo snapper list
sudo snapper rollback <pre-id>
sudo systemctl reboot
# Or downgrade just the package:
sudo zypper install --oldpackage python3-gunicorn-<older-NVR>
# Custom AppArmor profile cleanup:

Prevention & Hardening

Reduce the chance of this recurring on openSUSE Leap 15.5:

  • Enable automatic patch installation:

    sudo zypper install -y zypper-automatic
    sudo systemctl enable --now zypper-automatic.timer
    # Or use YaST: yast2 online_update_configuration
  • Subscribe to opensuse-security-announce and watch suse.com/support/update.

  • Lock sensitive packages so they cannot be auto-upgraded:

    sudo zypper al python3-gunicorn
  • Ensure Snapper is enabled on the root subvolume and pre/post hooks run for every zypper transaction. This is the cornerstone of safe openSUSE patching:

    sudo snapper -c root get-config | head
    # Default zypper plugin: /usr/lib/zypp/plugins/commit/snapper.zypp-commit-plugin
    sudo snapper list | tail -10
  • Monitor file integrity with AIDE:

    sudo zypper install -y aide
    sudo aide --init && sudo mv /var/lib/aide/aide.db.new /var/lib/aide/aide.db
    sudo aide --check
  • Keep AppArmor profiles in enforce; review /etc/apparmor.d/ after every package upgrade.

  • Apply CIS / openSUSE hardening guidance and use salt or ansible to enforce baseline state across the fleet.

Issues that commonly surface alongside a python3-gunicorn update: zypper lock contention, systemd unit ordering cycles, AppArmor denials, firewalld zone drift, and kernel taint flags. Useful triage:

sudo zypper ps -s
systemd-analyze critical-chain
sudo journalctl -k | grep apparmor | tail
sudo firewall-cmd --get-active-zones
cat /proc/sys/kernel/tainted
sudo snapper list | tail

View all opensuse-leap-15-5 tutorials on the Tutorials Hub →

Browse all common problems & solutions on the Tutorials Hub.

References & Further Reading

Primary reference: SUSE advisory SUSE-SU-2024:1440-1 (see also SUSE bugzilla). Manual pages useful on openSUSE Leap 15.5:

man zypper
man zypper.conf
man systemctl
man journalctl
man firewall-cmd
man snapper
man apparmor
man aa-status

Other resources: openSUSE documentation, suse.com/security, openSUSE security portal, and per-package notes in /usr/share/doc/packages/python3-gunicorn/ for components implicated in this advisory.


View all openSUSE Leap 15.5 tutorials on the Tutorials Hub →