mirror of
https://github.com/nmap/nmap.git
synced 2026-06-26 03:03:55 +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:
parent
b5a8cbfd02
commit
b844caa6cd
1 changed files with 1 additions and 1 deletions
|
|
@ -736,7 +736,7 @@ local function parse_set_cookie(s)
|
|||
else
|
||||
value = true
|
||||
end
|
||||
cookie[name] = value
|
||||
cookie[name:lower()] = value
|
||||
pos = skip_space(s, pos)
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue