JS: preserve document.url label out of .href property

This commit is contained in:
Asger F
2018-10-10 17:05:39 +01:00
parent ea297dd442
commit 03b479114f

View File

@@ -65,6 +65,11 @@ module ClientSideUrlRedirect {
queryAccess(pred, succ) and
f instanceof DocumentUrl and
g = DataFlow::FlowLabel::taint()
or
// preserve document.url label in step from `location` to `location.href`
f instanceof DocumentUrl and
g instanceof DocumentUrl and
succ.(DataFlow::PropRead).accesses(pred, "href")
}
}