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 Microsoft.OpenApi.Kiota to version 1.32.0 or higher.
Affected versions of this package are vulnerable to Arbitrary Code Injection via CodeMethodWriter in CodeMethodWriter.cs and RubyConventionService in RubyConventionService.cs. An attacker can inject arbitrary Ruby code into generated client classes by supplying an OpenAPI specification with # characters in schema default values, discriminator names, mapped type keys, serialization names, or wire names that are embedded into Ruby double-quoted string literals. Generated Ruby code evaluates interpolation syntax inside those literals at runtime, so malicious schema-derived strings can alter constructor defaults, serializer/deserializer mappings, and other emitted model logic. When teams generate clients from untrusted or externally sourced specs, the resulting code can execute attacker-controlled Ruby in the build or deployment environment, compromising systems that run the generated client.
Notes
Workarounds
# characters in default values, property names, discriminator names, mapped type keys, serialization names, and wire names to prevent Ruby interpolation from being embedded into generated code.#{, #$, or #@, which helps catch injected interpolation payloads before they run.# as \# inside double-quoted string literals, which blocks runtime interpolation in the affected output.