---
id: CVE-2026-55254
title: >-
  NCalc: Denial of Service via Unbounded and Non-Terminating Factorial
  Evaluation
summary: >-
  NCalc: Denial of Service via Unbounded and Non-Terminating Factorial
  Evaluation
severity: medium
cvss: 4.8
cwe:
  - CWE-190
  - CWE-770
vendor: NCalc
product: NCalc.Core
ecosystem: nuget
affected:
  - NCalc.Core < 6.1.1
  - NCalcSync < 6.1.1
patched:
  - NCalc.Core 6.1.1
  - NCalcSync 6.1.1
published: '2026-06-18'
updated: '2026-06-18'
source: GHSA
sourceUrl: 'https://github.com/advisories/GHSA-3w5p-95mh-gq75'
references:
  - url: 'https://github.com/ncalc/ncalc/security/advisories/GHSA-3w5p-95mh-gq75'
  - url: 'https://github.com/ncalc/ncalc/pull/575'
  - url: 'https://github.com/advisories/GHSA-3w5p-95mh-gq75'
tags:
  - ghsa
  - nuget
ingestedAt: '2026-06-29T14:31:47.006Z'
epss: 0.00292
epssPercentile: 0.19292
---

## Overview

### Impact

A denial-of-service (DoS) vulnerability exists in the factorial operator implementation of NCalc. Specially crafted expressions containing extremely large factorial operands can trigger excessive CPU consumption or cause evaluation to enter a non-terminating loop due to integer overflow in the factorial calculation logic.

Applications that evaluate untrusted expressions using affected versions of NCalc may be vulnerable to resource exhaustion, potentially resulting in service disruption or application unresponsiveness.

This issue can be triggered with expressions such as:

```text
99999999999999!
9223372036854775807!
1.5e16!
```

### Patches

The vulnerability has been fixed by adding bounds validation for factorial operands and rejecting unsupported values before evaluation.

Users should upgrade to the first release containing the fix from pull request #575. (**v6.1.1+**)

### Workarounds

If upgrading is not immediately possible:

* Do not evaluate expressions originating from untrusted users.
* Validate or sanitize expressions before evaluation and reject factorial operations on large values.
* Implement execution time limits, request timeouts, or cancellation mechanisms around expression evaluation.

These mitigations may reduce exposure but do not fully address the underlying vulnerability.

## Affected packages

- `NCalc.Core < 6.1.1`
- `NCalcSync < 6.1.1`

## Remediation

Upgrade to a patched release:

- `NCalc.Core 6.1.1`
- `NCalcSync 6.1.1`
