Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@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' ] }
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.