An Unexpectedly Straight-Forward Directory Traversal in elFinder due to Bad Regex
A directory traversal issue, the root of it is a flawed regex and replace: #(/)[^\/]+/\.\./#
.This regex will match on directory/../
and once matched its replaced with the first match group (/
)…