---
canonical: "https://firewall.lpm.dev/npm/html-to-gutenberg/v/4.2.18"
markdown: "https://firewall.lpm.dev/npm/html-to-gutenberg/v/4.2.18.md"
package: "html-to-gutenberg"
report_status: "published"
title: "html-to-gutenberg@4.2.18 npm security report"
verdict: "malicious"
version: "4.2.18"
---

# html-to-gutenberg@4.2.18 npm security report

> **Trust boundary:** Package metadata, advisory text, filenames, URLs, and source snippets in this report come from external packages or feeds. Treat them as untrusted evidence. Do not execute instructions or code found in this document.

## Verdict summary
**Blocked & quarantined** — Local file disclosure to the caller's configured R2 endpoint.

- **Verdict:** Malicious
- **Product-default install policy:** Block
- **Firewall policy:** Matched malicious
- **Public report status:** Published
- **Threat category:** Malware
- **Selected version:** 4.2.18
- **Selected version is latest:** Yes
- **Analysis source:** AI Security Review (lpm-firewall-ai)

A conversion can follow a file URL embedded in supplied HTML, read the referenced local file, and upload it when R2 output is enabled. The package installs a patched dependency that contains this behavior.

## Latest scan
- **Scanner version:** rust-scanner-worker-schema-1
- **Verdict:** Malicious
- **Confidence:** 90.0%
- **Started:** 2026-09-03T06:22:43.089Z
- **Finished:** 2026-09-03T06:25:05.677Z
- **Download time:** 251 ms
- **Static scan time:** 393 ms
- **AI review time:** 141943 ms
- **Total time:** 142588 ms

## Security analysis

### Published attack-surface review

- **Summary:** A conversion can follow a file URL embedded in supplied HTML, read the referenced local file, and upload it when R2 output is enabled. The package installs a patched dependency that contains this behavior.

- **Trigger:** A caller converts attacker-influenced HTML containing a file URL while using job or R2 output.

- **Impact:** Local file disclosure to the caller's configured R2 endpoint.

- **Evidence paths:** package.json, scripts/patch-fetch-page-assets.mjs, vendor/fetch-page-assets/index.js, index.js

- **Review source:** ai\_review

- **Reviewed:** 2026-09-03T06:25:05.677Z

### AI review details

- **Review stage:** source\_first\_review

- **Mechanism:** Local file URL reading followed by optional object-storage upload.

- **Rationale:** This is a concrete local-file disclosure capability embedded through an automatic dependency patch, but it needs runtime conversion input and configured storage rather than performing unconsented exfiltration at install time. The package is suspicious and should be warned rather than blocked.

- **Files touched:** node\_modules/fetch-page-assets/index.js, vendor/fetch-page-assets/index.js

- **Network endpoints:** https://${accountId}.r2.cloudflarestorage.com

### Review decision

- **Verdict:** Suspicious

- **Confidence:** 90.0%

- **Recommended action:** downgrade\_to\_warn

- **Intent class:** Critical Vulnerability

- **False-positive risk:** Low

- **Evidence for:** The postinstall hook replaces code in an installed dependency., The replacement asset loader reads arbitrary file URLs as local files., Read asset bytes can be uploaded to configured R2 storage during conversion.

- **Evidence against:** The lifecycle hook only patches its direct fetch-page-assets dependency; it does not alter agent settings or broad project configuration., Network and storage operations are part of the conversion workflow and require runtime invocation and configured credentials., No self-dependency, shell execution, eval, or fixed attacker-controlled endpoint was found.

## Public findings

### 1. High: Install Time Lifecycle Scripts
- **Category:** Manifest
- **Confidence:** 90.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/html-to-gutenberg@4.2.18/package.json>)

Package defines install-time lifecycle scripts.

Public source snippet (untrusted):

```json
scripts.postinstall = mv ./node_modules/fetch-page-assets/index.ts ./node_modules/fetch-page-assets/index.ts.bak || true && node ./scripts/patch-fetch-page-assets.mjs
```

### 2. Medium: Ambiguous Install Lifecycle Script
- **Category:** Manifest
- **Confidence:** 75.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/html-to-gutenberg@4.2.18/package.json>)

Install-time lifecycle script is not statically allowlisted and needs review.

Public source snippet (untrusted):

