[BACK]Return to errata27.html CVS log [TXT][DIR] Up to [local] / www

Annotation of www/errata27.html, Revision 1.69

1.33      naddy       1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
1.1       deraadt     2: <html>
                      3: <head>
                      4: <title>OpenBSD 2.7 errata</title>
                      5: <meta name="resource-type" content="document">
                      6: <meta name="description" content="the OpenBSD CD errata page">
                      7: <meta name="keywords" content="openbsd,cd,errata">
                      8: <meta name="distribution" content="global">
1.37      henning     9: <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
1.1       deraadt    10: </head>
                     11:
1.38      david      12: <body bgcolor="#ffffff" text="#000000" link="#23238E">
1.1       deraadt    13:
1.28      jsyn       14: <a href="index.html"><img alt="[OpenBSD]" height="30" width="141" src="images/smalltitle.gif" border="0"></a>
1.33      naddy      15: <h2><font color="#0000e0">
1.1       deraadt    16: This is the OpenBSD 2.7 release errata &amp; patch list:
                     17:
                     18: </font></h2>
                     19:
                     20: <hr>
                     21: <a href=stable.html>For OpenBSD patch branch information, please refer here.</a><br>
1.30      deraadt    22: <br>
1.31      deraadt    23: For errata on a certain release, click below:<br>
1.30      deraadt    24: <a href="errata21.html">2.1</a>,
                     25: <a href="errata22.html">2.2</a>,
                     26: <a href="errata23.html">2.3</a>,
                     27: <a href="errata24.html">2.4</a>,
                     28: <a href="errata25.html">2.5</a>,
                     29: <a href="errata26.html">2.6</a>,
                     30: <a href="errata28.html">2.8</a>,
                     31: <a href="errata29.html">2.9</a>,
                     32: <a href="errata30.html">3.0</a>,
                     33: <a href="errata31.html">3.1</a>,
1.35      deraadt    34: <a href="errata32.html">3.2</a>,
1.36      david      35: <a href="errata33.html">3.3</a>,
1.40      david      36: <a href="errata34.html">3.4</a>,
1.41      miod       37: <a href="errata35.html">3.5</a>,
1.42      deraadt    38: <a href="errata36.html">3.6</a>,
1.65      deraadt    39: <a href="errata37.html">3.7</a>,
1.50      deraadt    40: <br>
1.44      deraadt    41: <a href="errata38.html">3.8</a>,
1.45      deraadt    42: <a href="errata39.html">3.9</a>,
1.46      deraadt    43: <a href="errata40.html">4.0</a>,
1.48      merdely    44: <a href="errata41.html">4.1</a>,
1.49      deraadt    45: <a href="errata42.html">4.2</a>,
1.50      deraadt    46: <a href="errata43.html">4.3</a>,
1.52      deraadt    47: <a href="errata44.html">4.4</a>,
1.53      deraadt    48: <a href="errata45.html">4.5</a>,
1.54      deraadt    49: <a href="errata46.html">4.6</a>,
1.56      deraadt    50: <a href="errata47.html">4.7</a>,
1.57      miod       51: <a href="errata48.html">4.8</a>,
1.58      nick       52: <a href="errata49.html">4.9</a>,
1.59      sthen      53: <a href="errata50.html">5.0</a>,
1.60      deraadt    54: <a href="errata51.html">5.1</a>,
1.61      deraadt    55: <a href="errata52.html">5.2</a>,
1.62      deraadt    56: <a href="errata53.html">5.3</a>,
1.65      deraadt    57: <br>
1.63      deraadt    58: <a href="errata54.html">5.4</a>,
                     59: <a href="errata55.html">5.5</a>.
1.30      deraadt    60: <br>
1.1       deraadt    61: <hr>
                     62:
1.55      sthen      63: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7.tar.gz">
1.1       deraadt    64: You can also fetch a tar.gz file containing all the following patches</a>.
                     65: This file is updated once a day.
