AUGUST 4, 2026
Live Feed
Back to database
Case File

CVE-2011-10007

HIGH · CVSS 8.8 EPSS 0.76% Public Exploit

Source: NVD + CISA KEV + EPSS (historical backfill) · Published 2025-06-05 · Last synced 2026-08-04

CyberRota Analysis

This is a high severity vulnerability with a CVSS score of 8.8. Public exploit code or proof-of-concept references have been detected in its references.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Detected Signals
poc arbitrary code execution code execution

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2011-10007
Severity
HIGH
CVSS
8.8
EPSS
0.76%

Original NVD Description

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)