The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsLearn about OS Command Injection vulnerabilities in an interactive lesson.
Start learningThere is no fixed version for Centos:6
perl-File-Find-Rule-Perl
.
Note: Versions mentioned in the description apply only to the upstream perl-File-Find-Rule-Perl
package and not the perl-File-Find-Rule-Perl
package as distributed by Centos
.
See How to fix?
for Centos:6
relevant fixed versions and status.
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)