secure ecmascript name subject to change douglas crockford yahoo!

43
Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo! http://javascript.crockford.com/ses.ppt

Upload: morgan-law

Post on 26-Mar-2015

217 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Secure ECMAScript

Name Subject To Change

Douglas Crockford

Yahoo!

http://javascript.crockford.com/ses.ppt

Page 2: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

JavaScript's Security Model Is Intolerable

• The global object-based design subjects all applications to XSS attacks.

• Third party scripts get first party privileges.

• Unintentional injection of third party scripts is called XSS.

• New mashup-based application patterns call for intentional injection of third party scripts.

• This is dangerous.

Page 3: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Vats

• Adapting Google's Gears or Adobe's AIR to provide communicating containment vessels is a partial solution.

• Provides cooperation under mutual suspicion.

• Heavyweight.

• Deployment is difficult.

• Still subject to XSS attacks.

Page 4: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

JavaScript Is the Problem

• We need to replace JavaScript with a similar language that has the same expressive power, but that provides cooperation under mutual suspicion at the language level.

• The new language must break compatibility with ES3.

• The ES4 proposal is attempting to solve a different problem.

Page 5: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Interim Solution

Safe JavaScript Subsets

Page 6: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

ADsafe• ADsafe is a JavaScript subset that adds

capability discipline by deleting features that cause capability leakage. JSLint understands ADsafe.

• No global variables or functions may be defined.

• No global variables or functions can be accessed except the ADSAFE object.

• The [] subscript operator may not be used.• These words cannot be used: apply call callee caller clone constructor eval new prototype source this toSource toString watch

• Words ending in __ cannot be used.

Page 7: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

ADSAFE

• The ADSAFE object provides all the capabilities to the guest program.

• The guest program must not be allowed direct access to the global object or any form of eval.

• The guest program must not be allowed direct access any DOM element.

• The guest program's access to the DOM must be restricted to its assigned subtree.

Page 8: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Dangers

• There may still be undiscovered weaknesses in ECMAScript and its many implementations.

• Those implementations are changing, introducing new weaknesses.

• The wrappers must be flawless.

• We are still subject to XSS attacks.

Page 9: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Proposed

• Design a new language, beginning with the ADsafe dialect as the seed, growing new features to enhance expressiveness and productivity without compromising security.

• The new language is designed for capability containment.

Page 10: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

A is an Object.

Object A has state and behavior.

A

Page 11: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Object A has a reference to

Object B.

A

B

An object can have references to other

objects.

has-a

Page 12: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

...because it has a

reference to Object B.

Object A can communicate with Object

B...A

B

Page 13: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Object B provides an

interface that constrains

access to its own state and

references.

A

B

Object A does not get access to Object B's

innards.

Page 14: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Object A does not have a reference to Object C, so Object A cannot communicate with Object

C.

A

BIn an Object

Capability System, an object can only

communicate with objects that it has

references to.

C

Page 15: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

An Object Capability System is produced by constraining the ways that references are

obtained.

A reference cannot be obtained simply by knowing

the name of a global variable or a public class.

Page 16: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

There are exactly three ways to obtain a reference.

1. By Creation.

2. By Construction.

3. By Introduction.

Page 17: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

1. By Creation

If a function creates an object, it gets a reference to

that object.

Page 18: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

2. By Construction

An object may be endowed by its constructor with references.

This can include references in the constructor's context and inherited

references.

Page 19: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

3. By Introduction

A

BC

A has a references to B and C.B has no references, so it cannot communicate with A or C.C has no references, so it cannot communicate with A or B.

Page 20: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

3. By Introduction

A

BC

A calls B, passing a reference to C.

Page 21: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

3. By Introduction

A

BC

B is now able to communicate with C.

It has the capability.

Page 22: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

If references can only be obtained by Creation,

Construction, or Introduction, then you may have a safe

system.

Page 23: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

If references can be obtained in any other way, you do

not have a safe system.

Page 24: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Potential weaknesses include

1. Arrogation.

2. Corruption.

3. Confusion.

4. Collusion.

Page 25: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

1. Arrogation

• To take or claim for oneself without right.

• Global variables.

• public static variables.

• Standard libraries that grant powerful capabilities like access to the file system or the network or the operating system to all programs.

• Address generation.

Page 26: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

2. Corruption

It should not be possible to tamper with or circumvent

the system or other objects.

Page 27: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

3. Confusion

It should be possible to create objects that are not subject to confusion. A confused object can be tricked into misusing

its capabilities.

Page 28: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

4. Collusion

• It must not be possible for two objects to communicate until they are introduced.

• If two independent objects can collude, they might be able to pool their capabilities to cause harm.

• For example, I can give gasoline to one object, and matches to another. I need to be confident that they cannot collude.

Page 29: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Stepping down the power

• Some objects are too dangerous to give to guest code.

• We can give those capabilities to intermediate objects that will constrain the capability.

• For example, an intermediate object for a file system might limit access to a particular device or directory, or limit the size of files, or the number of files, or the longevity of files, or the types of files.

Page 30: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Ultimately, every object should be given exactly the capabilities it needs to do its

work.

Capabilities should be granted on a need-to-do basis.

Information Hiding - Capability Hiding.

Page 31: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Intermediate objects, or facets, can be very light

weight.Class-free languages can be

especially effective.

Page 32: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Guest

DangerousFacet

The Facet object limits the Guest

object's access to the Dangerous

object.

The Guest object cannot tamper

with the Facet to get a direct

reference to the Dangerous

object.

Page 33: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

References are not revocable.

Once you introduce an object, you can't ask it to forget it.

You can ask, but you should not depend on your request

being honored.

Page 34: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Guest

Dangerous

Agency

The Guest object has a reference to an Agency object. The Guest asks for an introduction to

the Dangerous object.

Page 35: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Guest

DangerousFacet

Agency

The Agency object makes a Facet, and gives it to the Guest.

The Facet might be a simple pass through.

Page 36: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Guest

DangerousFacet

Agency

When the Agency wants to revoke the capability, it tells the

Facet to forget its capability.

The Facet is now useless to the Guest.

Page 37: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Guest

DangerousFacet

A Facet can mark requests so that the Dangerous object can know where the request came

from.

Page 38: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Facets

• Very expressive.

• Easy to construct.

• Lightweight.

• Power Reduction.

• Revocation.

• Notification.

• Delegation.

• The best OO patterns are also capability patterns

Page 39: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Good Object Capability Design

is Good Object Oriented

Design

Page 40: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Secure ECMAScript Must Be Incompatible With ES3

• If it were compatible, it would share the weaknesses of ES3.

• Incompatibility gives us license to correct many of the blunders that ES4 must preserve.

• Lacking compatibility in the design process could lead to a lack of feature discipline.

Page 41: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Minimal

• An elegant, minimal language is easier to reason about than an over-featured, maximal language.

• Committees are generally unable to produce minimal designs.

• Design-by-committee.

Page 42: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

Competition

• We invite members to submit designs.

• The TC drafts the rules for the competition, and selects the winner based on the criteria of security, expressiveness, and minimalism.

Page 43: Secure ECMAScript Name Subject To Change Douglas Crockford Yahoo!

The web needs a secure programming language.