Bugzilla – Attachment 66067 Details for
Bug 19112
Stored XSS in basketheader.pl
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19112 - Stored XSS in basketheader.pl page
Bug-19112---Stored-XSS-in-basketheaderpl-page.patch (text/plain), 5.04 KB, created by
Marcel de Rooy
on 2017-08-16 11:33:53 UTC
(
hide
)
Description:
Bug 19112 - Stored XSS in basketheader.pl page
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2017-08-16 11:33:53 UTC
Size:
5.04 KB
patch
obsolete
>From f5a0983763a2bb86c274d4b675427b0d90b3f79b Mon Sep 17 00:00:00 2001 >From: Amit Gupta <amit.gupta@informaticsglobal.com> >Date: Tue, 15 Aug 2017 19:51:48 +0530 >Subject: [PATCH] Bug 19112 - Stored XSS in basketheader.pl page >Content-Type: text/plain; charset=utf-8 > >To Test > >1. Hit the page /cgi-bin/koha/acqui/basketheader.pl?booksellerid=1&op=add_form >2. Add a text in the field Basket name, Internal note, Vendor note that contains java script >3. Save the page >4. Notice js is execute >5. Apply patch, reload, js is escaped. > >Fixed XSS on pages basket.pl/basketheader.pl/bookseller.pl > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt | 4 ++-- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketheader.tt | 8 ++++---- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt | 2 +- > 3 files changed, 7 insertions(+), 7 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >index 94c312c..8cd4c88 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt >@@ -367,8 +367,8 @@ > <div class="rows"> > <div class="yui-u first"> > <ol> >- [% IF ( basketnote ) %]<li><span class="label">Internal note:</span> [% basketnote %]</li>[% END %] >- [% IF ( basketbooksellernote ) %]<li><span class="label">Vendor note:</span> [% basketbooksellernote %]</li>[% END %] >+ [% IF ( basketnote ) %]<li><span class="label">Internal note:</span> [% basketnote |html %]</li>[% END %] >+ [% IF ( basketbooksellernote ) %]<li><span class="label">Vendor note:</span> [% basketbooksellernote |html %]</li>[% END %] > [% IF ( basketcontractno ) %] > <li><span class="label">Contract name:</span> <a href="../admin/aqcontract.pl?op=add_form&contractnumber=[% basketcontractno %]&booksellerid=[% booksellerid %]">[% basketcontractname %]</a></li> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketheader.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketheader.tt >index 5cc8cc7..b3be241 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketheader.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketheader.tt >@@ -19,7 +19,7 @@ > <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> › > <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% booksellername %]</a> › > [% IF ( add_form ) %] >- [% IF ( basketno ) %]Edit basket '[% basketname %]' >+ [% IF ( basketno ) %]Edit basket '[% basketname |html %]' > [% ELSE %]Add a basket to [% booksellername %] > [% END %] > [% END %] >@@ -32,7 +32,7 @@ > > [% IF ( add_form ) %] > [% IF ( basketno ) %] >- <h1>Edit basket [% basketname %]</h1> >+ <h1>Edit basket [% basketname |html %]</h1> > [% ELSE %]<h1>Add a basket to [% booksellername %]</h1> > [% END %] > <form name="Aform" action="[% script_name %]" method="post" class="validated"> >@@ -78,11 +78,11 @@ > </li> > <li> > <label for="basketnote">Internal note: </label> >- <textarea name="basketnote" id="basketnote" rows="5" cols="40">[% basketnote %]</textarea> >+ <textarea name="basketnote" id="basketnote" rows="5" cols="40">[% basketnote |html %]</textarea> > </li> > <li> > <label for="basketbooksellernote">Vendor note: </label> >- <textarea name="basketbooksellernote" id="basketbooksellernote" rows="5" cols="40">[% basketbooksellernote %]</textarea> >+ <textarea name="basketbooksellernote" id="basketbooksellernote" rows="5" cols="40">[% basketbooksellernote |html %]</textarea> > </li> > [% IF ( contractloop ) %] > <li><label for="basketcontractnumber">Contract: </label> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >index 02eda13..af51d6b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >@@ -142,7 +142,7 @@ $(document).ready(function() { > <tr> > [% END %] > <td>[% basket.basketno %]</td> >- <td>[% basket.basketname %]</td> >+ <td>[% basket.basketname |html %]</td> > <td> > <span title="[% basket.total_items %]">[% basket.total_items %] > [% IF basket.total_items_cancelled %] >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 19112
:
66016
|
66048
| 66067