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 applicationsUpgrade livewire/livewire
to version 3.5.2 or higher.
livewire/livewire is an A front-end framework for Laravel.
Affected versions of this package are vulnerable to Insufficient Type Distinction when validating uploaded files in the generateHashNameWithOriginalNameEmbedded()
function. An attacker can execute code by uploading a file with a valid MIME type such as image/png
which actually contains executable code and has an executable file extension like .php
.
Note: This is only exploitable if the following conditions are met, illustrated in the snippet below:
The affected application applies $file->getClientOriginalName()
to filenames.
Files are stored in a publicly accessible directory on the affected server.
The affected server is configured to execute uploaded files.
class SomeComponent extends Component { use WithFileUploads;
#[Validate('image|extensions:png')] public $file; public function save() { $this->validate(); $this->file->storeAs( path: 'images', name: $this->file->getClientOriginalName(), options: ['disk' => 'public'], ); }
}