This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Unsupported provider

classification
Title: Security bug in tkinter allows for untrusted, arbitrary code execution.
Type: security Stage: resolved
Components: Tkinter Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Arfrever, Ramchandra Apte, asvetlov, barry, benjamin.peterson, christian.heimes, georg.brandl, gpolo, larry, mark.dickinson, pitrou, python-dev, skrah, terry.reedy, zach.ware
Priority: release blocker Keywords: patch

Created on 2012-10-16 15:29 by Ramchandra Apte, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
exploit.py Ramchandra Apte, 2012-11-01 14:09
issue16248-2.x.patch zach.ware, 2012-11-09 21:48 2.x patch review
issue16248-3.x.patch zach.ware, 2012-11-09 21:48 3.x patch review
Messages (64)
msg173047 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-10-16 15:29
Because tkinter.py uses exec to execute code from a file, it has a security bug. It searches for the file in the home dir. Apparently, on my system (don't know if its the same on others), the $HOME variable is the same as the non-root one when running Python with root priveleges
Steps to reproduce:
create a file called .Tk.py in your home folder
Whatever code is in that file will be executed.

run these three lines of code in Python:

import tkinter
w = tkinter.Tk()
w.mainloop()

I will add more details in later comments.
msg173048 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-10-16 15:31
s/tkinter.py/tkinter.__init__
msg173050 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-10-16 15:32
In Lib/tkinter/__init__.py:1801 , the readprofile function executes untrusted code.
msg173051 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-10-16 15:34
specifically, when running Python using sudo (not in a root shell), the $HOME variable is preserved.
msg173125 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-10-17 02:24
I made many mistakes in the original bug report. Here is a fixed one:

Because Lib/tkinter/__init__.py:1801 uses exec to execute code from a file, it has a security bug. It searches for the file in the home dir. Apparently, on my system, the $HOME variable is the same as the non-root one when running Python with root privileges using sudo.

Steps to reproduce:
create a file called .Tk.py in your home folder
Whatever code is in that file will be executed.

run these three lines of code in Python using sudo:

import tkinter
w = tkinter.Tk()

And the code in the .Tk.py will be executed (unless if you change the baseName for the Tk object)
There may be similar ways of running Python with root privileges preserving the environment variables in other OS'es
Using Kubuntu Linux (variant of Ubuntu Linux) 12.04
msg173191 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2012-10-17 18:16
It is a well known fact that the readprofile function uses exec, and it has been like that for more than 18 years. The parameters baseName and className defines the execution of the files $HOME/.{className}.tcl, $HOME/.{className}.py, $HOME/.{baseName}.tcl, and $HOME/.{baseName}.py. The function's docstring actually say that.

Said that, I never needed to load custom code during the creation of a Tk instance. To me the existence of readprofile is unneeded.

But what is your proposal to the issue ?
msg173230 - (view) Author: want to delete this account (Want to Delete This Account) Date: 2012-10-18 04:55
On 17 October 2012 23:46, Guilherme Polo <report@bugs.python.org> wrote:

>
> Guilherme Polo added the comment:
>
> It is a well known fact that the readprofile function uses exec, and it
> has been like that for more than 18 years. The parameters baseName and
> className defines the execution of the files $HOME/.{className}.tcl,
> $HOME/.{className}.py, $HOME/.{baseName}.tcl, and $HOME/.{baseName}.py. The
> function's docstring actually say that.
>
> Said that, I never needed to load custom code during the creation of a Tk
> instance. To me the existence of readprofile is unneeded.
>
> But what is your proposal to the issue ?
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue16248>
> _______________________________________
>

Simply remove the readprofile code (it is not documented and I never had to
use it)
msg173231 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-10-18 05:02
Apparently when replying by email my old account name is shown ("mani and ram") Just so you know that "mani and ram" is me.
msg173278 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2012-10-18 15:24
For something that has been around for so long, I would be a little more careful.

My suggestion is: no longer declare readprofile as an internal function; remove the direct call to readprofile from Tk.__init__; tell users about the new behavior, and the need to call readprofile themselves if they wish to.

In some years we might be able to estimate if readprofile is used at all, and then decide about removing it. Since I haven't been active as a Python committer, I will let the final decision to someone else.
msg174299 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-10-31 15:55
It is possible with this bug to make a sudo IDLE edit a root-file.
msg174300 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-10-31 15:56
oops ignore last msg
msg174317 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2012-10-31 16:19
I can ignore it, but let us be honest. If you got sudo privilege already, why are you bothering to break (or whatever else) the system using IDLE ? The issue here did not give you the sudo privilege. If it did, then we have an actual security bug.
msg174319 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-10-31 16:30
I think this is a legitimate security bug.
the malicious program needs to create a file with a certain name in the home dir.
If a user runs say IDLE (or another tk app) with root priveleges using sudo, the file will be run with root priveleges.
msg174396 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2012-11-01 10:22
Ramchandra:  can you give an example of a realistic situation where the existence of this code in tkinter allows users to execute code *that they wouldn't be able to execute otherwise*?
msg174420 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-11-01 14:09
@Mark Dickinson
Run the attached file, exploit.py, with normal priveleges and then run IDLE with sudo (something I did to actually uncover this bug!).
Then the file "/root/exploited" should contain "Exploit succeeded!"
msg174429 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2012-11-01 16:29
Okay, but if a user can run IDLE with sudo, they presumably *already* have many other ways to use sudo to create files in /root, without using IDLE or tkinter.  That's why I said:  "*that they wouldn't be able to execute otherwise*".  I don't see the security issue here.
msg174450 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2012-11-01 19:32
If I understand correctly, I think what Ramchandra is getting at is that if an attacker could manage to get a .Tk.py file into a user's home directory somehow, then the next time that user happens to do 'sudo idle', the attacker's code is executed with root privileges.

That said, I don't know that it would be any easier for an attacker to get such a file into such a place than to just do their maliciousness some other way.

I think Guilherme's suggestion of just making those who need it call it themselves, instead of at every tkinter startup, sounds good.
msg174460 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-11-01 19:55
As Zachary and Ramchandra explained, the security issue is obvious: a non-sudoer user A can make a sudoer user B execute arbitrary code, simply by placing a file where IDLE will be run from.

This is the same reason Python has -s and -E options. The least we could do would be to disable readprofile() when sys.flags.ignore_environment is true.
msg174462 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2012-11-01 19:58
And then user A is relying on user B executing IDLE via sudo?  Is that a normal thing to do?
msg174463 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-11-01 19:59
> And then user A is relying on user B executing IDLE via sudo?  Is that
> a normal thing to do?

Well, I suppose that could be any Tk app, not just IDLE.
And I also suppose you could use IDLE to edit some file that is only
root-writable.
msg174464 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2012-11-01 20:01
So if this is a security issue, should Python 2.6 also be fixed?
msg174466 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-11-01 20:02
> So if this is a security issue, should Python 2.6 also be fixed?

Probably, if it's deemed important enough by our security RMs.
msg174469 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012-11-01 20:18
Isn't IDLE supposed to be a Python shell? As I understand this issue,
you'd have the same "exploit" by adding this to your .bashrc:

echo "EXPLOIT" > /root/exploit


Then, as a normal user, run:

sudo bash



It would be nice to get rid of the exec, but why is this an exploit?
msg174471 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-11-01 20:26
As I understand it, this is not specifically about IDLE. Any Tk app would be vulnerable.
msg174476 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2012-11-01 20:49
It is not IDLE specific. But I still fail to see how this actually is a
security bug. It doesn't give more power to the user than the user already
gave to it. If you are recklessly installing untrusted libraries or
anything for the matter, then you already have a lot of other problems.

Anyways, I would still go with my earlier option because I never used this
piece of code.

2012/11/1 Antoine Pitrou <report@bugs.python.org>

>
> Antoine Pitrou added the comment:
>
> As I understand it, this is not specifically about IDLE. Any Tk app would
> be vulnerable.
>
> ----------
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue16248>
> _______________________________________
>
msg174479 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012-11-01 21:37
I also don't find the scenario where an attacker has write privileges
to a user's home directory so disturbing -- there are juicier targets
(like .bashrc).


This constructed example using /tmp is a little more troubling:

$ cd /tmp
$ echo 'print("exploit")' > .Tk.py
$ export XAUTHORITY=$HOME/.Xauthority
$ unset HOME
$ python3.3

>>>import tkinter
>>> w = tkinter.Tk()
/usr/local/lib/python3.3/tkinter/__init__.py:1817: ResourceWarning: unclosed file <_io.TextIOWrapper name='./.Tk.py' mode='r' encoding='ANSI_X3.4-1968'>
  exec(open(class_py).read(), dir)
exploit
msg174488 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2012-11-02 04:41
On 2 November 2012 01:48, Stefan Krah <report@bugs.python.org> wrote:

>
> Stefan Krah added the comment:
>
> Isn't IDLE supposed to be a Python shell? As I understand this issue,
> you'd have the same "exploit" by adding this to your .bashrc:
>
> echo "EXPLOIT" > /root/exploit
>
>
> Then, as a normal user, run:
>
> sudo bash
>
>
>
> It would be nice to get rid of the exec, but why is this an exploit?
>
> ----------
> nosy: +skrah
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue16248>
> _______________________________________
>

Almost nobody knows that when using tkinter, code in .Tk.py is executed.
(readprofile is not even documented!)
While in your example, it is quite easy to see that it will run .bashrc
msg174509 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2012-11-02 12:50
Ramchandra Apte <report@bugs.python.org> wrote:
> Almost nobody knows that when using tkinter, code in .Tk.py is executed.
> (readprofile is not even documented!)
> While in your example, it is quite easy to see that it will run .bashrc

The point of the example is that it's "game over" anyway once an attacker
has write privileges to a user's home directory.

"sudo bash" is certainly a more common operation than "sudo tkapp.py",
and users are not in the habit of auditing .bashrc each time they launch
a shell.

In fact, I'd probably be more likely to notice a new file ".Tk.py" than
a small modification to my .bashrc.

That said, I absolutely agree that *ideally* tkinter apps should not
execute code from a startup file, especially if the startup file is
*not* in the user's home directory.
msg174553 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-11-02 18:29
I'm gonna point people to the discussion about the "-s" flag of the Python interpreter (added as part of PEP 370), since the issue is conceptually identical:
http://mail.python.org/pipermail/python-dev/2008-January/076130.html

Adding Christian to the discussion since he was the author and implementor of that PEP.
msg174556 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2012-11-02 18:37
It's gonna take a while to read this ticket ...

Some comments:
The code in site.py already does some checks, for example getuid() == geteuid(). System code and code that is run with administrator privileges shall be run with -Es to prevent code injection. See https://bugs.launchpad.net/ubuntu/+source/lsb/+bug/938869 comment #24 for an issue.
msg174813 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2012-11-04 15:16
I'm all with Antoine's suggestion. readprofile() should not be executed when sys.flags.ignore_environment is set.
msg175253 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2012-11-09 21:48
Here are a pair of trivial patches that implement Antoine's suggestion of not executing readprofile() if the -E flag is set.  Current tests seem to pass, but there are no new tests included because frankly I'm not sure of either how to test it or where.  Also, I can't seem to find any tests of the -E flag at all; does this change need a test?  No doc change either since the function isn't documented.

The patches apply equally well on 2.6 or 2.7, or 3.1 or 3.2, depending on whether this is determined to be security issue enough to mess with 2.6 and 3.1.

Thanks,

Zach
msg177218 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-09 13:48
New changeset d8300842a0e9 by Antoine Pitrou in branch '3.2':
Issue #16248: Disable code execution from the user's home directory by tkinter when the -E flag is passed to Python.
http://hg.python.org/cpython/rev/d8300842a0e9

New changeset 10d04bdb05ab by Antoine Pitrou in branch '3.3':
Issue #16248: Disable code execution from the user's home directory by tkinter when the -E flag is passed to Python.
http://hg.python.org/cpython/rev/10d04bdb05ab

New changeset a4fc52da295b by Antoine Pitrou in branch 'default':
Issue #16248: Disable code execution from the user's home directory by tkinter when the -E flag is passed to Python.
http://hg.python.org/cpython/rev/a4fc52da295b
msg177219 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-09 13:51
New changeset 822b472eff13 by Antoine Pitrou in branch '2.7':
Issue #16248: Disable code execution from the user's home directory by tkinter when the -E flag is passed to Python.
http://hg.python.org/cpython/rev/822b472eff13
msg177220 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-12-09 14:03
Fixed. I will let Benjamin and Barry decide whether this deserves backporting to security branches. Benjamin, Barry, please do your job :)
msg177222 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-12-09 15:17
New changeset 03b3124e9ea3 by Antoine Pitrou in branch '3.1':
Issue #16248: Disable code execution from the user's home directory by tkinter when the -E flag is passed to Python.
http://hg.python.org/cpython/rev/03b3124e9ea3
msg182507 - (view) Author: Ramchandra Apte (Ramchandra Apte) * Date: 2013-02-20 14:23
I suppose this should be closed.
msg182511 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-02-20 14:40
The bug hasn't been closed deliberately. We need to announce the security fix and possibly acquire a CVE, too.
msg182524 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2013-02-20 15:54
I believe we're also waiting on input from Barry about whether to apply the
patch to 2.6.
msg182525 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2013-02-20 15:57
Does the 2.x patch apply cleanly to 2.6?  If so, then I think it should be applied (though I'd like to review it first).  2.6 is still under security maintenance until October 2013.  I'm thinking we'll probably do one last security release around that time.
msg182526 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2013-02-20 16:02
> Does the 2.x patch apply cleanly to 2.6?

It should, if I remember correctly, though I haven't checked since
uploading it. I believe there were actually very few or no changes to the
file the patch is for between 2.6 and 2.7.
msg182527 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2013-02-20 16:11
Release blocking for 2.6.9 (oh how I wish we could release block for specific Python versions).
msg182532 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-02-20 17:42
> Barry A. Warsaw added the comment:
> 
> Does the 2.x patch apply cleanly to 2.6?

Perhaps it's your job as a release manager to check that ;-P
msg182565 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2013-02-20 23:09
I'm working on applying the 2.x patch to 2.6, but one thing interesting of note: sudo, at least on Debian and derivatives going back at least to Squeeze, generally reset the environment by default (i.e. env_reset).  So you'd have to either have disabled env_reset in sudoers or use `sudo -E` the exploit.py.
msg182566 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-02-20 23:17
> I'm working on applying the 2.x patch to 2.6, but one thing
> interesting of note: sudo, at least on Debian and derivatives going
> back at least to Squeeze, generally reset the environment by default
> (i.e. env_reset).  So you'd have to either have disabled env_reset in
> sudoers or use `sudo -E` the exploit.py.

Or you just have to use something else than Debian.
msg182568 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-02-20 23:26
New changeset 936621d33c38 by Barry Warsaw in branch '2.6':
- Issue #16248: Disable code execution from the user's home directory by
http://hg.python.org/cpython/rev/936621d33c38
msg182569 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2013-02-20 23:29
I think this has now been applied to all of 2.6, 2.7, 3.1, 3.2, 3.3, and 3.4.  So, closing.
msg194091 - (view) Author: Arfrever Frehtes Taifersar Arahesis (Arfrever) * (Python triager) Date: 2013-08-01 17:31
The fix in 2.6, 2.7, 3.1 and 3.2 branches introduced UnboundLocalError occurring when a non-None baseName parameter is passed.
At least a part of fa82071bb7e1 should be backported to 2.6, 2.7, 3.1 and 3.2 branches.

$ python2.7 -c 'import Tkinter; print(repr(Tkinter.Tk(baseName="some_name")))'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib64/python2.7/lib-tk/Tkinter.py", line 1748, in __init__
    if not sys.flags.ignore_environment:
UnboundLocalError: local variable 'sys' referenced before assignment
$ python3.2 -c 'import tkinter; print(repr(tkinter.Tk(baseName="some_name")))'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/lib64/python3.2/tkinter/__init__.py", line 1734, in __init__
    if not sys.flags.ignore_environment:
UnboundLocalError: local variable 'sys' referenced before assignment
msg194094 - (view) Author: Larry Hastings (larry) * (Python committer) Date: 2013-08-01 18:03
You're talking about a new bug.  Please open a new issue.

I'm closing this issue right now because I want to cut a Python 3.4 alpha release tomorrow, and this bug is marked Python 3.4 and "release blocker".
msg194096 - (view) Author: Arfrever Frehtes Taifersar Arahesis (Arfrever) * (Python triager) Date: 2013-08-01 18:08
UnboundLocalError is effect of partially incorrect fix for this bug.
It is better to update Versions field.
msg194112 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-08-01 20:25
New changeset 0f17aed78168 by Antoine Pitrou in branch '2.7':
Fix tkinter regression introduced by the security fix in #16248.
http://hg.python.org/cpython/rev/0f17aed78168
msg194114 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-08-01 20:27
I've committed a fix to 2.7 (I hope it's really a fix, since I don't know how to test it).
I'll let Benjamin and Barry decide whether to backport to 2.6 and 3.2.
As for 3.1, it's pretty much dead.
msg194639 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2013-08-08 02:46
Antoine Pitrou wrote:
> I've committed a fix to 2.7 (I hope it's really a fix, since I don't know how to test it).
> I'll let Benjamin and Barry decide whether to backport to 2.6 and 3.2.
> As for 3.1, it's pretty much dead.

That fix does work, but it should probably get a NEWS entry since it fixes a regression from 2.7.3 to 2.7.5.

Also, I think the same fix should be backported to all three of 2.6, 3.1, and 3.2.  The same regression as in 2.7.5 exists in 3.2.5, and would be introduced by the next (last?) releases of 2.6 and 3.1.

Sorry to have broken every possible version of Python :S
msg195091 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-08-13 18:24
New changeset 00bcf202cc3f by Antoine Pitrou in branch '2.7':
Add NEWS entry for 0f17aed78168 (issue #16248)
http://hg.python.org/cpython/rev/00bcf202cc3f
msg195093 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-08-13 18:24
> That fix does work, but it should probably get a NEWS entry since it
> fixes a regression from 2.7.3 to 2.7.5.

Done, thank you?

> Also, I think the same fix should be backported to all three of 2.6,
> 3.1, and 3.2.

Benjamin and Barry will have to decide what to do for 2.6 and 3.2.
msg195599 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2013-08-19 04:33
3.2 is owned by Georg.
msg195600 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2013-08-19 04:34
As for 3.1, feel free to apply. There will likely be a source release of it at some point.
msg195737 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-08-21 00:55
New changeset 84f40562669f by Barry Warsaw in branch '2.6':
Fix UnboundLocalError regression due to previous incorrect fix for
http://hg.python.org/cpython/rev/84f40562669f
msg195738 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2013-08-21 00:57
Applied the fix to 2.6 and null merged into 2.7.  This didn't need a NEWS entry because the regression hadn't been released yet.  I'll remove 2.6 from the Versions now.
msg197689 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2013-09-14 07:11
Should be fixed now in 3.2 too.
msg197690 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-09-14 07:12
New changeset c18c18774e24 by Georg Brandl in branch '3.2':
Fix tkinter regression introduced by the security fix in #16248.
http://hg.python.org/cpython/rev/c18c18774e24
msg197697 - (view) Author: Arfrever Frehtes Taifersar Arahesis (Arfrever) * (Python triager) Date: 2013-09-14 09:14
Fix still needs to be applied on 3.1 branch.
msg197825 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-09-15 19:58
New changeset c39f42f46a05 by Georg Brandl in branch '3.1':
Fix tkinter regression introduced by the security fix in #16248.
http://hg.python.org/cpython/rev/c39f42f46a05
msg197826 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-09-15 19:59
Fix backported to 3.1, closing.
History
Date User Action Args
2022-04-11 14:57:37adminsetgithub: 60452
2013-09-15 19:59:57pitrousetstatus: open -> closed
resolution: fixed
messages: + msg197826
2013-09-15 19:58:58python-devsetmessages: + msg197825
2013-09-14 09:14:32Arfreversetpriority: deferred blocker -> release blocker
status: closed -> open
messages: + msg197697

versions: + Python 3.1, - Python 3.2
2013-09-14 07:12:15python-devsetmessages: + msg197690
2013-09-14 07:11:01georg.brandlsetstatus: open -> closed

messages: + msg197689
2013-09-13 12:30:46Arfreverlinkissue19008 superseder
2013-08-22 15:34:25serhiy.storchakalinkissue17803 superseder
2013-08-21 00:57:20barrysetversions: - Python 2.6
2013-08-21 00:57:03barrysetmessages: + msg195738
2013-08-21 00:55:30python-devsetmessages: + msg195737
2013-08-19 04:34:17benjamin.petersonsetmessages: + msg195600
2013-08-19 04:33:08benjamin.petersonsetmessages: + msg195599
2013-08-13 18:24:57pitrousetmessages: + msg195093
2013-08-13 18:24:06python-devsetmessages: + msg195091
2013-08-08 02:46:24zach.waresetmessages: + msg194639
2013-08-01 20:27:07pitrousetpriority: release blocker -> deferred blocker

stage: resolved
messages: + msg194114
versions: - Python 3.1, Python 2.7
2013-08-01 20:25:42python-devsetmessages: + msg194112
2013-08-01 18:08:18Arfreversetstatus: closed -> open
resolution: fixed -> (no value)
messages: + msg194096

versions: + Python 3.1, - Python 3.3, Python 3.4
2013-08-01 18:03:55larrysetstatus: open -> closed
resolution: fixed
messages: + msg194094
2013-08-01 17:31:28Arfreversetstatus: closed -> open
resolution: fixed -> (no value)
messages: + msg194091

stage: resolved -> (no value)
2013-02-20 23:29:48barrysetmessages: + msg182569
2013-02-20 23:29:04pitrousetstatus: open -> closed
2013-02-20 23:26:03python-devsetmessages: + msg182568
2013-02-20 23:17:28pitrousetmessages: + msg182566
2013-02-20 23:09:26barrysetmessages: + msg182565
2013-02-20 17:42:31pitrousetmessages: + msg182532
2013-02-20 16:11:29barrysetversions: + Python 2.6
2013-02-20 16:11:11barrysetpriority: normal -> release blocker
nosy: + georg.brandl, larry
messages: + msg182527

2013-02-20 16:02:57zach.waresetmessages: + msg182526
2013-02-20 15:57:35barrysetmessages: + msg182525
2013-02-20 15:54:23zach.waresetmessages: + msg182524
2013-02-20 14:40:01christian.heimessetstatus: closed -> open

messages: + msg182511
2013-02-20 14:23:08Ramchandra Aptesetstatus: open -> closed

messages: + msg182507
2012-12-09 15:17:50python-devsetstatus: pending -> open

messages: + msg177222
2012-12-09 14:03:48pitrousetstatus: open -> pending

nosy: + barry, benjamin.peterson
messages: + msg177220

resolution: fixed
stage: resolved
2012-12-09 13:51:25python-devsetmessages: + msg177219
2012-12-09 13:48:57python-devsetnosy: + python-dev
messages: + msg177218
2012-11-09 21:48:32zach.waresetfiles: + issue16248-3.x.patch
2012-11-09 21:48:17zach.waresetfiles: + issue16248-2.x.patch
keywords: + patch
messages: + msg175253
2012-11-04 15:16:49christian.heimessetmessages: + msg174813
2012-11-02 18:37:26christian.heimessetmessages: + msg174556
2012-11-02 18:29:20pitrousetnosy: + christian.heimes
messages: + msg174553
2012-11-02 12:50:55skrahsetmessages: + msg174509
2012-11-02 04:41:32Ramchandra Aptesetmessages: + msg174488
2012-11-01 21:37:45skrahsetmessages: + msg174479
2012-11-01 20:49:42gpolosetmessages: + msg174476
2012-11-01 20:26:37pitrousetmessages: + msg174471
2012-11-01 20:18:00skrahsetnosy: + skrah
messages: + msg174469
2012-11-01 20:02:24pitrousetmessages: + msg174466
2012-11-01 20:01:14mark.dickinsonsetmessages: + msg174464
2012-11-01 19:59:57pitrousetmessages: + msg174463
2012-11-01 19:58:23mark.dickinsonsetmessages: + msg174462
2012-11-01 19:55:34pitrousetnosy: + pitrou

messages: + msg174460
versions: + Python 2.7, Python 3.2, Python 3.3, Python 3.4
2012-11-01 19:32:41zach.waresetnosy: + zach.ware
messages: + msg174450
2012-11-01 16:29:57mark.dickinsonsetmessages: + msg174429
2012-11-01 14:09:21Ramchandra Aptesetfiles: + exploit.py

messages: + msg174420
2012-11-01 11:36:19asvetlovsetnosy: + asvetlov
2012-11-01 10:22:41mark.dickinsonsetnosy: + mark.dickinson
messages: + msg174396
2012-10-31 16:30:14Ramchandra Aptesetmessages: + msg174319
2012-10-31 16:19:43gpolosetmessages: + msg174317
2012-10-31 15:56:30Ramchandra Aptesetmessages: + msg174300
2012-10-31 15:55:37Ramchandra Aptesetmessages: + msg174299
2012-10-19 18:51:22terry.reedysetnosy: + terry.reedy, - Want to Delete This Account
2012-10-18 15:24:27gpolosetmessages: + msg173278
2012-10-18 05:02:58Ramchandra Aptesetmessages: + msg173231
2012-10-18 04:55:11Want to Delete This Accountsetnosy: + Want to Delete This Account
messages: + msg173230
2012-10-17 18:16:05gpolosetmessages: + msg173191
2012-10-17 17:07:42Arfreversetnosy: + gpolo, Arfrever
2012-10-17 07:43:19Ramchandra Aptesettitle: Security bug in tkinter allows for untrusted code execution. -> Security bug in tkinter allows for untrusted, arbitrary code execution.
2012-10-17 02:24:05Ramchandra Aptesetmessages: + msg173125
2012-10-16 15:34:06Ramchandra Aptesetmessages: + msg173051
2012-10-16 15:32:48Ramchandra Aptesetmessages: + msg173050
2012-10-16 15:31:35Ramchandra Aptesetmessages: + msg173048
2012-10-16 15:29:27Ramchandra Aptesettype: security
2012-10-16 15:29:21Ramchandra Aptecreate