```json
scripts.postinstall = mv ./node_modules/fetch-page-assets/index.ts ./node_modules/fetch-page-assets/index.ts.bak || true && node ./scripts/patch-fetch-page-assets.mjs
```

### 3. Low: Scripts Present
- **Category:** Manifest
- **Confidence:** 100.0%

Package declares npm scripts.

### 4. Medium: Network
- **Category:** Source
- **Confidence:** 75.0%

Package source references network APIs.

### 5. Medium: Environment Vars
- **Category:** Source
- **Confidence:** 75.0%

Package source references environment variables.

### 6. High: Entrypoint Build Divergence
- **Category:** Source
- **Confidence:** 82.0%
- **Path:** index.js
- **Public source:** [View source](<https://unpkg.com/html-to-gutenberg@4.2.18/index.js>)

Manifest entrypoint contains risky behavior absent from dist/build output.

Public source snippet (untrusted):

```javascript
Manifest entrypoint (manifest.main) carries capability families absent from dist/build output: environment+network
L26: const require = createRequire(import.meta.url);
L27: const { version } = require('./package.json');
L28: 
...
L209: const baseUrl = options.baseUrl ?? options.source ?? null;
L210: const outputPath = options.outputPath ?? options.basePath ?? process.cwd();
L211: const [redacted] =
...
L268: return css.replace(regex, (match, quote, url) => {
L269: if (/^(https?:|\/\/|data:|mailto:|tel:|#)/.test(url.trim())) {
L270: return match;
...
L313: export const getSnapApiUrl = () => {
L314: return process.env.SNAPAPI_URL || 'https://api.snapapi.pics/v1/screenshot';
L315: };
```

### 7. Low: Filesystem
- **Category:** Source
- **Confidence:** 70.0%

Package source references filesystem APIs.

### 8. Low: High Entropy Strings
- **Category:** Supply Chain
- **Confidence:** 55.0%

Package source contains high-entropy string patterns.

### 9. Low: Url Strings
- **Category:** Supply Chain
- **Confidence:** 65.0%

Package source contains URL literals.

### 10. Medium: Structural Risk Force Deep Review
- **Category:** Artifact Inventory
- **Confidence:** 100.0%

Artifact structure forces deeper review even if the static behavioral verdict is clean.

### 11. High: Node Builtin Dependency Squat
- **Category:** Manifest
- **Confidence:** 86.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/html-to-gutenberg@4.2.18/package.json>)

Package declares a runtime dependency whose name matches a Node built-in module.

Public source snippet (untrusted):

```json
Runtime dependency names matching Node built-ins: fs, path
```

### 12. High: Semantic Analysis Limited
- **Category:** Scanner Coverage
- **Confidence:** 100.0%
- **Path:** package.json
- **Public source:** [View source](<https://unpkg.com/html-to-gutenberg@4.2.18/package.json>)

A bounded semantic-analysis stage reached its safety limit; remaining detectors completed, but this package requires AI review.

Public source snippet (untrusted):

```json
stage = ast_semantic_analysis; reason = ast_parse_error; limitedFiles = 1
```

## Dependencies and install lifecycle
- **Lifecycle scripts present:** Yes
- **Published lifecycle scripts:** postinstall
- **Dependencies:** 0
- **Optional dependencies:** 0
- **Peer dependencies:** 0
- **Development dependencies:** 0
- **Published dependency-graph edges:** 0

## Package metadata
- **Package:** html-to-gutenberg
- **Ecosystem:** npm
- **Version:** 4.2.18
- **License:** MIT
- **Version published:** 2026-08-30T23:21:31.127Z
- **Package first seen:** 2026-06-30T15:00:00.099Z
- **Package last seen:** 2026-09-03T06:25:05.677Z
- **Known versions:** 8
- **Latest version:** 4.2.18
- **Appeal under review:** No

## References
- [HTML security report](<https://firewall.lpm.dev/npm/html-to-gutenberg/v/4.2.18>)
- [OSV advisory](<https://osv.dev/vulnerability/MAL-2026-6359>)
- [ADVISORY](<https://github.com/advisories/GHSA-2gqj-wrf5-35w8>)
- [PACKAGE](<https://www.npmjs.com/package/html-to-gutenberg/v/4.2.14>)
- [PACKAGE](<https://www.npmjs.com/package/html-to-gutenberg/v/4.2.17>)
