Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2022-25978: chore: validate external link (#1069) · usememos/memos@b11d213

All versions of the package github.com/usememos/memos/server are vulnerable to Cross-site Scripting (XSS) due to insufficient checks on external resources, which allows malicious actors to introduce links starting with a javascript: scheme.

CVE
#xss#git#java#pdf

@@ -38,6 +38,10 @@ func (s *Server) registerResourceRoutes(g *echo.Group) { }
resourceCreate.CreatorID = userID // Only allow those external links with http prefix. if resourceCreate.ExternalLink != “” && !strings.HasPrefix(resourceCreate.ExternalLink, “http”) { return echo.NewHTTPError(http.StatusBadRequest, “Invalid external link”) } resource, err := s.Store.CreateResource(ctx, resourceCreate) if err != nil { return echo.NewHTTPError(http.StatusInternalServerError, “Failed to create resource”).SetInternal(err) @@ -188,13 +192,7 @@ func (s *Server) registerResourceRoutes(g *echo.Group) { return echo.NewHTTPError(http.StatusInternalServerError, “Failed to fetch resource”).SetInternal(err) }
c.Response().Writer.WriteHeader(http.StatusOK) c.Response().Writer.Header().Set("Content-Type", resource.Type) c.Response().Writer.Header().Set(echo.HeaderContentSecurityPolicy, “default-src 'self’”) if _, err := c.Response().Writer.Write(resource.Blob); err != nil { return echo.NewHTTPError(http.StatusInternalServerError, “Failed to write resource blob”).SetInternal(err) } return nil return c.Stream(http.StatusOK, resource.Type, bytes.NewReader(resource.Blob)) })
g.PATCH("/resource/:resourceId", func(c echo.Context) error { @@ -296,16 +294,15 @@ func (s *Server) registerResourcePublicRoutes(g *echo.Group) { } resource, err := s.Store.FindResource(ctx, resourceFind) if err != nil { return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to fetch resource ID: %v", resourceID)).SetInternal(err) return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to find resource by ID: %v", resourceID)).SetInternal(err) }
resourceType := strings.ToLower(resource.Type) if strings.HasPrefix(resourceType, “text”) || (strings.HasPrefix(resourceType, “application”) && resourceType != “application/pdf”) { resourceType = echo.MIMETextPlain } c.Response().Writer.Header().Set(echo.HeaderCacheControl, “max-age=31536000, immutable”) c.Response().Writer.Header().Set(echo.HeaderContentSecurityPolicy, “default-src 'self’”) if strings.HasPrefix(resourceType, “video”) || strings.HasPrefix(resourceType, “audio”) { resourceType := strings.ToLower(resource.Type) if strings.HasPrefix(resourceType, “text”) { resourceType = echo.MIMETextPlainCharsetUTF8 } else if strings.HasPrefix(resourceType, “video”) || strings.HasPrefix(resourceType, “audio”) { http.ServeContent(c.Response(), c.Request(), resource.Filename, time.Unix(resource.UpdatedTs, 0), bytes.NewReader(resource.Blob)) return nil }

Related news

GHSA-9w8x-5hv5-r6gw: Cross Site Scripting in usememos/memos

All versions of the package github.com/usememos/memos/server are vulnerable to Cross-site Scripting (XSS) due to insufficient checks on external resources, which allows malicious actors to introduce links starting with a javascript: scheme.

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907