1.66      deraadt    66: <p>
1.1       deraadt    67:
1.66      deraadt    68: The patches below are available in CVS via the
1.1       deraadt    69: <code>OPENBSD_2_7</code> <a href="stable.html">patch branch</a>.
1.66      deraadt    70: <p>
1.1       deraadt    71:
1.66      deraadt    72: For more detailed information on how to install patches to OpenBSD, please
                     73: consult the <a href="./faq/faq10.html#Patches">OpenBSD FAQ</a>.
1.1       deraadt    74: <p>
1.66      deraadt    75:
1.1       deraadt    76: <hr>
                     77:
                     78: <ul>
1.37      henning    79: <li><a name="readline"></a>
1.69    ! deraadt    80: <font color="#009000"><strong>040: SECURITY FIX: Mar 18, 2001</strong></font>
        !            81: &nbsp; <i>All architectures</i><br>
1.16      horacio    82: The readline library shipped with OpenBSD allows history files creation
                     83: with a permissive
1.33      naddy      84: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=umask&amp;sektion=2">umask(2)</a>.
1.16      horacio    85: This can lead to the leakage of sensitive information in applications
                     86: that use passwords and the like during user interaction (one such
                     87: application is mysql).  Additionally, if the HOME environment variable
                     88: is not set, the current working directory is used; this patch disables
                     89: the history file if HOME is not set.<br>
1.66      deraadt    90: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/040_readline.patch">
                     91: A source code patch exists which remedies this problem.</a>
1.13      millert    92: <p>
1.37      henning    93: <li><a name="sudo"></a>
1.69    ! deraadt    94: <font color="#009000"><strong>039: SECURITY FIX: Feb 22, 2001</strong></font>
        !            95: &nbsp; <i>All architectures</i><br>
1.20      millert    96: There is an exploitable heap corruption bug in
1.33      naddy      97: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sudo&amp;sektion=8">sudo</a>.
1.21      jufi       98: <br>
1.66      deraadt    99: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/038_named.patch">
                    100: A source code patch exists which remedies this problem.</a>
1.11      jason     101: <p>
1.37      henning   102: <li><a name="ftpd"></a>
1.69    ! deraadt   103: <font color="#009000"><strong>037: SECURITY FIX: Dec 4, 2000</strong></font>
        !           104: &nbsp; <i>All architectures</i><br>
1.7       millert   105: OpenBSD 2.7's ftpd contains a one-byte overflow in the replydirname() function.<br>
1.55      sthen     106: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/037_ftpd.patch">
1.66      deraadt   107: A source code patch exists which remedies this problem.</a>
1.7       millert   108: <p>
1.68      deraadt   109: <li><a name="qe"> </a>
                    110: <font color="#009000"><strong>036: RELIABILITY FIX: Nov 17, 2000</strong></font><br>
                    111: Configuring a qec+qe causes a NMI panic.<br>
                    112: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/sparc/036_qe.patch">
                    113: A source code patch exists which remedies this problem.</a>
                    114: <p>
1.37      henning   115: <li><a name="sshforwarding"> </a>
1.69    ! deraadt   116: <font color="#009000"><strong>035: SECURITY FIX: Nov 10, 2000</strong></font>
        !           117: &nbsp; <i>All architectures</i><br>
1.4       deraadt   118: Hostile servers can force OpenSSH clients to do agent or X11 forwarding.
                    119: This problem is fixed as of OpenSSH 2.3.0.<br>
1.55      sthen     120: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/035_sshforwarding.patch">
1.3       deraadt   121: A source code patch exists which remedies this problem.</a>
                    122: <p>
1.68      deraadt   123: <li><a name="zsconsole"> </a>
                    124: <font color="#009000"><strong>034: RELIABILITY FIX: Nov 10, 2000</strong></font><br>
                    125: When running a sparc with a serial console, certain types of interrupts would
                    126: cause great grief.<br>
                    127: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/sparc/034_zsconsole.patch">
                    128: A source code patch exists which remedies this problem.</a>
                    129: <p>
