How do I update the OpenVPN install on my raspberryPi?
How do I check the installed version of OpenVPN server?
To get any software updates for your current system, runlawson23 wrote:How do I update the OpenVPN install on my raspberryPi?
Code: Select all
apt-get update && apt-get -y dist-upgradeThere are a number of ways. An easy way is to use apt-cache policy, like thisHow do I check the installed version of OpenVPN server?
Code: Select all
pi@raspi6 ~ $ apt-cache policy openvpn
openvpn:
Installed: 2.3.4-5+deb8u1
Candidate: 2.3.4-5+deb8u1
Version table:
*** 2.3.4-5+deb8u1 0
500 http://mirrordirector.raspbian.org/raspbian/ jessie/main armhf Packages
100 /var/lib/dpkg/status
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
The fixes for that issue are included in version 2.3.4-5+deb8u2. Looking at the latest entry in the Debian changelog /usr/share/doc/openvpn/changelog.Debian.gz:lawson23 wrote:using your command I'm running openvpn Installed: 2.3.4-5+deb8u2 but the latest is 2.4.3 or 2.3.17. So I'm guessing this is because of where I'm getting the packages from do not hold the latest versions. I wanted to update because of the security issues just fixed in OpenVPN a few days ago.
Code: Select all
openvpn (2.3.4-5+deb8u2) jessie-security; urgency=high
* SECURITY UPDATE: authenticated remote DoS vulnerability due to
packet ID rollover. CVE-2017-7479.
Kudos to Steve Beattie <sbeattie@ubuntu.com> for doing all the backporting
work for this patch.
- debian/patches/CVE-2017-7479-prereq.patch: merge
packet_id_alloc_outgoing() into packet_id_write()
- debian/patches/CVE-2017-7479.patch: do not assert when packet ID
rollover occurs
* SECURITY UPDATE: (Closes: #865480)
- CVE-2017-7508.patch. Fix remotely-triggerable ASSERT() on malformed IPv6
packet.
- CVE-2017-7520.patch. Prevent two kinds of stack buffer OOB reads and a
crash for invalid input data.
- CVE-2017-7521.patch. Fix potential double-free in --x509-alt-username.
- CVE-2017-7521bis.patch. Fix remote-triggerable memory leaks.
-- Alberto Gonzalez Iniesta <agi@inittab.org> Thu, 22 Jun 2017 17:25:13 +0200