Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Exoform takes a module defined in CommonJS style, and recursively transforms it, and its dependencies into asynchronous content-addressed require calls.
This gives you the whole program, and its dependencies, in a content-addressable manner, that you could later require from other programs.
Exoform uses cdump, for now, to store its blobs
Input: test/req/one.js
var a = require('./two.js')
var b = require('./two.js').blorp
var c = require('./two.js').blorp()
var x = { y: { z: {} } }
x.y.z.two = require('./two.js')
console.log(x.y.z.two.blorp())
console.log(a.blorp())
console.log(b())
console.log(c)
exoform test/req/one.js | xargs cdump get
Output:
var __meta
if (typeof arguments !== 'undefined') {
__meta = arguments[0]
} else {
__meta = {
exoform: require('exoform'),
define: function () {},
refs: [] } }
var exoform = __meta.exoform
var exports = __meta.mod
var module = { exports: exports }
;
__meta.exoform.require(__meta.refs, '6aa7e2e45e38d55c765ac44dbd98f5ce09f27c60696b823e70cf547816c38d31', function (a) {
__meta.exoform.require(__meta.refs, '6aa7e2e45e38d55c765ac44dbd98f5ce09f27c60696b823e70cf547816c38d31', function (b) {
b = b.blorp
__meta.exoform.require(__meta.refs, '6aa7e2e45e38d55c765ac44dbd98f5ce09f27c60696b823e70cf547816c38d31', function (c) {
c = c.blorp()
var x = { y: { z: {} } }
__meta.exoform.require(__meta.refs, '6aa7e2e45e38d55c765ac44dbd98f5ce09f27c60696b823e70cf547816c38d31', function (two) {
x.y.z.two = two
console.log(x.y.z.two.blorp())
console.log(a.blorp())
console.log(b())
console.log(c)
;
__meta.define(module.exports)
})})})})
The dependency loaded (test/req/two.js):
cdump get 6aa7e2e45e38d55c765ac44dbd98f5ce09f27c60696b823e70cf547816c38d31
outputs:
var __meta
if (typeof arguments !== 'undefined') {
__meta = arguments[0]
} else {
__meta = {
exoform: require('exoform'),
define: function () {},
refs: [] } }
var exoform = __meta.exoform
var exports = __meta.mod
var module = { exports: exports }
;__meta.exoform.require(__meta.refs, '47171d069057c67c3f6e8cd2b409e3ea38920881f58407ed1b1ac00b27d8f8ab', function (three) {
module.exports = { blorp: function () { return 'testblorp ' + three('extra')} }
;
__meta.define(module.exports)
})
Extended support for the browserify ecosystem and browser ports of node modules
FAQs
Transform CommonJS to asynchronous content-addressed modules.
We found that exoform demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.