Changes between Initial Version and Version 1 of Ticket #13579
- Timestamp:
- 10/08/12 08:31:48 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13579 – Description
initial v1 1 `test_executable` runs various executables in `/tmp`. Since Python has `.` in `sys.path`, it is trivial for any user to have code executed by the user running the doctests. For example:1 `test_executable` runs various executables in `/tmp`. When running a script, Python puts the directory containing that script in `sys.path`. Therefore, it is trivial for any user to have code executed by the user running the doctests. For example: 2 2 {{{ 3 3 [eviluser@hostname ~]$ echo 'print "EVIL!!"' > /tmp/socket.py