Lucene search

K
githubGitHub Advisory DatabaseGHSA-WM63-7627-CH33
HistoryNov 17, 2023 - 9:50 p.m.

@vendure/core's insecure currencyCode handling allows wrong payment amounts

2023-11-1721:50:31
GitHub Advisory Database
github.com
11
vendure
currencycode
payment amounts
vulnerability
mollie
stripe
api
validation
availablecurrencycodes
channel
patches
custom orderprocess
security issue

7.2 High

AI Score

Confidence

High

Impact

Currently, in many Vendure deployments it’s possible to select any currencyCode (really any, doesn’t need to be assigned to the channel) and pay through Mollie and Stripe in that particular currencyCode.
The prices are not transformed. The result is the Order is in Payment Settled in the foreign currency.
See SS, CZK is not in the channel.
I’ve tested with Mollie and Stripe it both works.

Further notes

After looking into this further and with help from the comments below, the root cause of this vulnerability is the ability to specify an arbitrary currencyCode as a query parameter to an API call, and then Vendure will use this and pass it to the rest of the system as RequestContext.currencyCode.

The solution is to add validation to the passed currencyCode to ensure that it matches one of the available availableCurrencyCodes of the active Channel.

Furthermore, an additional check has been added for when the currencyCode changes during the AddingItems stage - in this case we need to re-calculate the prices in the new currency.

Patches

v2.1.3

Workarounds

You can define a custom OrderProcess onTransitionStart function which can verify the order’s currencyCode is as expected before allowing the transition to the ArrangingPayment state.

Affected configurations

Vulners
Node
vendurevendureRange<2.1.3
CPENameOperatorVersion
@vendure/corelt2.1.3

7.2 High

AI Score

Confidence

High