mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix potential SQL injection in Smart Playlists
This commit is contained in:
parent
8c707b4e0c
commit
9e79b5cbf2
2 changed files with 8 additions and 4 deletions
|
@ -28,8 +28,8 @@ func (c Criteria) OrderBy() string {
|
|||
f := fieldMap[strings.ToLower(c.Sort)]
|
||||
var mapped string
|
||||
if f == nil {
|
||||
log.Error("Invalid field in 'sort' field", "field", c.Sort)
|
||||
mapped = c.Sort
|
||||
log.Error("Invalid field in 'sort' field. Using 'title'", "sort", c.Sort)
|
||||
mapped = fieldMap["title"].field
|
||||
} else {
|
||||
if f.order == "" {
|
||||
mapped = f.field
|
||||
|
@ -38,7 +38,11 @@ func (c Criteria) OrderBy() string {
|
|||
}
|
||||
}
|
||||
if c.Order != "" {
|
||||
mapped = mapped + " " + c.Order
|
||||
if strings.EqualFold(c.Order, "asc") || strings.EqualFold(c.Order, "desc") {
|
||||
mapped = mapped + " " + c.Order
|
||||
} else {
|
||||
log.Error("Invalid value in 'order' field. Valid values: 'asc', 'desc'", "order", c.Order)
|
||||
}
|
||||
}
|
||||
return mapped
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue