| By Douglas Crockford | Article Rating: |
|
| June 4, 2008 10:15 PM EDT | Reads: |
5,100 |
Yahoo! User Interface BlogCooperating applications, such as mashups, must be able to exchange objects with robust interfaces. An object must be able to encapsulate its state such that the state can be modified only as permitted by its own methods. JavaScript’s objects are soft and currently the language does not include any means to harden them, so an attacker can easily access the fields directly and replace the methods with his own.
Fortunately, JavaScript provides the means to construct durable objects that can perfectly guard their state by using a variation of the Module Pattern. You’ll recall that the Module Pattern makes it possible to make an object with privileged methods. Privileged methods are able to access the private state of the constructor’s closure. By adding one simple rule, we can easily generate secure objects:
A durable object contains no visible data members, and its methods use neitherThis is a template for a durable constructor:thisnorthat.
function durable(parameters) { var that = {} or the product of another durable constructor; var private variables; function method() { … }
that.method = method;return that; } Define all of your methods as private methods. The methods you choose to expose to the public get copied into that. None of the functions defined or inherited make use of
that or this. We can give the object created by the durable constructor to untrusted code. That code will be unable to get direct access to the private state. It can replace the methods with its own methods, but that only reduces the usefulness of the object to the attacker. It does not weaken or confuse the object. Each method is a capability. The object is just a collection of capabilities. Durable objects allow code from multiple (possibly untrusted) parties to cooperate. Durable objects can be expressed in a safe subset of JavaScript, such as ADsafe or Cajita.
[This appeared originally here and is republished by kind permission of the author, who retains copyright.]
Published June 4, 2008 Reads 5,100
Copyright © 2008 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Douglas Crockford
Douglas Crockford, an architect at Yahoo!, is an AJAXWorld regular. A technologist of parts, he has developed office automation systems, done research in games and music at Atari, and been both Director of Technology at Lucasfilm and Director of New Media at Paramount. He was the founder and CEO of Electric Communities/Communities.com and the founder and CTO of State Software, where he discovered JSON. He is interested in Blissymbolics, a graphical, symbolic language, and is developing a secure programming language.
- United Planet offers practical portal building tips for SMBs
- The Power of Google and the Promise of Cloud Computing
- Unlocking the Cloud with Enterprise Private PaaS
- The Bunker achieves PCI DSS Compliance
- Developing APIs for the Cloud
- Qt DevDays 2009 - Munich
- Big Data Kills 30-Year-Old Market
- Excuse Me But Is That a Gazebo On Your Site?!
- Securing the Cloud and Establishing a Level of Trust
- SproutCore Task Manager on Google App Engine
- ExaGrid Sets New Standard in Backup Price, Performance and Capacity with Launch of EX10000E Disk Backup System with Data Deduplication and Expanded 100TB GRID Capacity
- The Enterprise Private Cloud - From Infrastructure to Applications
- IBM’s Linux-Based ‘Cloud-in-a-Box’ Makes its First Sale
- Is Microsoft as Free as Open Source?
- United Planet offers practical portal building tips for SMBs
- (Database - Sun) + Oracle = Acquisition
- The Power of Google and the Promise of Cloud Computing
- Unlocking the Cloud with Enterprise Private PaaS
- The Bunker achieves PCI DSS Compliance
- Developing APIs for the Cloud
- Qt DevDays 2009 - Munich
- Big Data Kills 30-Year-Old Market
- What Will the Car of the Future Look Like? Delphi Highlights Technologies That Are Enhancing Vehicle Connectivity
- Testing the Limits with Jack Margo SVP of Developer Shed, (part 1)
- The Top 250 Players in the Cloud Computing Ecosystem
- Red Hat Named "Platinum Sponsor" of Virtualization Conference & Expo
- An Introduction to Ant
- Google Web Toolkit: Finally Java Has Been Put into JavaScript!
- AJAX World RIA Conference News - AJAX & RIA with Server-Side JavaScript
- Python Creator Guido van Rossum to Present the Next-Generation Python 3000
- White Paper: "Extended Validation SSL Certificates"
- CEO of Hyperic, Javier Soltero on SYS-CON.TV
- Perforce Software Delivers State-of-the-Art Application Lifecycle Management
- Rating JRuby, Jython, and Groovy on the Java Platform
- TurboGears - Python-Based Framework for AJAX Web Development
- iPhone 3G Only Looks Cheaper



































