
Research
/Security News
10 npm Typosquatted Packages Deploy Multi-Stage Credential Harvester
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.
@bitte-ai/agent-sdk
Advanced tools
This is a TypeScript SDK for building agents on the Bitte Protocol.
Define and validate Agent input parameters by example:
Suppose we want to build an agent that transfers an amount of a token to a recipient (i.e. an ERC20 transfer).
// Declare Route Input
interface Input {
chainId: number;
amount: number;
token: string;
recipient: Address;
}
const parsers: FieldParser<Input> = {
chainId: numberField,
// Note that this is a float (i.e. token units)
amount: floatField,
token: addressOrSymbolField,
recipient: addressField,
};
Then the route could be implemented as in examples/erc20transfer.ts - which utilizes other utils from this package.
To install dependencies:
bun install
To run:
bun run index.ts
This project was created using bun init in bun v1.1.33. Bun is a fast all-in-one JavaScript runtime.
FAQs
Agent SDK for Bitte Protocol
We found that @bitte-ai/agent-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.