1.37      henning   130: <li><a name="execsubr"> </a>
1.69    ! deraadt   131: <font color="#009000"><strong>033: RELIABILITY FIX: Nov 6, 2000</strong></font>
        !           132: &nbsp; <i>All architectures</i><br>
1.2       aaron     133: Invalid fields in the exec header could cause a crash.<br>
1.55      sthen     134: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/033_execsubr.patch">
1.2       aaron     135: A source code patch exists which remedies this problem.</a>
                    136: <p>
1.37      henning   137: <li><a name="xtrans"> </a>
1.69    ! deraadt   138: <font color="#009000"><strong>032: SECURITY FIX: Oct 26, 2000</strong></font>
        !           139: &nbsp; <i>All architectures</i><br>
1.1       deraadt   140: There are two possibly exploitable potential buffer overflows in the X11
                    141: libraries using the xtrans code. One of these vulnerabilities was
1.63      deraadt   142: reported to the
1.1       deraadt   143: <a href="http://www.securityfocus.com/archive/1/139436">BUGTRAQ</a>
1.63      deraadt   144: mailing list.
1.1       deraadt   145: <br>
1.55      sthen     146: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/032_xtrans.patch">
1.1       deraadt   147: A source code patch exists which remedies this problem.</a>
                    148: <p>
1.37      henning   149: <li><a name="httpd"></a>
1.69    ! deraadt   150: <font color="#009000"><strong>031: SECURITY FIX: Oct 18, 2000</strong></font>
        !           151: &nbsp; <i>All architectures</i><br>
1.63      deraadt   152: Apache has several bugs in <tt>mod_rewrite</tt> and <tt>mod_vhost_alias</tt>
                    153: that could cause arbitrary files accessible to the www user on the server
1.1       deraadt   154: to be exposed under certain configurations when these modules are used.
                    155: (These modules are not active by default).
                    156: <br>
1.55      sthen     157: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/031_httpd.patch">
1.1       deraadt   158: A source code patch exists which remedies this problem.</a>
                    159: <p>
1.37      henning   160: <li><a name="telnetd"></a>
1.69    ! deraadt   161: <font color="#009000"><strong>030: SECURITY FIX: Oct 10, 2000</strong></font>
        !           162: &nbsp; <i>All architectures</i><br>
1.1       deraadt   163: The telnet daemon does not strip out the TERMINFO, TERMINFO_DIRS, TERMPATH
                    164: and TERMCAP (when it starts with a '/') environment variables.
                    165: <br>
1.55      sthen     166: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/030_telnetd.patch">
1.1       deraadt   167: A source code patch exists which remedies this problem.</a>
                    168: <p>
1.37      henning   169: <li><a name="sendmail"></a>
1.69    ! deraadt   170: <font color="#009000"><strong>029: RELIABILITY FIX: Oct 9, 2000</strong></font>
        !           171: &nbsp; <i>All architectures</i><br>
1.1       deraadt   172: There is a non-exploitable buffer overflow in sendmail's test mode.
                    173: <br>
1.55      sthen     174: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/029_sendmail.patch">
1.1       deraadt   175: A source code patch exists which remedies this problem.</a>
                    176: <p>
1.37      henning   177: <li><a name="format_strings"></a>
1.69    ! deraadt   178: <font color="#009000"><strong>028: SECURITY FIX: Oct 6, 2000</strong></font>
        !           179: &nbsp; <i>All architectures</i><br>
1.1       deraadt   180: There are printf-style format string bugs in several privileged programs.
                    181: <br>
1.55      sthen     182: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/028_format_strings.patch">
1.1       deraadt   183: A source code patch exists which remedies this problem.</a>
                    184: <p>
1.37      henning   185: <li><a name="curses"></a>
1.69    ! deraadt   186: <font color="#009000"><strong>027: SECURITY FIX: Oct 6, 2000</strong></font>
        !           187: &nbsp; <i>All architectures</i><br>
1.1       deraadt   188: libcurses honored terminal descriptions in the $HOME/.terminfo directory
                    189: as well as in the TERMCAP environment variable for setuid and setgid
                    190: applications.
                    191: <br>
