Lookup for vulnerable packages by Package URL.

Purlpkg:npm/%40novu/api@0.0.1-alpha.53
Typenpm
Namespace@novu
Nameapi
Version0.0.1-alpha.53
Qualifiers
Subpath
Is_vulnerabletrue
Next_non_vulnerable_version3.15.0
Latest_non_vulnerable_version3.15.0
Affected_by_vulnerabilities
0
url VCID-j1d8-f9xn-67au
vulnerability_id VCID-j1d8-f9xn-67au
summary
Novu has SSRF via conditions filter webhook bypasses validateUrlSsrf() protection
## Summary

The conditions filter webhook at `libs/application-generic/src/usecases/conditions-filter/conditions-filter.usecase.ts` line 261 sends POST requests to user-configured URLs using raw `axios.post()` with no SSRF validation. The HTTP Request workflow step in the same codebase correctly uses `validateUrlSsrf()` which blocks private IP ranges. The conditions webhook was not included in this protection.

## Root Cause

`conditions-filter.usecase.ts` line 261:
```typescript
return await axios.post(child.webhookUrl, payload, config).then((response) => {
  return response.data as Record<string, unknown>;
});
```

No call to `validateUrlSsrf()`. The `webhookUrl` comes from the workflow condition configuration with zero validation.

## Protected Code (for contrast)

`execute-http-request-step.usecase.ts` line 130:
```typescript
const ssrfValidationError = await validateUrlSsrf(url);
if (ssrfValidationError) {
  // blocked
}
```

This function resolves DNS and checks against private ranges (127.0.0.0/8, 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16, 169.254.0.0/16). It exists in the codebase but is not applied to the conditions webhook path.

## Proof of Concept

1. Create a workflow with a condition step
2. Configure the condition's webhook URL to `http://169.254.169.254/latest/meta-data/iam/security-credentials/`
3. Trigger the workflow by sending a notification event
4. The worker evaluates the condition and calls `axios.post()` to the metadata endpoint
5. The response data is stored in execution details and accessible via the execution details API

## Impact

Full-read SSRF. The response body is returned as `Record<string, unknown>` for condition evaluation and stored in the execution details `raw` field. The `GET /execution-details` API returns this data.

The POST method limits some metadata endpoints (GCP requires GET, Azure requires GET), but AWS IMDSv1 accepts POST and returns credentials. Internal services accepting POST are also reachable.

## Suggested Fix

Extract `validateUrlSsrf()` to a shared utility and call it before the axios.post in conditions-filter.usecase.ts:

```typescript
const ssrfError = await validateUrlSsrf(child.webhookUrl);
if (ssrfError) {
  throw new Error('Webhook URL blocked by SSRF protection');
}
return await axios.post(child.webhookUrl, payload, config)...
```
references
0
reference_url https://github.com/novuhq/novu
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/novuhq/novu
1
reference_url https://github.com/novuhq/novu/commit/87d965eb88340ac7cd262dd52c8015acd092dc68
reference_id
reference_type
scores
0
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/novuhq/novu/commit/87d965eb88340ac7cd262dd52c8015acd092dc68
2
reference_url https://github.com/novuhq/novu/security/advisories/GHSA-4x48-cgf9-q33f
reference_id
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/novuhq/novu/security/advisories/GHSA-4x48-cgf9-q33f
3
reference_url https://github.com/advisories/GHSA-4x48-cgf9-q33f
reference_id GHSA-4x48-cgf9-q33f
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-4x48-cgf9-q33f
fixed_packages
0
url pkg:npm/%40novu/api@3.15.0
purl pkg:npm/%40novu/api@3.15.0
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:npm/%2540novu/api@3.15.0
aliases GHSA-4x48-cgf9-q33f
risk_score 4.0
exploitability 0.5
weighted_severity 8.0
resource_url http://public2.vulnerablecode.io/vulnerabilities/VCID-j1d8-f9xn-67au
Fixing_vulnerabilities
Risk_score4.0
Resource_urlhttp://public2.vulnerablecode.io/packages/pkg:npm/%2540novu/api@0.0.1-alpha.53