View at Official suse advisory, NVD, CVE.org · CVE detail
Freshness: upstream tracker timestamp is available; use API updated time as primary recency signal.
CVE-2011-10007 severity important: SUSE including 7 source package names (perl-File-Find-Rule-0.33-5.el7_9.1, perl-File-Find-Rule-0.34-150000.3.3.1, …), 26 product×package rows across 25 product lines (SUSE Enterprise Storage 7.1, SUSE Liberty Linux 7 LTSS, … (25 product lines)): Fixed 26.
File::Find::Rule through 0.34 for Perl is vulnerable to Arbitrary Code Execution when `grep()` encounters a crafted filename. A file handle is opened with the 2 argument form of `open()` allowing an attacker controlled filename to provide the MODE parameter to `open()`, turning the filename into a command to be executed. Example: $ mkdir /tmp/poc; echo > "/tmp/poc/|id" $ perl -MFile::Find::Rule \ -E 'File::Find::Rule->grep("foo")->in("/tmp/poc")' uid=1000(user) gid=1000(user) groups=1000(user),100(users)