<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/poky.git/meta/recipes-devtools/python, branch daisy-enea</title>
<subtitle>Mirror of git.yoctoproject.org/poky</subtitle>
<id>https://git.enea.com/cgit/linux/poky.git/atom?h=daisy-enea</id>
<link rel='self' href='https://git.enea.com/cgit/linux/poky.git/atom?h=daisy-enea'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/'/>
<updated>2015-07-07T20:58:50+00:00</updated>
<entry>
<title>python: Backport CVE-2013-1752 fix from upstream</title>
<updated>2015-07-07T20:58:50+00:00</updated>
<author>
<name>Tudor Florea</name>
<email>tudor.florea@enea.com</email>
</author>
<published>2015-07-07T08:50:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=5671167d2495d3a6b1e662707ff6123315f478cc'/>
<id>urn:sha1:5671167d2495d3a6b1e662707ff6123315f478cc</id>
<content type='text'>
This back ported patch fixes CVE-2013-1752 for
ftplib,imaplib,nntplib and poplib
References:
http://bugs.python.org/issue16038
http://bugs.python.org/issue16039
http://bugs.python.org/issue16040
http://bugs.python.org/issue16041
https://access.redhat.com/security/cve/CVE-2013-1752

The ftplib,imaplib,nntplib and poplib modules doesn't limit the amount
of read data in its call to readline().
The modules should be modified to use limited readline() with _MAXLINE.

Signed-off-by: Tudor Florea &lt;tudor.florea@enea.com&gt;
</content>
</entry>
<entry>
<title>python: Backport CVE-2013-1752 fix from upstream</title>
<updated>2015-07-06T22:42:39+00:00</updated>
<author>
<name>Tudor Florea</name>
<email>tudor.florea@enea.com</email>
</author>
<published>2015-07-06T22:42:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=34e5a4f013f8bd0158a984bf5ed5b10ca4c1a263'/>
<id>urn:sha1:34e5a4f013f8bd0158a984bf5ed5b10ca4c1a263</id>
<content type='text'>
This back ported patch fixes CVE-2013-1752 for httplib
References:
http://bugs.python.org/issue16037
https://access.redhat.com/security/cve/CVE-2013-1752

The httplib module / package can read arbitrary amounts of data
from its socket when it's parsing the HTTP header. This may lead
to issues when a user connects to a broken HTTP server or
something that isn't a HTTP at all

Signed-off-by: Tudor Florea &lt;tudor.florea@enea.com&gt;
</content>
</entry>
<entry>
<title>python: CVE-2014-7185</title>
<updated>2015-07-06T18:19:40+00:00</updated>
<author>
<name>Sona Sarmadi</name>
<email>sona.sarmadi@enea.com</email>
</author>
<published>2015-04-21T11:29:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=2b10e943c879c0a510d4c2dcda127eef76974854'/>
<id>urn:sha1:2b10e943c879c0a510d4c2dcda127eef76974854</id>
<content type='text'>
Fixes buffer() integer overflow leading to out of bounds read

This bug is only an issue if offset and size arguments are untrusted.
The buffer() was removed from Python 3 and hence Python 3 was not
affected by this issue.

Reference
http://openwall.com/lists/oss-security/2014/09/25/47

Signed-off-by: Sona Sarmadi &lt;sona.sarmadi@enea.com&gt;
</content>
</entry>
<entry>
<title>python: Disables SSLv3</title>
<updated>2015-07-06T18:19:38+00:00</updated>
<author>
<name>Sona Sarmadi</name>
<email>sona.sarmadi@enea.com</email>
</author>
<published>2015-03-04T08:46:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=72bec03e72908b002355a3dba39c9b9caec2b473'/>
<id>urn:sha1:72bec03e72908b002355a3dba39c9b9caec2b473</id>
<content type='text'>
This is related to "SSLv3 POODLE vulnerability" CVE-2014-3566

Building python without SSLv3 support when openssl is built without
any support for SSLv3 (e.g. by adding EXTRA_OECONF = " -no-ssl3" in
the openssl recipes).

Backport from:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=768611#22
[python2.7-nossl3.patch] only Modules/_ssl.c is backported.

References:
https://bugzilla.yoctoproject.org/show_bug.cgi?id=7015
https://bugzilla.yoctoproject.org/show_bug.cgi?id=6843
http://bugs.python.org/issue22638
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-3566

Signed-off-by: Sona Sarmadi &lt;sona.sarmadi@enea.com&gt;
</content>
</entry>
<entry>
<title>python: CVE-2014-4616</title>
<updated>2015-07-06T18:19:38+00:00</updated>
<author>
<name>Sona Sarmadi</name>
<email>sona.sarmadi@enea.com</email>
</author>
<published>2014-11-26T12:49:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=4ec7570ee9c2226cfa0341c7e0b35362b7b68278'/>
<id>urn:sha1:4ec7570ee9c2226cfa0341c7e0b35362b7b68278</id>
<content type='text'>
Fix for _json module arbitrary process memory read vulnerability

http://bugs.python.org/issue21529

Python 2 and 3 are susceptible to arbitrary process memory reading
by a user or adversary due to a bug in the _json module caused by
insufficient bounds checking.

The sole prerequisites of this attack are that the attacker is able to control
or influence the two parameters of the default scanstring function: the string
to be decoded and the index. The bug is caused by allowing the user to supply
a negative index value. The index value is then used directly as an index to
an array in the C code; internally the address of the array and its index are
added to each other in order to yield the address of the value that is desired.
However, by supplying a negative index value and adding this to the address of
the array, the processor's register value wraps around and the calculated value
will point to a position in memory which isn't within the bounds of the
supplied string, causing the function to access other parts of the process
memory.

Signed-off-by: Benjamin Peterson &lt;benjamin@python.org&gt; Applied to
python-native recipe in order to fix the above mentioned vulnerability.

Upstream-Status: Backport

Signed-off-by: Daniel BORNAZ &lt;daniel.bornaz@enea.com&gt;
Signed-off-by: Sona Sarmadi &lt;sona.sarmadi@enea.com&gt;
</content>
</entry>
<entry>
<title>initial commit for Enea Linux 4.0</title>
<updated>2014-06-26T13:32:53+00:00</updated>
<author>
<name>Adrian Dudau</name>
<email>adrian.dudau@enea.com</email>
</author>
<published>2014-06-26T12:36:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=f4cf9fe05bb3f32fabea4e54dd92d368967a80da'/>
<id>urn:sha1:f4cf9fe05bb3f32fabea4e54dd92d368967a80da</id>
<content type='text'>
Migrated from the internal git server on the daisy-enea branch

Signed-off-by: Adrian Dudau &lt;adrian.dudau@enea.com&gt;
</content>
</entry>
</feed>
