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.
docker-secreto
Advanced tools
"Secreto" is the word for secret, in Spanish.
This provides a super simple way to pull docker secret
passwords into your code.
npm i -S docker-secreto
const dockerSecreto = require('docker-secreto')
let values = dockerSecreto()
console.info(values)
{
secret_name: 'secret value goes here',
another_password: 'password123' // because that's what you should use
}
const dockerSecreto = require('docker-secreto')
let values = dockerSecreto('secret_name', 'Default Value')
console.info(values)
'secret value goes here'
const dockerSecreto = require('docker-secreto')
let values = dockerSecreto('secret_name', 'Default Value')
console.info(values)
'Default Value'
FAQs
pull docker secrets into an object
The npm package docker-secreto receives a total of 1 weekly downloads. As such, docker-secreto popularity was classified as not popular.
We found that docker-secreto 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’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.