perl-Parse-RPN-2.87-alt1.noarch unsafe-tmp-usage-in-scripts fail The test discovered scripts with errors which may be used by a user for damaging important system files. For example if a script uses in its work a temp file which is created in /tmp directory, then every user can create symlinks with the same name (pattern) in this directory in order to destroy or rewrite some system or another user's files. Scripts _must_ _use_ mktemp/tempfile or must use $TMPDIR. mktemp/tempfile is safest. $TMPDIR is safer than /tmp/ because libpam-tmpdir creates a subdirectory of /tmp that is only accessible by that user, and then sets TMPDIR and other variables to that. Hence, it doesn't matter nearly as much if you create a non-random filename, because nobody but you can access it. Found error in /usr/share/perl5/Parse/RPN.pl: $ grep /tmp/ /usr/share/perl5/Parse/RPN.pl sub save { my $file = shift; my $data = shift; print "save file=$file\tdata=$data\n"; open FILE, ">/tmp/$file"; print FILE $data; close FILE; } sub restore { my $file = shift; open FILE, "/tmp/$file"; my $data = ; close FILE; print "restore file=$file\tdata=$data\n"; return $data; };