
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.
loopback-connector-rethinkdb
Advanced tools
Loopback connector for RethinkDB.
In your application root directory, enter this command to install the connector:
npm install loopback-connector-rethinkdb --save
This installs the module from npm and adds it as a dependency to the application's package.json file.
Add an entry in the application's /server/datasources.json :
"mydb": {
"url": "http://username:password@host.com:28015/dbName"
"connector": "rethinkdb"
}
Edit datasources.json to add any other additional properties that you require.
| Property | Type | Description |
|---|---|---|
| connector | String | Connector name, “loopback-connector-rethinkdb” |
| url | String | Full connection url. Overrides other connection settings |
| database | String | Database name |
| host | String | Database host name |
| password | String | Password to connect to database |
| port | Number | Database TCP port |
| username | String | Username to connect to database |
You can specify an 'additionalSettings' property:
"additionalSettings": {
"ssl": {
"ca": "${RETHINKDB_SSL}"
}
}
RETHINKDB_SSL contains the base64encoded SSL cert.
The connector has support for RethinkDB changefeeds. You can access to the functionality by doing:
ModelName.dataSource.connector.changeFeed(Model.modelName, filter, options);
The filter parameter is the standard loopback filtering object.
The options parameter can have a throttle property, specified in milliseconds. Disabled by default.
PS: If a change happens, the changefeed function will return the entire results set. Delta results are on the roadmap
FAQs
RethinkDB connector for Loopback.io
We found that loopback-connector-rethinkdb 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
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.