1.55      sthen     192: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/027_curses.patch">
1.1       deraadt   193: A source code patch exists which remedies this problem.</a>
                    194: <p>
1.37      henning   195: <li><a name="talkd"></a>
1.69    ! deraadt   196: <font color="#009000"><strong>026: SECURITY FIX: Oct 6, 2000</strong></font>
        !           197: &nbsp; <i>All architectures</i><br>
1.1       deraadt   198: A format string vulnerability exists in talkd(8).  It is not clear
                    199: yet what the impact is.
                    200: <br>
1.55      sthen     201: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/026_talkd.patch">
1.1       deraadt   202: A source code patch exists which remedies this problem.</a>
                    203: <p>
1.37      henning   204: <li><a name="pw_error"></a>
1.69    ! deraadt   205: <font color="#009000"><strong>025: SECURITY FIX: Oct 3, 2000</strong></font>
        !           206: &nbsp; <i>All architectures</i><br>
1.1       deraadt   207: A format string vulnerability exists in the pw_error(3) function.  This
                    208: manifests itself as a security hole in the chpass utility.  As a workaround
                    209: which disables its functionality, do
                    210: <pre>
                    211: # chmod u-s /usr/bin/chpass
                    212: </pre>
1.55      sthen     213: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/025_pw_error.patch">
1.1       deraadt   214: A source code patch exists which remedies this problem.</a>
                    215: <p>
1.37      henning   216: <li><a name="ipsec"></a>
1.69    ! deraadt   217: <font color="#009000"><strong>024: SECURITY FIX: Sep 18, 2000</strong></font>
        !           218: &nbsp; <i>All architectures</i><br>
1.1       deraadt   219: Bad ESP/AH packets could cause a crash under certain conditions.
1.55      sthen     220: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/024_ipsec.patch"><br>
1.1       deraadt   221: A source code patch exists which remedies this problem.</a>
                    222: <p>
1.37      henning   223: <li><a name="xlock"></a>
1.69    ! deraadt   224: <font color="#009000"><strong>023: SECURITY FIX: Aug 16, 2000</strong></font>
        !           225: &nbsp; <i>All architectures</i><br>
1.1       deraadt   226: A format string vulnerability exists in xlock. As a workaround which disables
                    227: its functionality, do
                    228: <pre>
                    229: # chmod u-s /usr/X11R6/bin/xlock
                    230: </pre>
1.55      sthen     231: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/023_xlock.patch">
1.1       deraadt   232: A source code patch exists which remedies this problem.</a>
                    233: <p>
1.68      deraadt   234: <li><a name="mac68k_arandom"></a>
                    235: <font color="#009000"><strong>022: INSTALLATION FIX: July 14, 2000</strong></font>
                    236: <br>
                    237: The MacOS installer shipped with OpenBSD 2.7 does not correctly make all
                    238: devices, specifically it does not make the <tt>/dev/arandom</tt> device
                    239: needed for the userland crypto such as ssh to work.  The problem shows itself
                    240: when ssh-keygen fails to make RSA or DSA keys, resulting in messages like
                    241: <b>RSA-generate_keys failed</b> or <b>DSA-generate_keys failed</b>.
                    242: <br>
                    243: To work around this, once your machine is up and running run the following
                    244: commands as root:
                    245: <pre>
                    246: # cd /dev
                    247: # ./MAKEDEV arandom
                    248: </pre>
                    249: <p>
                    250: After doing this (and possibly installing one of the ssl27 packages),
                    251: reboot your machine and it will generate ssh keys correctly.
                    252: <p>
1.37      henning   253: <li><a name="X11_libs"></a>
1.69    ! deraadt   254: <font color="#009000"><strong>021: SECURITY FIX: July 14, 2000</strong></font>
        !           255: &nbsp; <i>All architectures</i><br>
1.1       deraadt   256: Various problems in X11 libraries have various side effects.  We provide a
                    257: jumbo patch to fix them.<p>
                    258: <ul>
