mirror of
https://github.com/nmap/nmap.git
synced 2025-12-11 02:09:03 +00:00
Changed the way cookie table fields are created in http.lua. This change
ensures that attribute names are always treated as lower case. [Patrik]
This commit is contained in:
@@ -736,7 +736,7 @@ local function parse_set_cookie(s)
|
|||||||
else
|
else
|
||||||
value = true
|
value = true
|
||||||
end
|
end
|
||||||
cookie[name] = value
|
cookie[name:lower()] = value
|
||||||
pos = skip_space(s, pos)
|
pos = skip_space(s, pos)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user