dcd1f5d48c
Here we go, next step then. As we did not fix the performance issue when autofiltering the variables (see bug 20975), the only solution we have is to add the filters explicitely. This patch has been autogenerated (using add_html_filters.pl, see next pathces) and add the html filter to all the variables displayed in the template. Exceptions are made (using the new 'raw' TT filter) to the variable we already listed in the previous versions of this patch. To test: - Use t/db_dependent/Koha/Patrons.t to populate your DB with autogenerated data which contain <script> tags - Remove them from borrower_debarments.comments (there are allowed here) update borrower_debarments set comment="html tags possible here"; - From the interface hit page and try to catch alert box. If you find one it means you find a possible XSS. To know where it comes from: * note the exact URL where you found it * note the alert box content * Dump your DB and search for the string in the dump to identify its location (for instance table.field) Next: * Ideally we would like to use the raw filter when it is not necessary to HTML escape the variables (in big loop for instance) * Provide a QA script to catch missing filters (we want html, uri, url or raw, certainly others that I am forgetting now) * Replace the html filters with uri when needed (!) Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
75 lines
4.1 KiB
Text
75 lines
4.1 KiB
Text
[% USE Koha %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog › Browse our catalog</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
[% BLOCK cssinclude %][% END %]
|
|
</head>
|
|
[% INCLUDE 'bodytag.inc' bodyid='opac-browser' %]
|
|
[% INCLUDE 'masthead.inc' %]
|
|
|
|
<div class="main">
|
|
<div class="container-fluid">
|
|
<div class="row-fluid">
|
|
[% IF ( OpacNav || OpacNavBottom ) %]
|
|
<div class="span2">
|
|
<div id="navigation">
|
|
[% INCLUDE 'navigation.inc' %]
|
|
</div>
|
|
</div>
|
|
[% END %]
|
|
|
|
[% IF ( OpacNav ) %]<div class="span10">[% ELSE %]<div class="span12">[% END %]
|
|
|
|
<div id="userbrowser">
|
|
<h1>Browse our catalog</h1>
|
|
|
|
[% IF ( have_hierarchy ) %]
|
|
<ul>
|
|
<li>
|
|
[% description | html %] <a href="opac-browser.pl">Top level</a>
|
|
</li>
|
|
<li style="list-style-type: none;">
|
|
<ul>
|
|
[% FOREACH HIERARCHY_LOO IN HIERARCHY_LOOP %]
|
|
<li>
|
|
<a href="opac-browser.pl?level=[% HIERARCHY_LOO.level | html %]&filter=[% HIERARCHY_LOO.classification |uri %]">[% HIERARCHY_LOO.description | html %]</a>
|
|
</li>
|
|
<li style="list-style-type: none;">
|
|
[% END %]
|
|
<li style="list-style-type: none;">
|
|
<table class="table table-bordered table-striped">
|
|
<tr>
|
|
[% FOREACH LEVEL_LOO IN LEVEL_LOOP %]
|
|
<td>
|
|
<p>
|
|
[% IF ( LEVEL_LOO.endnode ) %]
|
|
<a href="opac-search.pl?q=Dewey-classification:[% LEVEL_LOO.classification |uri %]">[% LEVEL_LOO.description | html %]</a>
|
|
[% ELSE %]
|
|
<a href="opac-browser.pl?level=[% LEVEL_LOO.level | html %]&filter=[% LEVEL_LOO.classification |uri %]">[% LEVEL_LOO.description | html %]</a>
|
|
[% END %]
|
|
</p>
|
|
<p style="font-size:0.75em"><i>([% LEVEL_LOO.number | html %] biblios)</i></p>
|
|
</td>
|
|
[% IF ( LEVEL_LOO.count3 ) %]</tr><tr>[% END %]
|
|
[% END %]
|
|
</tr>
|
|
</table>
|
|
</li>
|
|
[% FOREACH HIERARCHY_LOO IN HIERARCHY_LOOP %]
|
|
</ul></li>
|
|
[% END %]
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
[% ELSE %]
|
|
<div class="warning">The browser table is empty. this feature is not fully set-up. See the <a href="http://wiki.koha-community.org/wiki/Opac_browse_feature">Koha Wiki</a> for more information on what it does and how to configure it.</div>
|
|
[% END # / IF have_hierarchy %]
|
|
|
|
</div> <!-- / .userbrowser -->
|
|
</div> <!-- / .span10 -->
|
|
</div> <!-- / .row-fluid -->
|
|
</div> <!-- / .container-fluid -->
|
|
</div> <!-- / .main -->
|
|
|
|
[% INCLUDE 'opac-bottom.inc' %]
|
|
[% BLOCK jsinclude %][% END %]
|