
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@sphereon/pe-models
Advanced tools
As with most security- and cryptography-related tools, the overall security of your system will largely depend on your design decisions (which key types you will use, where you'll store the private keys, what you put into your credentials, and so on.)
This is an interpretation of the Presentation Exchange v1.0.0 specification as models.
It allows you to generate objects consistently while remaining compliant and consistent with the DIF specification.
The models generated can be used in your project. This is an example where you create a new NPM
project to use typescript
language, import and use JwtObject
. Similarly, you can import and use other objects.
cd '<workspace>'
mkdir my-pe-models-consumer-prj
cd my-pe-models-consumer-prj
npm init
npm init
asks few questions. The default answer to those questions can be selected.
To use the models generated as a result of above in step 1
npm install
npm install --save @sphereon/pe-models
npm install --save ts-node
Create a folder named scripts
mkdir scripts
Create a file in 'scripts' named consumer-script.ts
with following contents
import {JwtObject} from '@sphereon/pe-models'
var jwtObject : JwtObject = {
alg : ['someAlgorithm']
};
console.log(jwtObject);
In package.json
add a script "my-pe-models-consumer-script": "ts-node scripts/consumer-script.ts"
in scripts section. Resulting Package.json may look like following.
{
"name": "my-pe-models-consumer-prj",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"my-pe-models-consumer-script": "ts-node scripts/consumer-script.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sphereon/pe-models": "0.0.5",
"ts-node": "^9.1.1"
}
}
In terminal run following command from the <workspace>/my-pe-models-consumer-prj
cd '<workspace>/my-pe-models-consumer-prj'
npm run my-pe-models-consumer-script
You should expect this to be printed on console.
{ alg: [ 'someAlgorithm' ] }
v0.0.5 - 2021-08-25
FAQs
DIF Presentation Exchange OpenAPI models by Sphereon
We found that @sphereon/pe-models demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.