1.33      naddy     259:     <li><a href="http://www.securityfocus.com/templates/archive.pike?list=1&amp;date=2000-05-15&amp;msg=Pine.LNX.4.21.0005181947210.17658-100000@ferret.lmh.ox.ac.uk">
1.1       deraadt   260:     Nasty X Server Dos</a><br>
                    261:     This is fixed by the patch to <b>xc/programs/Xsever/os/secauth.c</b>.
1.33      naddy     262:     <li><a href="http://www.securityfocus.com/templates/archive.pike?list=1&amp;date=2000-06-15&amp;msg=Pine.LNX.4.21.0006192251480.9945-100000@ferret.lmh.ox.ac.uk">
1.1       deraadt   263:     Various nasty libX11 holes</a><br>
                    264:     This is covered by the patches to <b>xc/lib/X11</b>.
1.33      naddy     265:     <li><a href="http://www.securityfocus.com/templates/archive.pike?list=1&amp;date=2000-06-15&amp;msg=Pine.LNX.4.21.0006192220220.9945-100000@ferret.lmh.ox.ac.uk">
1.1       deraadt   266:     libICE DoS</a><br>
                    267:     This is covered by the patches to <b>xc/lib/ICE</b>.
1.33      naddy     268:     <li><a href="http://www.securityfocus.com/templates/archive.pike?list=1&amp;date=2000-04-15&amp;msg=Pine.LNX.4.10.10004161835150.863-100000@localhost">
1.1       deraadt   269:     Server overflow</a><br>
                    270:     This is covered by the patches to <b>xc/programs/Xserver/xkb</b>.
                    271:     <br>
1.34      deraadt   272:     Note that the default OpenBSD install is not vulnerable to this, since
1.1       deraadt   273:     the XFree86 Xwrapper already has tests for bad arguments.
                    274: </ul>
                    275: <br>
