https://bz.apache.org/bugzilla/show_bug.cgi?id=57674

--- Comment #6 from Christopher Schultz <ch...@christopherschultz.net> ---
Okay, here's what od has to say about those bytes:

0017740  22  20  6f  6e  63  6c  69  63  6b  3d  22  77  69  6e  64  6f
          "  sp   o   n   c   l   i   c   k   =   "   w   i   n   d   o
0017760  77  2e  6c  6f  63  61  74  69  6f  41  42  20  04  03  20  00
          w   .   l   o   c   a   t   i   o   A   B  sp eot etx  sp nul

                       Here's the weirdness ^^^^^^^^^^^^^^^^^^^^^^^^^^^

So, that's a literal "AB" followed by a space, EOT, ETX, space, and NUL bytes.
Then, the text continues on where it left off. The number of unexpected bytes
takes up the same number of bytes in the output, so it's a straight clobbering
of bytes and not something being inserted, and changing the total content
length.

0020000  73  3a  2f  2f   [etc]
          s   :   /   /   [etc]

With unprintable characters replaced with "x", the content is:

window.locatioAB xx xs://[host]:443

And it should be this:

window.location="https://[host]:443

So you can see that those bytes were replaced and not inserted (or deleted). So
the byte count is correct, but something else is wrong.

There are many other instances in thie page I'm looking at right now. I'll
check to see if they all have the same pattern.

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to