Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2018-25087: Move XSS escaping · Arborator/arborator-server@cdbdbcb

A vulnerability classified as problematic was found in Arborator Server. This vulnerability affects the function start of the file project.cgi. The manipulation of the argument project leads to denial of service. Continious delivery with rolling releases is used by this product. Therefore, no version details of affected nor updated releases are available. The patch is identified as cdbdbcbd491db65e9d697ab4365605fdfab1a604. It is recommended to apply a patch to fix this issue. VDB-230662 is the identifier assigned to this vulnerability.

CVE
#xss#vulnerability#dos

Expand Up

@@ -48,12 +48,12 @@ def start():

project = (form.getvalue("project",None))

if project: project =project.decode(“utf-8”)

project = project.replace("(“,"”).replace(")“,"”).replace(“<","”).replace(“>","”) # May not contain <>() to avoid XSS attacks

action = form.getvalue("action",None)

if action: action =action.decode(“utf-8”)

if action:

if action.startswith(“project_”):project=action[8:]

project = project.replace("(“,"”).replace(")“,"”).replace(“<","”).replace(“>","”) # May not contain <>() to avoid XSS attacks

if project: action=u"project_"+project

if action:

#action, userconfig = login(form, userdir, thisfile, action.encode(“utf-8”))

Expand Down

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