1.55      sthen     276: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/021_X11_libs.patch">
1.66      deraadt   277: A source code patch exists which remedies this problem.</a>
1.1       deraadt   278: <strong>Note 1:</strong> tcl/tk is required to build X11 from source.<br>
                    279: <strong>Note 2:</strong> When re-building use the command
                    280: `make DESTDIR=/ build' or you will get an error in the last
                    281: step of the build (makewhatis).  If you forget to set DESTDIR you can
                    282: ignore the build error.   The whatis database will be rebuilt the next
                    283: time /etc/weekly runs.
                    284: <p>
1.68      deraadt   285: <li><a name="pmax_msgbuf"></a>
                    286: <font color="#009000"><strong>020: KERNEL BUG: July 10, 2000</strong></font><br>
                    287: As originally shipped, the pmax port would fail to install due to
                    288: <b>/kern/msgbuf</b> bugs.<br>
                    289: The necessary fixes have been merged,
                    290: and the binaries needed re-released on the FTP site.<br>
                    291: However, the 2.7 <b>srcsys.tar.gz</b> file has not been updated.<br>
                    292: If you recompile a kernel, you should use either the
                    293: <a href=stable.html>stable release source tree</a> or apply the
                    294: provided patch to a 2.7 source tree.
                    295: <br>
                    296: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/pmax/020_pmax_msgbuf.patch">
                    297: A source code patch exists which remedies this problem.</a>
                    298: <p>
1.37      henning   299: <li><a name="ftpd"></a>
1.69    ! deraadt   300: <font color="#009000"><strong>019: SECURITY FIX: July 5, 2000</strong></font>
        !           301: &nbsp; <i>All architectures</i><br>
1.63      deraadt   302: Just like pretty much all the other unix ftp daemons on the planet,
1.1       deraadt   303: ftpd had a remote root hole in it.  Luckily, ftpd was not enabled by default.
                    304: The problem exists if anonymous ftp is enabled.
                    305: <br>
1.55      sthen     306: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/019_ftpd.patch">
1.1       deraadt   307: A source code patch exists which remedies this problem.</a>
                    308: <p>
1.37      henning   309: <li><a name="mopd"></a>
1.69    ! deraadt   310: <font color="#009000"><strong>018: SECURITY FIX: July 5, 2000</strong></font>
        !           311: &nbsp; <i>All architectures</i><br>
1.1       deraadt   312: Mopd contained a buffer overflow.
                    313: <br>
1.55      sthen     314: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/018_mopd.patch">
1.1       deraadt   315: A source code patch exists which remedies this problem.</a>
                    316: <p>
1.37      henning   317: <li><a name="screen"></a>
1.69    ! deraadt   318: <font color="#009000"><strong>017: INSTALLATION FIX: July 3, 2000</strong></font>
        !           319: &nbsp; <i>All architectures</i><br>
1.63      deraadt   320: The screen package shipped with 2.7 does not install itself properly.  The
                    321: existing package in 2.7/packages/_ARCH_/screen-3.9.5.tgz has been renamed to
                    322: screen-3.9.5.tgz.old and a replacement package has been provided under the
1.1       deraadt   323: name screen-3.9.5p1.tgz.
                    324: <br>
1.55      sthen     325: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/ports/017_screen.patch">
1.1       deraadt   326: A source code patch exists which remedies this problem.</a>
                    327: <p>
1.68      deraadt   328: <li><a name="xlhash"></a>
                    329: <font color="#009000"><strong>016: DRIVER BUG: July 2, 2000</strong></font><br>
                    330: The <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=xl&amp;sektion=4">xl(4)</a>
                    331: driver supporting various 3com cards, had a bug which prevented the multicast
                    332: filter from working correctly on the 3c905B, thus preventing many IPv6 things
                    333: from working.
                    334: <br>
                    335: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/i386/016_xlhash.patch">
                    336: A source code patch exists which remedies this problem.</a>
                    337: <p>
                    338: <li><a name="ste"></a>
                    339: <font color="#009000"><strong>015: DRIVER BUG: June 30, 2000</strong></font><br>
                    340: The <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ste&amp;sektion=4">ste(4)</a>
                    341: driver supporting Ethernet cards based on the Sundance ST201 chipset
                    342: (i.e., the D-Link 550TX) has a bug which causes the machine to panic at
                    343: boot-time.
                    344: <br>
                    345: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/i386/015_ste.patch">
                    346: A source code patch exists which remedies this problem.</a>
                    347: <p>
                    348: <li><a name="pcvt"></a>
                    349: <font color="#009000"><strong>014: DRIVER BUG: June 30, 2000</strong></font><br>
                    350: The PC console driver (PCVT) has two bugs. Display problems can result if
                    351: reverse video mode is turned on or off twice in a row. This patch also
                    352: fixes a problem with scrolling region handling that has been seen by many
                    353: users trying to use the BitchX irc client with the screen program.<br>
                    354: <br>
                    355: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/i386/014_pcvt.patch">
                    356: A source code patch exists which remedies this problem.</a>
                    357: This is the second revision of the patch.
                    358: <p>
1.37      henning   359: <li><a name="libedit"></a>
1.69    ! deraadt   360: <font color="#009000"><strong>013: SECURITY FIX: June 28, 2000</strong></font>
        !           361: &nbsp; <i>All architectures</i><br>
1.1       deraadt   362: libedit would check for a <b>.editrc</b> file in the current directory.
                    363: That behaviour is not nice; this does not turn into a security problem in
                    364: any real world situation that we know of, but a patch is available anyways.
                    365: <br>
1.55      sthen     366: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/013_libedit.patch">
1.1       deraadt   367: A source code patch exists which remedies this problem.</a>
                    368: <p>
1.37      henning   369: <li><a name="dhclient"></a>
1.69    ! deraadt   370: <font color="#009000"><strong>012: SECURITY FIX: June 24, 2000</strong></font>
        !           371: &nbsp; <i>All architectures</i><br>
1.1       deraadt   372: A serious bug in dhclient(8) could allow strings from a malicious dhcp
                    373: server to be executed in the shell as root.
                    374: <br>
1.55      sthen     375: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/012_dhclient.patch">
1.1       deraadt   376: A source code patch exists which remedies this problem.</a>
                    377: <p>
1.68      deraadt   378: <li><a name="if_an"></a>
                    379: <font color="#009000"><strong>011: DRIVER BUG: June 17, 2000</strong></font><br>
                    380: The <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=an&amp;sektion=4">an(4)</a>
                    381: Aironet Communications 4500/4800 IEEE 802.11DS driver has a bug which prevents
                    382: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ancontrol&amp;sektion=8">ancontrol(8)</a> from working correctly, instead causing a panic.
                    383: <br>
                    384: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/i386/011_an.patch">
                    385: A source code patch exists which remedies this problem.</a>
                    386: <p>
                    387: <li><a name="amiga_cd"></a>
                    388: <font color="#009000"><strong>010: CD DISTRIBUTION ERROR: June 15, 2000</strong></font><br>
                    389: On the 2.7 CD media, the <b>amiga</b> distribution contains two pairs of archives
                    390: files for installation, ie:
                    391: <pre>
                    392: -rw-r--r--  1 root  mirftp  20191465 Apr 29 14:27 base27.tar.gz
                    393: -rw-r--r--  1 root  mirftp  20291753 May 13 19:33 base27.tgz
                    394: -rw-r--r--  1 root  mirftp  13699507 Apr 29 14:26 comp27.tar.gz
                    395: -rw-r--r--  1 root  mirftp  13748096 May 13 19:33 comp27.tgz
                    396: -rw-r--r--  1 root  mirftp   1005376 Apr 29 14:26 etc27.tar.gz
                    397: -rw-r--r--  1 root  mirftp   1010772 May 13 19:33 etc27.tgz
                    398: -rw-r--r--  1 root  mirftp   2755567 Apr 29 14:26 game27.tar.gz
                    399: -rw-r--r--  1 root  mirftp   2755624 May 13 19:33 game27.tgz
                    400: -rw-r--r--  1 root  mirftp   5002872 Apr 29 14:26 man27.tar.gz
                    401: -rw-r--r--  1 root  mirftp   5038896 May 13 19:33 man27.tgz
                    402: -rw-r--r--  1 root  mirftp   1684356 Apr 29 14:26 misc27.tar.gz
                    403: -rw-r--r--  1 root  mirftp   1684381 May 13 19:33 misc27.tgz
                    404: </pre>
                    405: The installation script will list ALL of these files.  For proper
                    406: operation one should install the <b>*.tgz</b> versions, and deselect
                    407: the <b>*.tar.gz</b> versions.<br>
                    408: The FTP area sets do not suffer from this problem.
                    409: <p>
1.37      henning   410: <li><a name="isakmpd"></a>
1.69    ! deraadt   411: <font color="#009000"><strong>009: SECURITY FIX: June 9, 2000</strong></font>
        !           412: &nbsp; <i>All architectures</i><br>
1.1       deraadt   413: A serious bug in isakmpd(8) policy handling wherein policy
                    414: verification could be completely bypassed in isakmpd.
                    415: <br>
1.55      sthen     416: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/009_isakmpd.patch">
1.1       deraadt   417: A source code patch exists which remedies this problem.</a>
                    418: <p>
1.37      henning   419: <li><a name="msdosfs"></a>
1.69    ! deraadt   420: <font color="#009000"><strong>008: RELIABILITY FIX: June 8, 2000</strong></font>
        !           421: &nbsp; <i>All architectures</i><br>
1.1       deraadt   422: Some operations in msdosfs could result in a system panic.
                    423: <br>
1.55      sthen     424: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/008_msdosfs.patch">
1.1       deraadt   425: A source code patch exists which remedies this problem.</a>
                    426: <p>
1.37      henning   427: <li><a name="cd9660"></a>
1.69    ! deraadt   428: <font color="#009000"><strong>007: RELIABILITY FIX: June 8, 2000</strong></font>
        !           429: &nbsp; <i>All architectures</i><br>
1.1       deraadt   430: NFS exporting of CD filesystems caused a system panic.
                    431: <br>
1.55      sthen     432: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/007_cd9660.patch">
1.1       deraadt   433: A source code patch exists which remedies this problem.</a>
                    434: <p>
1.37      henning   435: <li><a name="uselogin"></a>
1.69    ! deraadt   436: <font color="#009000"><strong>006: SECURITY FIX: June 6, 2000</strong></font>
        !           437: &nbsp; <i>All architectures</i><br>
1.1       deraadt   438: The non-default UseLogin feature in <b>/etc/sshd_config</b> is broken and should not
                    439: be used.  On other operating systems, it results in a hole.<br>
                    440: Avoid use of this feature, or update to OpenSSH 2.1.1 or later if you must use it.
                    441: <p>
1.37      henning   442: <li><a name="ipopts"></a>
1.69    ! deraadt   443: <font color="#009000"><strong>005: RELIABILITY FIX: May 29, 2000</strong></font>
        !           444: &nbsp; <i>All architectures</i><br>
1.1       deraadt   445: Parse IPv4 options more carefully.  It is not yet clear if this can even be used
                    446: to crash the machine remote or locally.
                    447: <br>
1.55      sthen     448: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/005_ipopts.patch">
1.1       deraadt   449: A source code patch exists which remedies this problem.</a>
                    450: <p>
1.37      henning   451: <li><a name="route"></a>
1.69    ! deraadt   452: <font color="#009000"><strong>004: RELIABILITY FIX: May 29, 2000</strong></font>
        !           453: &nbsp; <i>All architectures</i><br>
1.1       deraadt   454: Certain routing table modifications by the superuser could cause a system panic.
                    455: <br>
1.55      sthen     456: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/004_route.patch">
1.1       deraadt   457: A source code patch exists which remedies this problem.</a>
                    458: <p>
1.37      henning   459: <li><a name="bridge"></a>
1.69    ! deraadt   460: <font color="#009000"><strong>003: SECURITY FIX: May 26, 2000</strong></font>
        !           461: &nbsp; <i>All architectures</i><br>
1.1       deraadt   462: It is possible to bypass the <i>learning</i> flag on an interface if frames
                    463: go directly to the machine acting as a
1.33      naddy     464: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=bridge&amp;sektion=4">bridge</a>.
1.1       deraadt   465: <br>
1.55      sthen     466: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/003_bridge.patch">
1.1       deraadt   467: A source code patch exists which remedies this problem.</a>
                    468: <p>
1.37      henning   469: <li><a name="ef"></a>
1.69    ! deraadt   470: <font color="#009000"><strong>002: DRIVER FIX: May 26, 2000</strong></font>
        !           471: &nbsp; <i>All architectures</i><br>
1.1       deraadt   472: The
1.33      naddy     473: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=ef&amp;sektion=4">ef(4)</a>
1.1       deraadt   474: driver will complain when adding an address with ifconfig
                    475: (ifconfig: SIOCAIFADDR: Invalid argument).<br>
1.55      sthen     476: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/002_ef.patch">
1.1       deraadt   477: A source code patch exists which remedies this problem.</a>
                    478: <p>
1.37      henning   479: <li><a name="ipf"></a>
1.69    ! deraadt   480: <font color="#009000"><strong>001: SECURITY FIX: May 25, 2000</strong></font>
        !           481: &nbsp; <i>All architectures</i><br>
1.23      horacio   482: A misuse of ipf(8)
1.1       deraadt   483: <i>keep-state</i> rules can result in firewall rules being bypassed.<br>
1.55      sthen     484: <a href="http://ftp.openbsd.org/pub/OpenBSD/patches/2.7/common/001_ipf.patch">
1.66      deraadt   485: A source code patch exists which remedies this problem.</a>
                    486: It updates ipf to version 3.3.16.
1.1       deraadt   487: <p>
                    488: </ul>
                    489: <p>
1.64      deraadt   490:
1.1       deraadt   491: </ul>
                    492:
                    493: </body>
                    494: </html>