Search the web
Sign In
New User? Sign Up
caplet · The Caplet Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 203 - 232 of 309   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
203
ADsafe does not allow access to Date or to Math.random(). This is because we want to be able to sample ads to test their behavior and contractual compliance....
Douglas Crockford
douglascrock...
Offline Send Email
May 4, 2008
4:02 pm
204
Reminder -- less than 3 week until the workshop! W2SP 2008: Web 2.0 Security and Privacy 2008 Thursday, May 22 The Claremont Resort, Oakland, California...
Larry Koved
larrykoved
Offline Send Email
May 5, 2008
2:12 am
205
... To: Douglas Crockford <douglas@...> Subject: ADsafe attack From: David-Sarah Hopwood <david.hopwood@...> (function () { ...
David-Sarah Hopwood
david.hopwood@...
Send Email
May 21, 2008
2:47 am
206
... From: Douglas Crockford <douglas@...> To: David-Sarah Hopwood <david.hopwood@...>, Mark Miller <erights@...> ...
David-Sarah Hopwood
david.hopwood@...
Send Email
May 21, 2008
2:49 am
207
[This might be a duplicate; I'm having trouble posting to this list from my usual account.] ... From: David-Sarah Hopwood...
David-Sarah Hopwood
david.hopwood@...
Send Email
May 21, 2008
1:43 pm
208
... From: Douglas Crockford <douglas@...> To: David-Sarah Hopwood <david.hopwood@...>, Mark Miller <erights@...> ...
David-Sarah Hopwood
david.hopwood@...
Send Email
May 21, 2008
1:44 pm
209
... From: Douglas Crockford <douglas@...> To: David-Sarah Hopwood <david.hopwood@...> Subject: Re: ADsafe attack ... The...
David-Sarah Hopwood
david.hopwood@...
Send Email
May 21, 2008
1:45 pm
210
... I'm not convinced that it is sufficiently robust to just check for (this === window). This should work: function robustify(aType, methodName) { var proto =...
David-Sarah Hopwood
david.hopwood@...
Send Email
May 21, 2008
7:02 pm
211
... We are considering an Object.keys method, but it will only return the own, enumerable property names....
Douglas Crockford
douglascrock...
Offline Send Email
May 21, 2008
7:09 pm
212
... Why? The test is intended to reject invocations of the method as a function. What cases are missed?...
Douglas Crockford
douglascrock...
Offline Send Email
May 21, 2008
7:14 pm
213
On Wed, May 21, 2008 at 12:02 PM, David-Sarah Hopwood ... Yes! The about-to-be-specified Object.getProperties(obj) will provide a reflective description of all...
Mark S. Miller
erights@...
Send Email
May 21, 2008
7:14 pm
214
... That's why I suggested a name using the __...__ convention. Otherwise, a subset language that does not do rewriting must do one of: - blacklist the name...
David-Sarah Hopwood
david.hopwood@...
Send Email
May 21, 2008
11:19 pm
215
... Mark came up with a better idea: ADsafe denies any access to Object....
Douglas Crockford
douglascrock...
Offline Send Email
May 21, 2008
11:41 pm
216
... I don't want to have to do that in Jacaranda (where it would otherwise be safe to allow first-class access to Object). -- David-Sarah Hopwood...
David-Sarah Hopwood
david.hopwood@...
Send Email
May 22, 2008
12:17 am
217
ADsafe will block the bind method. The bind method proposed for ES3.1 is safe, but the bind methods provided by the current Ajax libraries are not because they...
Douglas Crockford
douglascrock...
Offline Send Email
May 22, 2008
12:54 pm
218
... Don't some of these libraries have other aliases for bind-like methods? For example Prototype has 'bindAsEventListener', although I don't know of any...
David-Sarah Hopwood
david.hopwood@...
Send Email
May 22, 2008
2:12 pm
219
... While I remember, I think you also need to blacklist 'stack'. <http://code.google.com/p/google-caja/wiki/ErrorExposesParameterValues> -- David-Sarah...
David-Sarah Hopwood
david.hopwood@...
Send Email
May 22, 2008
2:22 pm
220
ADsafe now allows long dot expressions that refine the allowed global variables. So ADSAFE.koda.bosanda.bosoya.tikki.ottobo(); is now acceptable. JSLint's UI...
Douglas Crockford
douglascrock...
Offline Send Email
May 23, 2008
2:53 am
221
I relaxed some of the restrictions on the get method. It still requires that the object is in fact an object (and not a function), but it allows the returning...
Douglas Crockford
douglascrock...
Offline Send Email
May 24, 2008
9:45 pm
222
http://ADsafe.org/ now describes three methods that provide the linkage between the guest code and the ADsafe runtime....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 1, 2008
6:25 am
223
The first edition of adsafe.js is available at http://adsafe.org/adsafe.js. It still lacks dom wrappage and interwidget communication....
Douglas Crockford
douglascrock...
Offline Send Email
Jun 3, 2008
8:40 pm
224
... Attached is a rough first draft of a safe DOM wrapper. The main idea is that untrusted script views DOM nodes simply as integer handles. To read or mutate...
Adam Barth
hk9565
Offline Send Email
Jun 6, 2008
9:18 am
225
... It would be easy to make the handles opaque: var nodes = []; function handleToNode(handle) { return handle.__node__; } function nodeToHandle(node) { if...
David-Sarah Hopwood
david.hopwood@...
Send Email
Jun 7, 2008
2:43 am
226
... I was slightly unclear here. Encapsulation of the underlying DOM node objects from the script is required; in the implementation I suggested, that is...
David-Sarah Hopwood
david.hopwood@...
Send Email
Jun 7, 2008
2:57 am
227
... [...] ... [...] ... This will leak memory on IE (even after the nodes array has become unreferenced after leaving the page), because JScript's excuse for a...
David-Sarah Hopwood
david.hopwood@...
Send Email
Jun 7, 2008
11:14 pm
228
I have been investigating an idea for a secure cross-site transport. It seems unlikely that no one has done anything like this before, but I can't find any...
Kris Zyp
kriszyp
Online Now Send Email
Jun 9, 2008
5:32 pm
229
Recently I have been working on a new project, dojox.secure, to add a secure mechanism to Dojo for loading and executing untrusted code and widgets, and I...
Kris Zyp
kriszyp
Online Now Send Email
Jun 9, 2008
6:34 pm
230
I am developing an Ajax library for ADsafe. It applies a capability discipline to the dom tree, blocking access to parents and siblings. It wraps collections...
Douglas Crockford
douglascrock...
Offline Send Email
Jun 9, 2008
8:12 pm
231
I created a safe option in JSLint for checking the safe subset. The adsafe option assumes the safe option, and additionally checks for ADsafe widget...
Douglas Crockford
douglascrock...
Offline Send Email
Jun 21, 2008
11:33 pm
232
On Fri, Jun 27, 2008 at 1:44 AM, Mario Heiderich ... Wow. No, we had no idea. I admit that I am shocked that the one tight encapsulation mechanism in...
Mark S. Miller
erights@...
Send Email
Jun 27, 2008
4:03 pm
Messages 203 - 232 of 309   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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