
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
@douglas-agent/sandbank-cloud
Advanced tools
Sandbank Cloud adapter for Sandbank with built-in x402 payment support.
Connect to Sandbank Cloud — managed bare-metal KVM sandboxes with sub-second start times. Pay per sandbox with USDC via the x402 payment protocol, or use an API token for authenticated access.
pnpm add @douglas-agent/sandbank-core @douglas-agent/sandbank-cloud
import { createProvider } from '@douglas-agent/sandbank-core'
import { SandbankCloudAdapter } from '@douglas-agent/sandbank-cloud'
const provider = createProvider(
new SandbankCloudAdapter({
walletPrivateKey: process.env.WALLET_PRIVATE_KEY,
})
)
const sandbox = await provider.create({
image: 'codebox',
resources: { cpu: 2, memory: 1024 },
ports: [[0, 7681], [0, 8080]],
})
const { stdout } = await sandbox.exec('node -e "console.log(42)"')
console.log(stdout) // 42
await provider.destroy(sandbox.id)
const provider = createProvider(
new SandbankCloudAdapter({
apiToken: process.env.SANDBANK_API_TOKEN,
})
)
| Option | Description |
|---|---|
url | Sandbank Cloud API URL (default: https://cloud.sandbank.dev) |
walletPrivateKey | EVM wallet private key (hex, 0x prefix) for x402 USDC payments |
apiToken | Bearer token for authenticated (internal) access — bypasses x402 |
| Capability | Supported |
|---|---|
exec.stream | ✅ |
port.expose | ✅ |
POST /v1/boxes returns HTTP 402 with payment requirementsMIT
FAQs
Sandbank Cloud adapter with x402 payment support
We found that @douglas-agent/sandbank-cloud 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
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.