1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-01 02:59:01 +00:00

Restore '%' deleted when http-vuln-cve2013-7091 was renamed. Closes #332

This commit is contained in:
dmiller
2016-03-13 20:29:11 +00:00
parent 2db52ae951
commit 7271efe963

View File

@@ -56,7 +56,7 @@ categories = {"exploit","vuln","intrusive"}
portrule = shortport.http
-- function to escape specific characters
local escape = function(str) return string.gsub(str, "", "") end
local escape = function(str) return string.gsub(str, "%%", "%%%%") end
action = function(host, port)
local uri = stdnse.get_script_args(SCRIPT_NAME..".uri") or "/zimbra"