
Security Fundamentals
Turtles, Clams, and Cyber Threat Actors: Shell Usage
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
cabot-db-config
Advanced tools
Automate your configuration of Cabot monitoring.
Cabot is a self-hosted monitoring and alert service. But unfortunately it lacks an HTTP API to automate configuration.
cabot-db-config uses a Javascript object to insert your configuration directly on your Cabot database.
Cabot let's you create multiple services, instances and checks. cabot-db-config currently supports a configuration that creates N services, each one running on N instances, and with N checks. A default ping check is created for every newly created instance.
cabot-db-config is the spiritual sequel to cabot-zombie. It is way faster and more reliable.
npm i -S cabot-db-config
createServices.js
const cabotDbConfig = require('cabot-db-config')
const config = require('./config')
cabotDbConfig(config)
config.js
module.exports = {
connectionString: 'postgres://docker:docker@my-host:1234/docker',
data: {
services: [
{
name: 'my-service',
instances: [
{
address: 'my-host',
checks: [
{
type: 'http',
endpoint: 'http://my-host/index.html',
text_match: 'Should contain this text',
},
],
},
{
address: 'my-other-host',
...
},
],
},
{
name: 'my-other-service',
instances: [
...
],
},
],
},
}
cabot-db-config fits perfectly the configuration that I want to do, but it isn't very generic.
Any pull requests in that sense would be greatly appreciated.
MIT
FAQs
Automate your configuration of Cabot monitoring.
The npm package cabot-db-config receives a total of 3 weekly downloads. As such, cabot-db-config popularity was classified as not popular.
We found that cabot-db-config 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.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.