Tuesday, March 3, 2015
errata for X server infoleak
request of X servers. For more information, see the X.org advisory.
We experienced a slight delay getting patches out, as you can see from the
date in the patch. This is a comparatively minor issue so we didn't rush
things until correctly signed patches were available.
http://www.x.org/wiki/Development/Security/Advisory-2015-02-10/
http://ftp.openbsd.org/pub/OpenBSD/patches/5.5/common/021_xserver.patch.sig
http://ftp.openbsd.org/pub/OpenBSD/patches/5.6/common/016_xserver.patch.sig
untrusted comment: signature from openbsd 5.6 base private key
RWR0EANmo9nqholgu2GQCCaaJuP9HvfU/V5+SgCtPaxbMZfHJRNbbCXzdsIWAL0Dfr9kMeNbiOs21lUgA4Ej3AFsptAdQsB9JQk=
OpenBSD 5.6 errata 16, February 20, 2015:
Information leak in the XkbSetGeometry request of X servers
Olivier Fourdan from Red Hat has discovered a protocol handling issue
in the way the X server code base handles the XkbSetGeometry request.
Apply patch using:
signify -Vep /etc/signify/openbsd-56-base.pub -x 016_xserver.patch.sig \
-m - | (cd /usr/xenocara && patch -p0)
Then build and install a new xserver:
cd /usr/xenocara/xserver
make -f Makefile.bsd-wrapper obj
make -f Makefile.bsd-wrapper build
Index: xserver/xkb/xkb.c
diff -u xserver/xkb/xkb.c:1.10 xenocara/xserver/xkb/xkb.c:1.10.2.1
--- xserver/xkb/xkb.c:1.10 Fri May 2 21:27:51 2014
+++ xserver/xkb/xkb.c Thu Feb 12 08:29:20 2015
@@ -4957,26 +4957,29 @@
/***====================================================================***/
-static char *
-_GetCountedString(char **wire_inout, Bool swap)
+static Status
+_GetCountedString(char **wire_inout, ClientPtr client, char **str)
{
- char *wire, *str;
- CARD16 len, *plen;
+ char *wire, *next;
+ CARD16 len;
wire = *wire_inout;
- plen = (CARD16 *) wire;
- if (swap) {
- swaps(plen);
- }
- len = *plen;
- str = malloc(len + 1);
- if (str) {
- memcpy(str, &wire[2], len);
- str[len] = '\0';
+ len = *(CARD16 *) wire;
+ if (client->swapped) {
+ swaps(&len);
}
- wire += XkbPaddedSize(len + 2);
- *wire_inout = wire;
- return str;
+ next = wire + XkbPaddedSize(len + 2);
+ /* Check we're still within the size of the request */
+ if (client->req_len <
+ bytes_to_int32(next - (char *) client->requestBuffer))
+ return BadValue;
+ *str = malloc(len + 1);
+ if (!*str)
+ return BadAlloc;
+ memcpy(*str, &wire[2], len);
+ *(*str + len) = '\0';
+ *wire_inout = next;
+ return Success;
}
static Status
@@ -4985,25 +4988,29 @@
{
char *wire;
xkbDoodadWireDesc *dWire;
+ xkbAnyDoodadWireDesc any;
+ xkbTextDoodadWireDesc text;
XkbDoodadPtr doodad;
+ Status status;
dWire = (xkbDoodadWireDesc *) (*wire_inout);
+ any = dWire->any;
wire = (char *) &dWire[1];
if (client->swapped) {
- swapl(&dWire->any.name);
- swaps(&dWire->any.top);
- swaps(&dWire->any.left);
- swaps(&dWire->any.angle);
+ swapl(&any.name);
+ swaps(&any.top);
+ swaps(&any.left);
+ swaps(&any.angle);
}
CHK_ATOM_ONLY(dWire->any.name);
- doodad = XkbAddGeomDoodad(geom, section, dWire->any.name);
+ doodad = XkbAddGeomDoodad(geom, section, any.name);
if (!doodad)
return BadAlloc;
doodad->any.type = dWire->any.type;
doodad->any.priority = dWire->any.priority;
- doodad->any.top = dWire->any.top;
- doodad->any.left = dWire->any.left;
- doodad->any.angle = dWire->any.angle;
+ doodad->any.top = any.top;
+ doodad->any.left = any.left;
+ doodad->any.angle = any.angle;
switch (doodad->any.type) {
case XkbOutlineDoodad:
case XkbSolidDoodad:
@@ -5026,15 +5033,22 @@
dWire->text.colorNdx);
return BadMatch;
}
+ text = dWire->text;
if (client->swapped) {
- swaps(&dWire->text.width);
- swaps(&dWire->text.height);
+ swaps(&text.width);
+ swaps(&text.height);
}
- doodad->text.width = dWire->text.width;
- doodad->text.height = dWire->text.height;
+ doodad->text.width = text.width;
+ doodad->text.height = text.height;
doodad->text.color_ndx = dWire->text.colorNdx;
- doodad->text.text = _GetCountedString(&wire, client->swapped);
- doodad->text.font = _GetCountedString(&wire, client->swapped);
+ status = _GetCountedString(&wire, client, &doodad->text.text);
+ if (status != Success)
+ return status;
+ status = _GetCountedString(&wire, client, &doodad->text.font);
+ if (status != Success) {
+ free (doodad->text.text);
+ return status;
+ }
break;
case XkbIndicatorDoodad:
if (dWire->indicator.onColorNdx >= geom->num_colors) {
@@ -5069,7 +5083,9 @@
}
doodad->logo.color_ndx = dWire->logo.colorNdx;
doodad->logo.shape_ndx = dWire->logo.shapeNdx;
- doodad->logo.logo_name = _GetCountedString(&wire, client->swapped);
+ status = _GetCountedString(&wire, client, &doodad->logo.logo_name);
+ if (status != Success)
+ return status;
break;
default:
client->errorValue = _XkbErrCode2(0x4F, dWire->any.type);
@@ -5301,18 +5317,20 @@
char *wire;
wire = (char *) &req[1];
- geom->label_font = _GetCountedString(&wire, client->swapped);
+ status = _GetCountedString(&wire, client, &geom->label_font);
+ if (status != Success)
+ return status;
for (i = 0; i < req->nProperties; i++) {
char *name, *val;
- name = _GetCountedString(&wire, client->swapped);
- if (!name)
- return BadAlloc;
- val = _GetCountedString(&wire, client->swapped);
- if (!val) {
+ status = _GetCountedString(&wire, client, &name);
+ if (status != Success)
+ return status;
+ status = _GetCountedString(&wire, client, &val);
+ if (status != Success) {
free(name);
- return BadAlloc;
+ return status;
}
if (XkbAddGeomProperty(geom, name, val) == NULL) {
free(name);
@@ -5346,9 +5364,9 @@
for (i = 0; i < req->nColors; i++) {
char *name;
- name = _GetCountedString(&wire, client->swapped);
- if (!name)
- return BadAlloc;
+ status = _GetCountedString(&wire, client, &name);
+ if (status != Success)
+ return status;
if (!XkbAddGeomColor(geom, name, geom->num_colors)) {
free(name);
return BadAlloc;
Fedora 22 Alpha Go/No-Go Meeting, Thursday, March 05 @ 17:00 UTC
meeting, wherein we shall determine the readiness of the Fedora 22 Alpha.
Thursday, March 05, 2015 17:00 UTC (12 noon EST, 9 AM PST, 18:00 CET)
"Before each public release Development, QA and Release Engineering meet
to determine if the release criteria are met for a particular release.
This meeting is called the Go/No-Go Meeting."
"Verifying that the Release criteria are met is the responsibility of
the QA Team."
Release Candidate (RC) availability and good QA coverage are prerequisites
for the Go/No-Go meeting. We don't have RC yet as the list of accepted
blockers is still pretty long. If you have any bug on the list, please
help us with Alpha release. If we won't be ready by Thursday, we will
use this meeting to review blockers and decide what to do.
For more details about this meeting see:
https://fedoraproject.org/wiki/Go_No_Go_Meeting
In the meantime, keep an eye on the Fedora 22 Alpha Blocker list:
http://qa.fedoraproject.org/blockerbugs/milestone/22/alpha/buglist
Jaroslav
_______________________________________________
devel-announce mailing list
devel-announce@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel-announce
Fedora 22 Alpha Release Readiness Meeting :: Thursday, March. 05, 19:00 UTC
date: 2015-03-05 place: irc.freenode.net in #fedora-meeting-2
time: 19:00 UTC (2 PM EST, 11 AM PST, 20:00 CET)
This Thursday, March 05, we will meet to make sure we are coordinated
and ready for the Alpha release of Fedora 22 on Tuesday, March 10, 2015.
Please note that this meeting will occur on March 05 even if the
release is delayed at the Go/No-Go meeting on the same day two hours
earlier.
You may received this message several times, but I was asked to open this
meeting to the teams and I'll also hope this will raise awareness and more
team representatives will come to this meeting. This meeting works best
when we have representatives from all of the teams. We also have a badge!
Jaroslav
_______________________________________________
devel-announce mailing list
devel-announce@lists.fedoraproject.org
https://admin.fedoraproject.org/mailman/listinfo/devel-announce
[USN-2506-1] Thunderbird vulnerabilities
Version: GnuPG v1
iQEcBAEBAgAGBQJU9YfYAAoJEGEfvezVlG4PgD0IAKZya+6UheISDQd/H3Di4zE7
+qwZstTyW4Uvo+YsLzWks3+n2BpLlqQ9veczwS3rwfhOnD1Ku7bQ+TkRZeNk8o2q
XPOJCIFa48BEcs2xaNMPuCGNgYoFeuVSSPU7b8RvTnoohp+m/WRwLvKwuZTuxD6J
ffT5a/rIbSGz+9FXZM/lz8ncZBggViicu36UE/M/1UfMTSehIr8rTgvDUmhz/csH
u8iVq1E9EX1Z4NQpLj8O1NwWHSqK1ke6H5rb7SB7RMPEJZcZKn+CKh4iMY6m/kMQ
WDI139IHJ6Ju98ZuFZexmKUslDX4oQOVtgDadeT10lP+ExUc7ePd88xvJdq6R4g=
=0WBU
-----END PGP SIGNATURE-----
==========================================================================
Ubuntu Security Notice USN-2506-1
March 03, 2015
thunderbird vulnerabilities
==========================================================================
A security issue affects these releases of Ubuntu and its derivatives:
- Ubuntu 14.10
- Ubuntu 14.04 LTS
- Ubuntu 12.04 LTS
Summary:
Several security issues were fixed in Thunderbird.
Software Description:
- thunderbird: Mozilla Open Source mail and newsgroup client
Details:
Armin Razmdjou discovered that contents of locally readable files could
be made available via manipulation of form autocomplete in some
circumstances. If a user were tricked in to opening a specially crafted
message with scripting enabled, an attacker could potentially exploit this
to obtain sensitive information. (CVE-2015-0822)
Abhishek Arya discovered an out-of-bounds read and write when rendering
SVG content in some circumstances. If a user were tricked in to opening
a specially crafted message with scripting enabled, an attacker could
potentially exploit this to obtain sensitive information. (CVE-2015-0827)
Paul Bandha discovered a use-after-free in IndexedDB. If a user were
tricked in to opening a specially crafted message with scripting enabled,
an attacker could potentially exploit this to cause a denial of service
via application crash, or execute arbitrary code with the privileges of
the user invoking Thunderbird. (CVE-2015-0831)
Carsten Book, Christoph Diehl, Gary Kwong, Jan de Mooij, Liz Henry, Byron
Campen, Tom Schuster, and Ryan VanderMeulen discovered multiple memory
safety issues in Thunderbird. If a user were tricked in to opening a
specially crafted message with scripting enabled, an attacker could
potentially exploit these to cause a denial of service via application
crash, or execute arbitrary code with the privileges of the user invoking
Thunderbird. (CVE-2015-0836)
Update instructions:
The problem can be corrected by updating your system to the following
package versions:
Ubuntu 14.10:
thunderbird 1:31.5.0+build1-0ubuntu0.14.10.1
Ubuntu 14.04 LTS:
thunderbird 1:31.5.0+build1-0ubuntu0.14.04.1
Ubuntu 12.04 LTS:
thunderbird 1:31.5.0+build1-0ubuntu0.12.04.1
After a standard system update you need to restart Thunderbird to make
all the necessary changes.
References:
http://www.ubuntu.com/usn/usn-2506-1
CVE-2015-0822, CVE-2015-0827, CVE-2015-0831, CVE-2015-0836
Package Information:
https://launchpad.net/ubuntu/+source/thunderbird/1:31.5.0+build1-0ubuntu0.14.10.1
https://launchpad.net/ubuntu/+source/thunderbird/1:31.5.0+build1-0ubuntu0.14.04.1
https://launchpad.net/ubuntu/+source/thunderbird/1:31.5.0+build1-0ubuntu0.12.04.1
Monday, March 2, 2015
[FreeBSD-Announce] FreeBSD 10.0-RELEASE End of Life
Hash: SHA512
Dear FreeBSD community,
FreeBSD 10.0 have reached its end-of-life and will no longer be supported by
the FreeBSD Security Team. Users of FreeBSD 10.0 are strongly encouraged to
upgrade to a newer release as soon as possible.
The currently supported branches and releases and their expected
end-of-life dates are:
+----------------------------------------------------------------------------+
| Branch | Release | Type | Release Date | Estimated EoL |
+-----------+------------+--------+------------------+-----------------------+
|stable/8 |n/a |n/a |n/a |June 30, 2015 |
+-----------+------------+--------+------------------+-----------------------+
|releng/8.4 |8.4-RELEASE |Extended|June 9, 2013 |June 30, 2015 |
+-----------+------------+--------+------------------+-----------------------+
|stable/9 |n/a |n/a |n/a |last release + 2 years |
+-----------+------------+--------+------------------+-----------------------+
|releng/9.3 |9.3-RELEASE |Extended|July 16, 2014 |December 31, 2016 |
+-----------+------------+--------+------------------+-----------------------+
|stable/10 |n/a |n/a |n/a |last release + 2 years |
+-----------+------------+--------+------------------+-----------------------+
|releng/10.1|10.1-RELEASE|Extended|November 14, 2014 |December 31, 2016 |
+----------------------------------------------------------------------------+
Please refer to https://security.freebsd.org/ for an up-to-date list of
supported releases and the latest security advisories.
- --
Xin Li - FreeBSD Deputy Security Officer
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.1.2 (FreeBSD)
iQIcBAEBCgAGBQJU9LMaAAoJEO1n7NZdz2rn5QoQAItdRAZcNjbFMqMI1rSIhDFD
2jXj77Ty/aWuLlEe6az/3184IAEjEIyxxfg47a46DLioh/ZhzSTPnDDr7RlWHLWH
v1cwnzxUoH1IBnuuYTaa5oxsHuHAYuqu+UuyhorRe9u4QS0r6M3SCocZmEN0DPAV
qAAl89ynE8thmml2RYp6XbLdwkHzAyrIPt9dw6pQiLr9uiFbX2Yl3lk6maJMXMia
Yq309liZaEfdel0YbUrixuzZL1Lt1FPBzq4lWObX8Q+jj7xwqOL1VAozxJ7OzG6L
OdKyrtMObyECi1GF81h+vjQoobJUgtPskEsNDoSecyK43lglU4NaFxCr0VW8zuOC
7GfZaMGGJR0VkhHQRgXO9HigiFuEMeo3ZCctNZFPDesZ36FkrsgUfbMDejskvoSX
aqdmpq5E4vBReUFWW/zymqyD+BkOFLQ0h1xBXivuIvYV+kJvO3sw3eSC+Pd1aM+7
6vMmngjwUfjrgp+nVVmCGbnJGinFDpdlufX5eMFZbxMkHc7uynBbMcD4U02NHxu2
6VlSmO1E5b0jcO/X5+I3rpIHycegjO1n5s8Y+tw9jy8/sa+t7WzmRgJDZCsL9AI7
AYnPXw+Be5//+Ba8zv5CmIq8p/D5rLUM5K68UMjwJCC3Ly3Mxone1r7XGFrGsE92
BfgvcLL8swc7pYA3q84j
=Wg3c
-----END PGP SIGNATURE-----
_______________________________________________
freebsd-announce@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-announce
To unsubscribe, send any mail to "freebsd-announce-unsubscribe@freebsd.org"
[CentOS-announce] CEEA-2015:0275 CentOS 5 cyrus-imapd Enhancement Update
Upstream details at : https://rhn.redhat.com/errata/RHEA-2015-0275.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
dd29d23eccd0d884980bc486eed5898294616b5f1698644409e5ec0e5b0eec28 cyrus-imapd-2.3.7-16.el5_11.i386.rpm
424a0ef95930ae543fec2c8415be603232330050651f70493f148133ced97381 cyrus-imapd-devel-2.3.7-16.el5_11.i386.rpm
ba67ad052b541adb36b0f8f1ae395b5ab5621f7860fdac559c08ae8cedd02148 cyrus-imapd-perl-2.3.7-16.el5_11.i386.rpm
0309b20c3f0672234fdd6c831ac425be8de30c2e1f2e3e40a66b708224e37762 cyrus-imapd-utils-2.3.7-16.el5_11.i386.rpm
x86_64:
f6fa3aed83cfd51c8bb41c2cf9b9c6c3f3b5a6212feae5ea70f21f9a777e01be cyrus-imapd-2.3.7-16.el5_11.x86_64.rpm
424a0ef95930ae543fec2c8415be603232330050651f70493f148133ced97381 cyrus-imapd-devel-2.3.7-16.el5_11.i386.rpm
b01915f3ac66d050a0707518fb798891b1e6dd27e98eb7f529c315b23bb2469f cyrus-imapd-devel-2.3.7-16.el5_11.x86_64.rpm
85f3ad6fefeaf3f0e104a98e305f1d45cc3caa998ee11d50d86da6f2ce6aa088 cyrus-imapd-perl-2.3.7-16.el5_11.x86_64.rpm
8bdcac1856535d4972f6c0d955f784af66d0c62b1027ae299e76895245990ec5 cyrus-imapd-utils-2.3.7-16.el5_11.x86_64.rpm
Source:
646f5530c92f50b0f248e2469af4795a46825dbec4e8bef9f5c44685241a76b4 cyrus-imapd-2.3.7-16.el5_11.src.rpm
--
Johnny Hughes
CentOS Project { http://www.centos.org/ }
irc: hughesjr, #centos@irc.freenode.net
_______________________________________________
CentOS-announce mailing list
CentOS-announce@centos.org
http://lists.centos.org/mailman/listinfo/centos-announce
[CentOS-announce] CEEA-2015:0277 CentOS 6 cyrus-imapd Enhancement Update
Upstream details at : https://rhn.redhat.com/errata/RHEA-2015-0277.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
d594d24cd32730c0b708488b16ce239e31bd896535cf6616ff69c2a50f0b5204 cyrus-imapd-2.3.16-13.el6_6.i686.rpm
fa4fdbb3abca0dd103b3204915ef7e1c0f2cd0c65a5f768f80cebc2c148396b0 cyrus-imapd-devel-2.3.16-13.el6_6.i686.rpm
98f1663fc3f2139c6dabfdba2237fb8168d259a115c38dcb16159bb0504c3749 cyrus-imapd-utils-2.3.16-13.el6_6.i686.rpm
x86_64:
ccba4c5dbc695d2bece41d9bce8031d49b5b76aae92064796f8c6d70cedfa2dc cyrus-imapd-2.3.16-13.el6_6.x86_64.rpm
fa4fdbb3abca0dd103b3204915ef7e1c0f2cd0c65a5f768f80cebc2c148396b0 cyrus-imapd-devel-2.3.16-13.el6_6.i686.rpm
a34d8ff05fbf1b12aedc6808b6675399f9d3ddd557172c5519db86cfdf511769 cyrus-imapd-devel-2.3.16-13.el6_6.x86_64.rpm
cd49a8be2cbe05621ccb9c701acc7c3223edc559d00a503a49dcbbf952bf0aad cyrus-imapd-utils-2.3.16-13.el6_6.x86_64.rpm
Source:
81d04d82b259e081600a6d9378327e2040a929b0d6e6e63e305c4cadaff19322 cyrus-imapd-2.3.16-13.el6_6.src.rpm
--
Johnny Hughes
CentOS Project { http://www.centos.org/ }
irc: hughesjr, #centos@irc.freenode.net
_______________________________________________
CentOS-announce mailing list
CentOS-announce@centos.org
http://lists.centos.org/mailman/listinfo/centos-announce
[CentOS-announce] CEBA-2015:0274 CentOS 6 ruby BugFix Update
Upstream details at : https://rhn.redhat.com/errata/RHBA-2015-0274.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
71234f9406eca6a41884cbaaff642485e10e0a031e300e1d054453e9cfb14ff8 ruby-1.8.7.374-4.el6_6.i686.rpm
b3163be4b0290781509741fe40c3f31d590507101a8a49a874f52cc3481ebb0b ruby-devel-1.8.7.374-4.el6_6.i686.rpm
ed32c82f71478c9ff251d81d48db568b90371e067b67090dc611018a80cdc32b ruby-docs-1.8.7.374-4.el6_6.i686.rpm
f074916f420a394ff4f6e102dfbd0264896630817e70c25ae122cb4662b25cc5 ruby-irb-1.8.7.374-4.el6_6.i686.rpm
99c696d220f88578b9ac908c52d7c7d50fc1cde62f5b90beaff61a2cabb7d55b ruby-libs-1.8.7.374-4.el6_6.i686.rpm
95043fecd149c116e7596fecdef5765e2518f38e56f192b73d5d7435acd3951a ruby-rdoc-1.8.7.374-4.el6_6.i686.rpm
3e070909710e9329b92b570c6128057122d2b1c04a97a62a8ac8a47bc9e79ed7 ruby-ri-1.8.7.374-4.el6_6.i686.rpm
1d80cda61fc8cd6f4d65ce605197b71ed8d774d5006c702bee281988203636fb ruby-static-1.8.7.374-4.el6_6.i686.rpm
bee5cf1fd558d263b3cafff8c1d28abf2fdfb64f84cf552002e2b30dce443f29 ruby-tcltk-1.8.7.374-4.el6_6.i686.rpm
x86_64:
760db1ec22721384125263dc7d4f8f5e74d6d6cb1867659e17e6a8fdbc5726b2 ruby-1.8.7.374-4.el6_6.x86_64.rpm
b3163be4b0290781509741fe40c3f31d590507101a8a49a874f52cc3481ebb0b ruby-devel-1.8.7.374-4.el6_6.i686.rpm
0821dea5d7e3d79c9b8faa01275706d411f61a846bc78d94e305da06f46d6585 ruby-devel-1.8.7.374-4.el6_6.x86_64.rpm
542442bc6e620e6c11bd0ea9a49c0e1dc7e16ac57a0b76bd1f8b1543e43b0c1a ruby-docs-1.8.7.374-4.el6_6.x86_64.rpm
e04c1fc17afdfd29e1e23d788c47715894b553cc90318e4146d3d93d65a0cf3a ruby-irb-1.8.7.374-4.el6_6.x86_64.rpm
99c696d220f88578b9ac908c52d7c7d50fc1cde62f5b90beaff61a2cabb7d55b ruby-libs-1.8.7.374-4.el6_6.i686.rpm
b473a43d5c201bf9706ab1cbe2d6ef0fc1a6042295e20753d8307326b2fce116 ruby-libs-1.8.7.374-4.el6_6.x86_64.rpm
93b3e1baf539d598efe1a1ab094e6718d10472947086ca7e89638615c8b57dbd ruby-rdoc-1.8.7.374-4.el6_6.x86_64.rpm
f2d677239f26999f710bb228e57525a64ab0b95f3b9ec2e384daa1b5b1569a26 ruby-ri-1.8.7.374-4.el6_6.x86_64.rpm
e5cd12caa438960187e3c724592de30ff80cc9e14ebf9b3c5a0fe3ab9550ff6d ruby-static-1.8.7.374-4.el6_6.x86_64.rpm
9dbe206d541870495944580e18247031fc0873f33b2711d19aa2ccaaed1b559c ruby-tcltk-1.8.7.374-4.el6_6.x86_64.rpm
Source:
d59e8ddea5341b50b411253dd5b5c9975038a9b880a12d9675ebb4b7b71ec8e1 ruby-1.8.7.374-4.el6_6.src.rpm
--
Johnny Hughes
CentOS Project { http://www.centos.org/ }
irc: hughesjr, #centos@irc.freenode.net
_______________________________________________
CentOS-announce mailing list
CentOS-announce@centos.org
http://lists.centos.org/mailman/listinfo/centos-announce
[CentOS-announce] CEBA-2015:0273 CentOS 6 ksh BugFix Update
Upstream details at : https://rhn.redhat.com/errata/RHBA-2015-0273.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
1b18a7ba2e3dfd59515f0d722a92cf970474bb1d4b4be5014bbd30050f90c5a4 ksh-20120801-21.el6_6.2.i686.rpm
x86_64:
b7fa412e41427c37a6bc017787ba5904bceee292e9e583b4b53f67353e43dff6 ksh-20120801-21.el6_6.2.x86_64.rpm
Source:
fd62e15f6e729922a78ed7c883041dc2267ce380fabd25575c5d467d033d5043 ksh-20120801-21.el6_6.2.src.rpm
--
Johnny Hughes
CentOS Project { http://www.centos.org/ }
irc: hughesjr, #centos@irc.freenode.net
_______________________________________________
CentOS-announce mailing list
CentOS-announce@centos.org
http://lists.centos.org/mailman/listinfo/centos-announce
Sunday, March 1, 2015
[announce] Wednesday NYC*BUG: DTrace/book party with GNN
BSDCan are coming up, but this Wednesday we have a very special meeting.
Wednesday, March 4:
from "The Design and Implementation of the FreeBSD Operating System"
DTrace
George Neville-Neil
18:45, Stone Creek Bar & Lounge: 140 E 27th St
Abstract
Book Release Event for "The Design and Implementation of the FreeBSD
Operating System" with George Neville-Neil
The March meeting will be a special launch meeting for the recent
release of "The Design and Implementation of the FreeBSD Operating
System." George Neville-Neil, one of the three authors, will be speaking
on DTrace, which is covered in the book. Copies of the book will be for
sale and giveaway. Hors d'oeuvres will be provided before and after the
meeting.
DTrace is the tool of choice for debugging and performance tuning
systems running on FreeBSD. Originally developed for the Solaris
operating system, DTrace was ported to FreeBSD and has been developed
and enhanced within FreeBSD ever since. Used by both systems
administrators and developers, this talk will discuss both how DTrace
works, as described in the latest edition of "The Design and
Implementation of the FreeBSD Operating System" as well as how to
effectively use the system to monitor systems and diagnose problems.
Speaker Bio
George Neville-Neil works on networking and operating system code for
fun and profit. He also teaches various courses on subjects related to
computer programming. His professional areas of interest include code
spelunking, operating systems, networking, time and security. He is the
co-author with Marshall Kirk McKusick and Robert Watson of The Design
and Implementation of the FreeBSD Operating System and is the columnist
behind ACM Queue's "Kode Vicious." He serves as a Director of the
non-profit, FreeBSD Foundation.
He earned his bachelor's degree in computer science at Northeastern
University in Boston, Massachusetts, and is a member of the ACM, the
USENIX Association and the IEEE. He is an avid bicyclist and traveler
who currently resides in New York City.
_______________________________________________
announce mailing list
announce@lists.nycbug.org
http://lists.nycbug.org/mailman/listinfo/announce
lists.linuxfromscratch.org mailing list memberships reminder
lists.linuxfromscratch.org mailing list memberships. It includes your
subscription info and how to use it to change it or unsubscribe from a
list.
You can visit the URLs to change your membership status or
configuration, including unsubscribing, setting digest-style delivery
or disabling delivery altogether (e.g., for a vacation), and so on.
In addition to the URL interfaces, you can also use email to make such
changes. For more info, send a message to the '-request' address of
the list (for example, mailman-request@lists.linuxfromscratch.org)
containing just the word 'help' in the message body, and an email
message will be sent to you with instructions.
If you have questions, problems, comments, etc, send them to
mailman-owner@lists.linuxfromscratch.org. Thanks!
Passwords for reallost1.fbsd2233449@blogger.com:
List Password // URL
---- --------
lfs-announce@lists.linuxfromscratch.org vaozebru
http://lists.linuxfromscratch.org/options/lfs-announce/reallost1.fbsd2233449%40blogger.com
