[Koha] HTML not being encoded for display?

George Adams g_adams27 at hotmail.com
Thu Mar 6 17:36:18 NZDT 2008


Joe, it's not just malicious activity I'm worried about (though that is a fundamental security concern).  Unencoded HTML can break a page with frightening ease.  Take this simple field:

<input type="text" name="booktitle" value="$title">

Now if $title has the value: How to Say "I Love You" in 50 Languages, your HTML code will be rendered like this:

<input type="text" name="booktitle" value="How to Say "I Love You" in 10 Languages>

and is now hopelessly broken.  The CGI param $booktitle will contain "How to Say ", and the rest of the book title (in addition to breaking the HTML tag) will be lost.

I can hardly expect all the library staff to remember not to use double-quotes in any Koha text form (or any other unsafe characters like < , > or & ).  Indeed, should they really be forced to give up such common characters just to workaround the problem?

I think I'll try mocking up something with HTML::Entities, at least in the most critical parts of the "Add Marc Item" form.  Meanwhile, if no one objects, I'll put in a bug report for it too.



Date: Wed, 5 Mar 2008 21:46:33 -0500
From: ohiocore at gmail.com
To: rick at praxis.com.au
Subject: Re: [Koha] HTML not being encoded for display?
CC: g_adams27 at hotmail.com; koha at lists.katipo.co.nz

George, Rick and all --

In short, no, MARC record subfields should not be HTML encoded.  MARC is not a subset of HTML, and you can't just substitute &entities or suppress <tags> and expect everything to be OK.  If you are worried about a library's professional catalogers dropping javascript exploits into MARC fields, you have much worse problems than any ILS can solve for you.  Don't give staff access, let alone catalog access to such people.  One the plus side, congratulations, you have catalogers that can code!


For user submitted data, yes, Koha should attend to sanitizing it.  But that's not the question here.

--joe atzberger


On Wed, Mar 5, 2008 at 7:39 PM, Rick Welykochy <rick at praxis.com.au> wrote:

George Adams wrote:



> For example, in the "Add a MARC Record" section, I can enter in a title (tag 245c) of the following:

>

>    My Book is <font size="+5">Great</font>

>

> Sure enough, when the completed MARC record is submitted, the additem.pl page will show the title with the word "Great" really big.  Once added to the catalog, it will show up in the search engines with that word really big as well.


>

> Surely everything entered by users and librarian in the OPAC and Intranet sites should be HTML-encoded if it's going to be redisplayed, right?  Did I miss some setting in the Administration menus that would disallow HTML from being entered in a form, or is this a fairly big bug?






This is why Koha is susceptible to cross-site scripting attacks, as already

raised by someone else on this list a few months back.



Example:



My book is <script>alert("Gotcha!")</script>



cheers

rickw



_________________________________________________________________
Helping your favorite cause is as easy as instant messaging. You IM, we give.
http://im.live.com/Messenger/IM/Home/?source=text_hotmail_join
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.katipo.co.nz/pipermail/koha/attachments/20080305/dc0705fb/attachment-0001.htm 


More information about the Koha mailing list