
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
Official UUAID SDK — durable, verifiable identity + certification for AI agents (the SSL/CA for agents).
The official client for UUAID — give your AI agent a permanent, verifiable identity and encrypted, quantum-ready memory that outlives the session.
npm i @uuaid/sdk
import { UuaidClient, generateVaultKey } from "@uuaid/sdk";
// One call gets you a free-tier key (10 MB encrypted memory / agent):
const { api_key } = await UuaidClient.signup("My Agent Lab");
const uuaid = new UuaidClient({ apiKey: api_key });
// A permanent identity — mint once, reuse forever:
const { uuaid: id } = await uuaid.registerAgent({ display_name: "Aria" });
// Encrypted memory that survives across sessions (encryption is client-side):
const vaultKey = generateVaultKey(); // uvk_… keep it secret
await uuaid.saveMemory(id, "core/persona", "I remember the harbor.", vaultKey);
const back = await uuaid.loadMemory(id, "core/persona", vaultKey);
registerAgent, registerVersion, resolve (public).saveMemory / loadMemory (client-side encrypted), plus
raw envelope APIs and the full @uuaid/vault
toolkit re-exported as vault (hybrid post-quantum mode included).verify (a real credential check: signature + active + not-expired),
ledgerVerify (the hash-chained, Polygon-anchored ledger).listCertifications, certifyStart / certifySubmit
(examined at Open Agent University, brokered through UUAID).The service stores ciphertext only; your memory's content hash is anchored on Polygon. Docs: api.uuaid.org/docs · Apache-2.0
FAQs
Official UUAID SDK — durable, verifiable identity + certification for AI agents (the SSL/CA for agents).
We found that @uuaid/sdk 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
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.