
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@korora-tech/dhd
Advanced tools
A TypeScript-based declarative configuration management system for automating system setup and maintenance.
DHD provides a modular, declarative approach to system configuration using a DAG (Directed Acyclic Graph) based execution model. It supports various action types including file management, package installation, command execution, and HTTP requests.
bun install
# Run with a specific module
bun run cli.ts path/to/module.ts
# Run with visualization
bun run cli.ts --visualize path/to/module.ts
Modules are TypeScript files that export a configuration object:
import { defineModule } from './core/module-builder';
export default defineModule({
name: 'example-module',
actions: [
{
type: 'package',
name: 'install-git',
packages: ['git']
},
{
type: 'file',
name: 'create-config',
path: '~/.gitconfig',
content: '[user]\n name = Your Name'
}
]
});
# Run tests
bun test
# Publish package
bun run publish
FAQs
DHD - Dial Home Device - Configuration management framework
We found that @korora-tech/dhd demonstrated a healthy version release cadence and project activity because the last version was released less than 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 researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.