
Product
Socket Now Protects the Microsoft Edge Extension Ecosystem
Enterprise security teams can now detect malware, credential theft, suspicious network activity, and risky updates across Microsoft Edge extensions.
@decionis/aws-lambda-guard
Advanced tools
Shadow-default Decionis guard for AWS Lambda and EventBridge Pipes — inline policy gating that calls the Decionis-hosted decision graph over PrivateLink.
Shadow-default Decionis guard for AWS Lambda and EventBridge Pipes. It is the customer-VPC data plane for Decionis on AWS Marketplace: a thin interceptor that calls the Decionis-hosted decision graph (over AWS PrivateLink) before an irreversible action runs, and blocks/holds it when policy says so. No policy logic lives here.
decision_type runs in SHADOW (evaluate + record, never block)
until it is explicitly promoted to ENFORCEMENT via enforcedDecisionTypes.failOpen: false (or DECIONIS_FAIL_OPEN=false) for fail-closed deployments.REJECT → block, REVIEW/ESCALATE → hold, APPROVE → allow.import { createLambdaGuard, resolveGuardConfigFromEnv } from "@decionis/aws-lambda-guard";
const guard = createLambdaGuard<MyEvent>({
config: resolveGuardConfigFromEnv(),
buildDecisionRequest: (event) => ({
decision_type: "PIPELINE_WRITE",
context: { table: event.table, rows: event.rows },
idempotency_key: event.id,
}),
});
export const handler = guard.wrapHandler(async (event) => {
// Only runs when the action is allowed; throws GuardBlockedError otherwise.
return writeToWarehouse(event);
});
import { createPipesEnrichment, resolveGuardConfigFromEnv } from "@decionis/aws-lambda-guard";
export const handler = createPipesEnrichment<PipeRecord>({
config: resolveGuardConfigFromEnv(),
buildDecisionRequest: (record) => ({ decision_type: record.detailType, context: record.detail }),
onDecision: async (decision, record) => {
if (decision.action !== "allow") await quarantine(record, decision); // route to DLQ target
},
});
Set by the customer-deployed CloudFormation stack:
| Var | Required | Default | Meaning |
|---|---|---|---|
DECIONIS_BASE_URL | ✓ | — | PrivateLink endpoint of the hosted decision graph |
DECIONIS_API_KEY | ✓ | — | Org-scoped API key |
DECIONIS_ORG_ID | ✓ | — | Entitled Decionis org id |
DECIONIS_ENFORCED_DECISION_TYPES | (none) | Comma list promoted to ENFORCEMENT | |
DECIONIS_FAIL_OPEN | true | false to fail closed | |
DECIONIS_TIMEOUT_MS | 4000 | Per-call timeout |
FAQs
Shadow-default Decionis guard for AWS Lambda and EventBridge Pipes — inline policy gating that calls the Decionis-hosted decision graph over PrivateLink.
The npm package @decionis/aws-lambda-guard receives a total of 11 weekly downloads. As such, @decionis/aws-lambda-guard popularity was classified as not popular.
We found that @decionis/aws-lambda-guard 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.

Product
Enterprise security teams can now detect malware, credential theft, suspicious network activity, and risky updates across Microsoft Edge extensions.

Research
/Security News
Socket researchers found 18 Chrome extensions and one Edge extension delivering a wallet drainer, credential theft, and other malicious payloads.

Product
Create ClickUp tasks from Socket alerts, automate ticketing with custom rules, and keep alert and task status synchronized.