Skip to content

Commit 4cb78ac

Browse files
committed
Fix typo
1 parent cf9e9f9 commit 4cb78ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/ql/src/experimental/Security/CWE-614/CookieInjection.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ from
2222
where
2323
config.hasFlowPath(source, sink) and
2424
if exists(sink.getNode().(CookieSink))
25-
then insecure = "and it's " + sink.getNode().(CookieSink).getFlag() + " flag is not properly set"
25+
then insecure = "and its " + sink.getNode().(CookieSink).getFlag() + " flag is not properly set"
2626
else insecure = ""
2727
select sink.getNode(), "Cookie is constructed from a", source.getNode(), "user-supplied input",
2828
insecure

0 commit comments

Comments
 (0)