mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
fix html escaping for UTF-8 module metadata
This commit is contained in:
parent
c9473f8cbc
commit
0a3fe0c608
@ -5,7 +5,7 @@
|
||||
|
||||
## Module Name
|
||||
|
||||
<%= Rex::Text.html_encode(items[:mod_fullname]) %>
|
||||
<%= CGI::escapeHTML(items[:mod_fullname]) %>
|
||||
|
||||
## Authors
|
||||
|
||||
@ -47,4 +47,4 @@ No options required.
|
||||
|
||||
## Basic Usage
|
||||
|
||||
<%= normalize_demo_output(items[:mod_demo]) %>
|
||||
<%= normalize_demo_output(items[:mod_demo]) %>
|
||||
|
@ -183,7 +183,7 @@ module Msf
|
||||
# @return [String]
|
||||
def normalize_authors(authors)
|
||||
if authors.kind_of?(Array)
|
||||
authors.collect { |a| "* #{Rex::Text.html_encode(a)}" } * "\n"
|
||||
authors.collect { |a| "* #{CGI::escapeHTML(a)}" } * "\n"
|
||||
else
|
||||
authors
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user