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.
@serverlesshq/nodejs
Advanced tools
A Node.js client for working with ServerlessHQ. Use this only if there isn't a premade adapter for the framework you are using.
npm install --save @serverlesshq/nodejs
import Client from "@serverlesshq/nodejs"
const client = new Client("secret token here")
// this will be useful for viewing analytics about your jobs
const queueName = "anything/you/want"
// the data your job needs to operate, can be any javascript object
const jobPayload = { key: value }
// the callback url to use to handle the job
const callbackUrl = "https://www.yoursite.com/api/queues/queue-name"
await client.enqueue({ queueName, payloadJSON, callbackUrl })
// depending on the framework you are using this will be different
// but you'll need some way to receive incoming requests to a specific endpoint
app.post('/api/queues/queue-name', (req, res) => {
const webhookSignature = req.headers['shq-webhook-signature']
const rawPayload = req.body
// verify the request is coming from serverlesshq.com
const jobPayload = client.verifyAndDecrypt(rawPayload, webhookSignature)
if(!jobPayload) {
res.status(200).json("{error: 'invalid signature'}")
return
}
// actually do the job using data in jobPayload
res.status(200).end()
})
ServerlessHQ supports encrypting the job payload data so that our servers never have access to potentially sensitive information. To enable this feature simply set a 32 character encryption key using the environment variable SHQ_ENCRYPTION_KEY
and the client library will automatically encrypt and decrypt the payload using this key.
FAQs
A Node.js client for working with serverlesshq.com
The npm package @serverlesshq/nodejs receives a total of 0 weekly downloads. As such, @serverlesshq/nodejs popularity was classified as not popular.
We found that @serverlesshq/nodejs 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.