Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

caplet · The Caplet Group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 72
  • Category: Security
  • Founded: May 11, 2007
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 96 - 125 of 349   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand Author Sort by Date v
125 Alan Karp
alanhkarp Send Email
Nov 13, 2007
11:21 pm
From an article in "SOA Advisor" titled "Enterprise Web 2.0, SOA Linkage: Will lack of standards be a hindrance?" by Srinivas Padmanabhuni of InfoSys. (If you...
124 Mike Samuel
mikesamuel Send Email
Oct 23, 2007
6:13 pm
... Maybe I'm being horribly unfair to protocol designers, but implementors do. An example is entities in URIs embedded in HTML. <a href="foo?bar=a&baz=b"> is...
123 Larry Masinter
masinter Send Email
Oct 23, 2007
3:41 pm
On standards: The benefit of HTTP and XML and HTML is not that they are well-designed protocol and syntax and language, but that there are many different and...
122 Mike Samuel
mikesamuel Send Email
Oct 22, 2007
11:15 pm
Ok. I think the time for debate has passed, but it's a slow Monday so I'll bite :) There's a few problems: (1) Documents embed other documents using a melange...
121 Freeman, Tim
timothy_free... Send Email
Oct 22, 2007
10:22 pm
... Okay, I'll try to say the obvious here -- although no one individual is responsible, we find ourselves in the middle of a big hacked-up pile of conventions...
120 Mike Samuel
mikesamuel Send Email
Oct 22, 2007
4:10 am
... Ok. I think it's useful to make a distinction between the n:1 mappings and the 1:1 mappings. If you're escaping (which I defined as n:1), you have to...
119 Larry Masinter
masinter Send Email
Oct 21, 2007
3:55 pm
To answer your direct questions: I don't know any formal definition for "escaping"; except as a part of "encoding"; -- you encode a sequence of bytes into (a...
118 Mike Samuel
mikesamuel Send Email
Oct 20, 2007
5:30 am
... I still don't understand. My reading of the spec says that the first sequence of characters is in ASCII. If that's the case, then an HTML validator should...
117 David Hopwood
david.hopwood@... Send Email
Oct 20, 2007
4:34 am
... URIs are sequences of characters that encode a sequence of bytes, which *may* in turn encode a sequence of Unicode characters. For URIs that have some...
116 Adam Barth
hk9565 Send Email
Oct 19, 2007
9:17 pm
... It seems to be accepting lots of invalid HTML. For example, the simple <iframe xx="yy"></iframe> seems to pass, whereas http://validator.w3.org/check...
115 Mike Samuel
mikesamuel Send Email
Oct 19, 2007
8:47 pm
Sorry. I was reading 2396 (not 3986) which says An escaped octet is encoded as a character triplet, consisting of the percent character "%" followed by the...
114 Douglas Crockford
douglascrock... Send Email
Oct 19, 2007
8:37 pm
... It shouldn't. So I am grateful to Collin for reporting a case where it did....
113 Larry Masinter
masinter Send Email
Oct 19, 2007
8:28 pm
I think you got it backward: URIs are sequences of characters, not bytes. and in (X)HTML, "URI" is really "IRI" – the XHTML spec allows full Unicode (10646)...
112 Adam Barth
hk9565 Send Email
Oct 19, 2007
5:25 pm
One simple way to approximate this (if you didn't want to reuse someone else's code for validating HTML) would be to serialize your parsed HTML back to an...
111 Adam Barth
hk9565 Send Email
Oct 19, 2007
4:48 pm
Why is ADsafe allowing invalid HTML at all? It seems like requiring the HTML to be well-formed is a good first step in trying to understand how it will be...
110 collin_jackson Send Email Oct 19, 2007
4:39 pm
Here's another one: <iframe/src="javascript:alert(42)"></iframe>...
109 Douglas Crockford
douglascrock... Send Email
Oct 19, 2007
1:22 pm
... The set of HTML confusions is vast, but not infinite. An advantage here is that JSLint/ADsafe does not have to pass all valid HTML. I can be semidraconian...
108 Mike Samuel
mikesamuel Send Email
Oct 19, 2007
4:12 am
... There are two problems here: (1) Identifying a safe subset of HTML/CSS and Javascript -- without obscure extensions like expression() (2) The other is...
107 collin_jackson Send Email Oct 19, 2007
3:54 am
The read-only aspect of JSLint is fairly unique and makes it somewhat more useful for certain applications. I support having a tool that does rewriting as an...
106 David Hopwood
david.hopwood@... Send Email
Oct 19, 2007
2:51 am
... The most common approach to preventing XSS attacks in user-generated content is not to allow HTML in that content, but to translate some simpler mark-up ...
105 Mike Samuel
mikesamuel Send Email
Oct 19, 2007
1:45 am
It's tough to write a useful application for a browser if you can't manipulate html. On 18/10/2007, David Hopwood <david.hopwood@...>...
104 David Hopwood
david.hopwood@... Send Email
Oct 19, 2007
12:42 am
... The diversity of possible attacks on HTML, and the difficulty in keeping up with any changes in browsers, suggests to me that it may be a better idea...
103 Mike Samuel
mikesamuel Send Email
Oct 17, 2007
11:16 pm
RFC 3986 disallows the null byte in URIs, and says URIs are sequences of bytes, not characters, so 65533 is out of range. In your attribute whitelist, can't...
102 Douglas Crockford
douglascrock... Send Email
Oct 17, 2007
7:47 pm
... We'll need to test that WScript.StdIn.ReadAll passes the nulls through. I think I have everything else that you identified covered....
101 collin_jackson Send Email Oct 17, 2007
6:23 pm
I'm not pasting. I'm reading the value of a textarea into JSLint directly using JavaScript. See http://crypto.stanford.edu/jsonrequest/nullbyte2.html It looks...
100 Douglas Crockford
douglascrock... Send Email
Oct 17, 2007
1:28 pm
... I scan every line for null and other characters. I am guessing that the null is lost in the browser's paste process. In production, inspection will be done...
99 collin_jackson Send Email Oct 17, 2007
4:36 am
Also: <div style="width: expres/**/sion (document.body.innerHTML='gotcha&#39;)"></div> ... despite ... (42)"></iframe>...
98 collin_jackson Send Email Oct 17, 2007
2:55 am
Null byte between "java" and "script" passes JSLint on Firefox despite being an attack on IE: <iframe src="java&#65533;script:alert(42)"></iframe> Also: ...
97 Douglas Crockford
douglascrock... Send Email
Oct 17, 2007
2:33 am
... Excellent. Keep them coming....
96 collin_jackson Send Email Oct 17, 2007
2:16 am
<div x="\"><img onload=alert(42) src=http://json.org/img/json160.gif>"></div> ... fragment ... and ... worries. ... vatted....
Messages 96 - 125 of 349   Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help