
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@graasp/etherpad-api
Advanced tools
Promised based query to etherpad-lite
It uses request-promise-native to call each Etherpad API endpoints
The API are similar
But there is some differences:
Etherpad-api will reject any Etherpad response which code isn't 0const Etherpad = require('@hiswe/etherpad-api')
const etherpad = new Etherpad({
apiKey: `6b95f6d270f4f719f1b70e8ad2f742deef94c5bccee7d495250c0fbb8cecefc7`,
// API KEY
url: `http://my-etherpad-server`,
// default: http://0.0.0.0:9001 (local etherpad server)
// full URL to your etherpad server
apiVersion: `1.0.0`
// default: latest (1.2.13)
// If you want to prevent your application from calling unsupported methods
timeout: 7000
// default: 1000
// request timeout
})
// now you have access to all etherpad methods…
As an example: calling getHTML
etherpad
.getHTML({ padID: `my-pad` })
.then(data => console.log(data))
.catch(error => console.log(error))
if you don't want to error on etherpad errors:
add false as the second parameter
etherpad
// add `false` as the second parameter
.getHTML({ padID: `a-pad-that-does-not-exist` }, false)
.then(data => {
// data will be null because “padID does not exist”
assert.equal(data, null)
console.log(data)
})
.catch(error => console.log(error))
const express = require('express')
const Etherpad = require('@hiswe/etherpad-api')
const app = express()
const etherpad = new Etherpad({
url: `http://my-etherpad-server`,
apiKey: `6b95f6d270f4f719f1b70e8ad2f742deef94c5bccee7d495250c0fbb8cecefc7`,
})
app.get(`/pads/:padID`, (req, res) => {
const { padID } = req.params
etherpad
.getHTML({ padID })
.then(padData => res.send(padData))
.catch(error => res.status(error.statusCode).json(error))
})
alternatively you could use/extend the original class
const Etherpad = require('@hiswe/etherpad-api')
class MyEtherpad extends Etherpad {
// …you can extend the class here
}
const etherpad = new MyEtherpad({
url: `http://my-etherpad-server`,
apiKey: `6b95f6d270f4f719f1b70e8ad2f742deef94c5bccee7d495250c0fbb8cecefc7`,
})
See CHANGELOG.md
npm installnpm testFAQs
Promised based query to etherpad-lite
We found that @graasp/etherpad-api 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.