Affected versions: Ubuntu 16.04 (xenial)

📖 ~4 min read  •  Source: Ubuntu Security Notice USN-7171-1

Related CVEs: CVE-2017-9841

Upstream summary: It was discovered that PHPUnit incorrectly handled web requests if exposed
to the internet. An attacker could possibly use this issue to achive remote
code execution or obtain sensitive information.

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

phpunit on Ubuntu 16.04 runs only when something invokes it, so there is no crash loop and no failed unit to notice — the exposure is input-driven. A developer build, a CI job, a package rebuild or triage tooling that runs objdump, readelf or gdb across an untrusted binary can hit a malformed section header and corrupt memory inside the toolchain process, running code as the build user. On a shared builder or CI runner that means tampered build output rather than downtime. phpunit is a build-time developer tool that exits when the command finishes, so there is no unit to restart — only in-flight builds and long-lived helpers such as distcc or clangd still hold the old binaries.

Environment & Reproduction

Reproduction targets Ubuntu 16.04 (xenial). Confirm release and installed package:

lsb_release -a
cat /etc/os-release
dpkg -l phpunit | tail -2
apt-cache policy phpunit
uname -r

Exercise the workload that uses phpunit while collecting:

dpkg-query -W -f='${Package} ${Version}\n' phpunit; gcc --version | head -1; ld --version | head -1; as --version | head -1  # record the FIXED toolchain version you are rebuilding with (ld/as come from binutils)
ccache -C && ccache -s  # (pkg: ccache) MUST clear the cache, or the rebuild silently reuses object files produced by the vulnerable compiler and you ship the bug again
make clean; cmake --build build --target clean; ninja -C build -t clean; cargo clean; go clean -cache  # drop stale objects before rebuilding (use whichever applies to the project)
sudo journalctl -xe --no-pager | tail -200
sudo tail -200 /var/log/apt/history.log
sudo tail -200 /var/log/kern.log | grep -i apparmor

Root Cause Analysis

Root cause is documented in Ubuntu Security Notice USN-7171-1. Canonical security maintainers shipped fixes in the corresponding phpunit update for Ubuntu 16.04; running an outdated build leaves the host exposed to the failure modes described in the advisory. On this release the fix typically arrives via the Ubuntu Pro ESM (esm-infra / esm-apps) channels rather than the standard archive. Correlate apt history with the journal:

grep -A2 -B2 phpunit /var/log/apt/history.log
zgrep -A2 -B2 phpunit /var/log/apt/history.log.*.gz 2>/dev/null
cat /proc/sys/kernel/tainted   # non-zero = tainted kernel / out-of-tree modules

Quick Triage

Run these on Ubuntu 16.04 to capture the current state of phpunit:

dpkg -l phpunit | tail -1                  # installed version
dpkg -V phpunit                             # verify shipped files
sudo apt update && apt list --upgradable 2>/dev/null | grep -i security
sudo ufw status verbose 2>/dev/null | head -20
sudo aa-status 2>/dev/null | head -20
# If phpunit ships a service unit (unit/job name often differs from pkg name, e.g.
# bind9→named, apache2→apache2, postgresql-NN→postgresql@NN-main):
dpkg-query -L phpunit 2>/dev/null | grep -E '^/etc/init\.d/[^/]+$'  # legacy SysV init script; its basename is the service name for 'service <name> restart' on non-systemd hosts
systemctl list-unit-files --no-pager --type=service,socket,timer | grep -iF -- 'phpunit'  # fuzzy name match; -F is required because package names contain regex metacharacters ('+' in libstdc++6/g++-13 makes -E fail to match at all)

On xenial the standard archive no longer ships security fixes. Verify Ubuntu Pro ESM coverage:

# `pro` CLI not available on this release; check the older `ubuntu-advantage-tools`:
sudo ua status --format=json 2>/dev/null | head
apt-cache policy | grep -i esm

Step-by-Step Diagnosis

  1. List failing services.

    systemctl --failed --no-pager
  2. Tail the journal / syslog for phpunit.

    sudo journalctl -xe -f --no-pager
  3. Inspect UFW (Uncomplicated Firewall) state.

    sudo ufw status numbered
    sudo ufw show added
    sudo iptables -L -n -v | head -30
  4. Surface AppArmor denials and switch the profile to complain mode if needed.

    sudo journalctl -k 2>/dev/null | grep -i 'apparmor="DENIED"' | tail -30
    sudo aa-status
    # /etc/apparmor.d/usr.bin.phpunit or usr.sbin.phpunit — inspect first
    sudo aa-complain /etc/apparmor.d/usr.bin.phpunit 2>/dev/null || true
  5. Verify phpunit integrity and reinstall if anything is altered.

    sudo dpkg -V phpunit
    sudo debsums -c phpunit 2>/dev/null
    sudo apt install --reinstall -y phpunit
  6. Correlate findings with /var/log/apt/history.log, /var/log/dpkg.log, and Ubuntu Security Notice USN-7171-1 to pin the change that introduced the regression.

Solution – Primary Fix

Apply the corrective apt transaction referenced by Ubuntu Security Notice USN-7171-1, then reload the affected service:

sudo apt update
sudo apt -y install --only-upgrade phpunit
# Service name may differ from pkg name; check first:
dpkg -l phpunit | tail -1            # confirm new version

