File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -203,6 +203,7 @@ def page_list(request):
203
203
def link_dialog (request ):
204
204
# list of wiki pages
205
205
name = request .values .get ("pagename" , "" )
206
+ name_escaped = wikiutil .escape (name )
206
207
if name :
207
208
from MoinMoin import search
208
209
# XXX error handling!
@@ -299,7 +300,7 @@ def link_dialog(request):
299
300
<tr>
300
301
<td>
301
302
<span fckLang="PageDlgName">Page Name</span><br>
302
- <input id="txtPagename" name="pagename" size="30" value="%(name )s">
303
+ <input id="txtPagename" name="pagename" size="30" value="%(name_escaped )s">
303
304
</td>
304
305
<td valign="bottom">
305
306
<input id=btnSearchpage type="submit" value="Search">
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ Version 1.9.10 aka "the end of spam release" (not released yet)
23
23
should be aware of beforehands.
24
24
25
25
Fixes:
26
+ * security fix for CVE-2017-5934, XSS in GUI editor related code
26
27
* fix wrong digestmod of hmac.new calls (incorporate 1.9.9 patch)
27
28
* fix broken table attribute processing (wikiutil.escape)
28
29
* fix AttributeError in multifile action
You can’t perform that action at this time.
0 commit comments