Subject: | Cleaning up /tmp directory; predictable tmp filename |
Several tests write into a file /tmp/trace.log. This is an easily
exploitable security hole when people are running the tests as root.
Possible solutions:
- Write to ./trace.log
- use File::Temp (with CLEANUP=>1)
Thanks,