On xenial the standard archive is past EoL for security; enable Ubuntu Pro ESM to receive the fix:

# Older releases use the `ua` command:
sudo ua attach <token>
sudo ua enable esm-infra
sudo ua enable esm-apps
sudo apt update
sudo apt -y install --only-upgrade phpunit

For kernel / glibc / systemd / openssl advisories a reboot (or Livepatch) is required:

sudo apt install -y needrestart
sudo needrestart -r l       # list units that need restart
sudo systemctl reboot       # or: sudo shutdown -r now

Need help rolling this patch across an Ubuntu fleet? Our IT Solutions & Services team manages Ubuntu patch windows with Landscape and Ubuntu Pro integration. Get in touch for a free consultation.

Solution – Alternative Approaches

If the primary upgrade is not viable, pick from these:

  • Hold the package so apt cannot upgrade it:

    sudo apt-mark hold phpunit
    apt-mark showhold | grep phpunit
    # Release the hold later with:
    sudo apt-mark unhold phpunit
  • Pin a known-good version via apt preferences:

    # /etc/apt/preferences.d/phpunit.pref
    Package: phpunit
    Pin: version <good-version>
    Pin-Priority: 1001
  • Downgrade to an older version if a regression is suspected:

    apt-cache madison phpunit
    sudo apt install --allow-downgrades -y phpunit=<older-version>
  • Investigate AppArmor blocking the new binary; switch to complain briefly, capture denials, then re-enforce:

    sudo aa-complain /etc/apparmor.d/usr.bin.phpunit 2>/dev/null
    # reproduce the failure
    sudo journalctl -k | grep apparmor | tail
    sudo aa-enforce /etc/apparmor.d/usr.bin.phpunit 2>/dev/null
  • Take only the security pocket update and defer the full point-release upgrade:

    sudo apt -y install --only-upgrade -t xenial-security phpunit

Verification & Acceptance Criteria

All of these should pass after the fix is applied:

dpkg -l phpunit | tail -1                                  # expected fixed version
apt list --upgradable 2>/dev/null | grep -i security || echo OK
sudo ufw status numbered | head
sudo aa-status 2>/dev/null | head -5

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

Rollback Plan

Capture state before any change:

apt list --installed 2>/dev/null > /root/apt-pre.txt
dpkg --get-selections > /root/dpkg-pre.txt
# ZFS-on-root (Ubuntu 20.04+ default installer option):
sudo zfs snapshot rpool/ROOT/ubuntu@pre-phpunit
# LVM-on-root:
sudo lvcreate -L 4G -s -n root_pre_patch /dev/<vg>/<root-lv>

To revert:

sudo apt install --allow-downgrades -y phpunit=<old-version>
# Kernel rollback: pick the prior kernel from the GRUB menu, then:
sudo systemctl reboot
# ZFS rollback (rolls the whole root dataset):
sudo zfs rollback -r rpool/ROOT/ubuntu@pre-phpunit

Prevention & Hardening

Reduce the chance of this recurring on Ubuntu 16.04 (xenial):

  • Enable scheduled security updates via unattended-upgrades:

    sudo apt install -y unattended-upgrades update-notifier-common
    sudo dpkg-reconfigure -plow unattended-upgrades
    # /etc/apt/apt.conf.d/50unattended-upgrades:
    Unattended-Upgrade::Allowed-Origins { "${distro_id}:${distro_codename}-security"; };
  • Install needrestart so services restart automatically after library upgrades:

    sudo apt install -y needrestart
    # /etc/needrestart/needrestart.conf -> $nrconf{restart} = 'a';
  • Attach Ubuntu Pro for ESM (mandatory on this past-EoL release) and Livepatch where supported:

    sudo ua attach <token>
    sudo ua enable esm-infra
    sudo ua enable esm-apps
  • Subscribe to ubuntu-security-announce and watch ubuntu.com/security/cves.

  • Monitor file integrity with debsums and AIDE:

    sudo apt install -y debsums aide
    sudo debsums -ca
    sudo aideinit && sudo mv /var/lib/aide/aide.db.new /var/lib/aide/aide.db
    sudo aide --check
  • For estate-wide patching, manage with Canonical Landscape:

    sudo apt install -y landscape-client
    sudo landscape-config
  • Keep AppArmor profiles in enforce mode and apply CIS Ubuntu Linux Benchmark hardening.

Issues that commonly surface alongside a phpunit update: apt lock contention, broken dpkg state, systemd ordering cycles, AppArmor denials, and UFW rule drift. Useful triage:

sudo dpkg --configure -a
sudo apt --fix-broken install
systemd-analyze critical-chain
sudo journalctl -k 2>/dev/null | grep -i apparmor | tail
cat /proc/sys/kernel/tainted

View all ubuntu-16-04 tutorials on the Tutorials Hub →

Browse all common problems & solutions on the Tutorials Hub.

References & Further Reading

Primary reference: Ubuntu Security Notice USN-7171-1. Manual pages useful on Ubuntu 16.04:

man apt
man apt-get
man apt-mark
man dpkg
man systemctl
man journalctl
man ufw
man apparmor
man aa-status
man unattended-upgrades
man ua

Other resources: Ubuntu Security Notices, Ubuntu CVE Tracker, Ubuntu upgrade notes, and per-package notes in /usr/share/doc/phpunit/ for components implicated in this advisory.