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>
115 lines
7.9 KiB
Text
115 lines
7.9 KiB
Text
[% USE raw %]
|
|
[% SET footerjs = 1 %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Tools › Label creator › Label printing/exporting</title>
|
|
[% INCLUDE 'doc-head-close.inc' popup => 1 %]
|
|
<style>table {border-collapse: separate; border-spacing: 0; border: hidden none;} .header {cursor: auto; background-position: center center; background-repeat: repeat;}</style>
|
|
</head>
|
|
|
|
<body id="labels_label-print" class="tools labels">
|
|
<div class="main container-fluid">
|
|
[% IF ( batches ) %]
|
|
<form>
|
|
<h3>Click on the following links to download the exported batch(es).</h3>
|
|
[% FOREACH batche IN batches %]
|
|
<fieldset>
|
|
[% IF ( batche.label_ids ) %]
|
|
<legend>[% IF ( batche.label_count == 1 ) %][% batche.label_count | html %] single label[% ELSE %][% batche.label_count | html %] single labels[% END %]</legend>
|
|
<p><a class="document pdf" href="/cgi-bin/koha/labels/[% batche.create_script | html %]?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]&start_label=[% batche.start_label | html %][% batche.label_ids | html %]">Download as PDF</a></p>
|
|
|
|
<p><a class="document csv" href="/cgi-bin/koha/labels/label-create-csv.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %][% batche.label_ids | html %]">Download as CSV</a></p>
|
|
|
|
<p><a class="document xml" href="/cgi-bin/koha/labels/label-create-xml.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %][% batche.label_ids | html %]">Download as XML</a></p>
|
|
[% ELSIF ( batche.item_numbers ) %]
|
|
<legend>[% IF ( batche.label_count == 1 ) %][% batche.label_count | html %] single label[% ELSE %][% batche.label_count | html %] single labels[% END %]</legend>
|
|
<p><a class="document pdf" href="/cgi-bin/koha/labels/[% batche.create_script | html %]?template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]&start_label=[% batche.start_label | html %][% batche.item_numbers | html %]">Download as PDF</a></p>
|
|
|
|
<p><a class="document csv" href="/cgi-bin/koha/labels/label-create-csv.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %][% batche.item_numbers | html %]">Download as CSV</a></p>
|
|
|
|
<p><a class="document xml" href="/cgi-bin/koha/labels/label-create-xml.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %][% batche.item_numbers | html %]">Download as XML</a></p>
|
|
[% ELSE %]
|
|
<legend>Label Batch Number [% batche.batch_id | html %]</legend>
|
|
<p><a class="document pdf" href="/cgi-bin/koha/labels/label-create-pdf.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]&start_label=[% batche.start_label | html %]">Download as PDF</a>
|
|
</p>
|
|
<p>
|
|
<a class="document csv" href="/cgi-bin/koha/labels/label-create-csv.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]">Download as CSV</a>
|
|
</p>
|
|
<p>
|
|
<a class="document xml" href="/cgi-bin/koha/labels/label-create-xml.pl?batch_id=[% batche.batch_id | html %]&template_id=[% batche.template_id | html %]&layout_id=[% batche.layout_id | html %]">Download as XML</a></p>
|
|
[% END %]
|
|
</fieldset>
|
|
[% END %]
|
|
<fieldset class="action">
|
|
<input type="button" class="gb-close" value="Done" />
|
|
</fieldset>
|
|
</form>
|
|
[% ELSE %]
|
|
<h3>
|
|
[% IF ( label_ids ) %]
|
|
[% IF ( label_count == 1 ) %]Exporting [% label_count | html %] label[% ELSE %]Exporting [% label_count | html %] labels[% END %]
|
|
[% ELSIF ( item_numbers ) %]
|
|
[% IF ( item_count == 1 ) %]Exporting [% item_count | html %] label[% ELSE %]Exporting [% item_count | html %] labels[% END %]
|
|
[% ELSE %]
|
|
[% IF ( multi_batch_count == 1 ) %][% multi_batch_count | html %] batch to export[% ELSE %][% multi_batch_count | html %] batches to export[% END %]
|
|
[% END %]
|
|
</h3>
|
|
<form name="exporting" method="post" action="/cgi-bin/koha/labels/label-print.pl">
|
|
<input type="hidden" name="op" value="export" />
|
|
<input type="hidden" name="referer" value="[% referer | html %]" />
|
|
[% FOREACH batch_id IN batch_ids %]
|
|
<input type="hidden" name="batch_id" value="[% batch_id.batch_id | html %]" />
|
|
[% END %]
|
|
[% FOREACH label_id IN label_ids %]
|
|
<input type="hidden" name="label_id" value="[% label_id.label_id | html %]" />
|
|
[% END %]
|
|
[% FOREACH item_number IN item_numbers %]
|
|
<input type="hidden" name="item_number" value="[% item_number.item_number | html %]" />
|
|
[% END %]
|
|
<fieldset class="rows">
|
|
<ol>
|
|
<li>
|
|
<label for="template_id" style="width:20em">Select a template to be applied: </label>
|
|
<select name="template_id" id="template_id">
|
|
[% FOREACH template IN templates %]
|
|
<option value="[% template.template_id | html %]">[% template.template_code | html %]</option>
|
|
[% END %]
|
|
</select>
|
|
</li>
|
|
<li>
|
|
<label for="layout_id" style="width:20em">Select a layout to be applied: </label>
|
|
<select name="layout_id" id="layout_id">
|
|
[% FOREACH layout IN layouts %]
|
|
<option value="[% layout.layout_id | html %]">[% layout.layout_name | html %]</option>
|
|
[% END %]
|
|
</select>
|
|
</li>
|
|
<li>
|
|
<label for="start_label" style="width:20em">Enter starting label position (for PDF): </label>
|
|
<input type="text" size="5" id="start_label" name="start_label" class="focus" title="Starting label number" value="1"/>
|
|
</li>
|
|
</ol>
|
|
</fieldset>
|
|
<fieldset class="action">
|
|
<input type="submit" value="Export" />
|
|
<a href="#" class="cancel gb-close">Cancel</a>
|
|
</fieldset>
|
|
</form>
|
|
[% END %]
|
|
</div>
|
|
|
|
[% MACRO jsinclude BLOCK %]
|
|
[% Asset.js("js/tools-menu.js") | $raw %]
|
|
[% INCLUDE 'greybox.inc' %]
|
|
<script>
|
|
function Done() {
|
|
window.location = "[% referer | html %]";
|
|
};
|
|
$(document).ready(function(){
|
|
$(".gb-close").on("click",function(){
|
|
parent.parent.GB_hide();
|
|
});
|
|
});
|
|
</script>
|
|
[% END %]
|
|
|
|
[% INCLUDE 'popup-bottom.inc' %]
|