Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@agoric/lockdown

Package Overview
Dependencies
Maintainers
5
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agoric/lockdown - npm Package Compare versions

Comparing version 0.1.2-dev-bda9206.0 to 0.1.2-dev-bf29060.0

12

commit-debug.js

@@ -67,2 +67,14 @@ // commit-debug.js - debug version of commit.js

// consoleTaming: 'unsafe',
// Domain taming causes lockdown to throw an error if the Node.js domain
// module has already been loaded, and causes loading the domain module
// to throw an error if it is pulled into the working set later.
// This is because domains may add domain properties to promises and other
// callbacks and that these domain objects provide a means to escape
// containment.
// However, our platform still depends on systems like standardthings/esm
// which ultimately pull in domains.
// For now, we are resigned to leave this hole open, knowing that all
// contract code will be run under XS to avoid this vulnerability.
domainTaming: 'unsafe',
});

10

package.json
{
"name": "@agoric/lockdown",
"version": "0.1.2-dev-bda9206.0+bda9206",
"version": "0.1.2-dev-bf29060.0+bf29060",
"description": "wrappers for locking down SES the Agoric way",

@@ -19,3 +19,3 @@ "type": "module",

"dependencies": {
"ses": "^0.14.3"
"ses": "^0.15.3"
},

@@ -49,10 +49,6 @@ "files": [

],
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"publishConfig": {
"access": "public"
},
"gitHead": "bda920694c7ab573822415653335e258b9c21281"
"gitHead": "bf290606171e44f2de4e2a358c16372f2af96471"
}

@@ -79,5 +79,13 @@ // pre.js - set up the default lockdown function

}
rawLockdown(options);
rawLockdown({
...options,
// See comment on domainTaming below.
domainTaming: 'unsafe',
});
} else if (defaultOptions) {
rawLockdown(defaultOptions);
rawLockdown({
...defaultOptions,
// See comment on domainTaming below.
domainTaming: 'unsafe',
});
} else {

@@ -142,2 +150,14 @@ rawLockdown({

// consoleTaming: 'unsafe',
// Domain taming causes lockdown to throw an error if the Node.js domain
// module has already been loaded, and causes loading the domain module
// to throw an error if it is pulled into the working set later.
// This is because domains may add domain properties to promises and other
// callbacks and that these domain objects provide a means to escape
// containment.
// However, our platform still depends on systems like standardthings/esm
// which ultimately pull in domains.
// For now, we are resigned to leave this hole open, knowing that all
// contract code will be run under XS to avoid this vulnerability.
domainTaming: 'unsafe',
});

@@ -144,0 +164,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc