summaryrefslogtreecommitdiff
path: root/internal/processor/markdown.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-27 08:33:38 +0300
committerPaul Buetow <paul@buetow.org>2026-04-27 08:33:44 +0300
commit257057748a2cf2070fbeb722a94772857b5d014f (patch)
treecd3110920d12d2b22ba4918898aa4437799d1bba /internal/processor/markdown.go
parent8b37e6e04035f9f8a3d01701dae121cdc67cbf43 (diff)
processor: reject markdown image refs with path separators or parent traversal
findLocalImages used filepath.Base(ref) after stat succeeded, which caused subdirectory or parent-directory references to pass the scan but then fail during copy because the basename was looked up in the wrong directory. Fix: add isSimpleImageRef helper that accepts only flat filenames (no path separators, no .. traversal). findLocalImages now returns the ref unchanged, matching what copyLocalImages and claimedByMarkdown expect. Added tests for isSimpleImageRef and negative findLocalImages cases for subdirectory and parent-directory references.
Diffstat (limited to 'internal/processor/markdown.go')
-rw-r--r--internal/processor/markdown.go23
1 files changed, 22 insertions, 1 deletions
diff --git a/internal/processor/markdown.go b/internal/processor/markdown.go
index e09cf59..c258e4c 100644
--- a/internal/processor/markdown.go
+++ b/internal/processor/markdown.go
@@ -13,6 +13,18 @@ import (
"github.com/yuin/goldmark/renderer/html"
)
+// isSimpleImageRef returns true for a filename-only reference (e.g.
+// "img.png") that is safe to treat as a flat local file in the same
+// directory as the markdown source. It rejects subdirectories, absolute
+// paths, dot-slash prefixes, and parent-directory traversal so stat and
+// copy targets stay within the source directory.
+func isSimpleImageRef(ref string) bool {
+ if strings.Contains(ref, "..") {
+ return false
+ }
+ return filepath.Base(ref) == ref
+}
+
// imageRefPattern matches Markdown image syntax: ![alt](filename)
// We use it to discover local asset references that must be copied.
var imageRefPattern = regexp.MustCompile(`!\[[^\]]*\]\(([^)]+)\)`)
@@ -62,9 +74,18 @@ func findLocalImages(mdContent, sourceDir string) []string {
continue
}
+ // Reject references that traverse directories or contain path
+ // separators; only flat filenames next to the markdown are
+ // supported. This prevents scans from succeeding on a file
+ // deep in a subdirectory and then failing copy because the
+ // basename is looked up in the wrong directory.
+ if !isSimpleImageRef(ref) {
+ continue
+ }
+
candidate := filepath.Join(sourceDir, ref)
if _, err := os.Stat(candidate); err == nil {
- locals = append(locals, filepath.Base(ref))
+ locals = append(locals, ref)
}
}