
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@bufbuild/cel
Advanced tools
This package provides a CEL evaluator for ECMAScript.
Let's evaluate a CEL expression that has the variable name
and uses the strings extension functions:
import { run } from "@bufbuild/cel";
import { STRINGS_EXT_FUNCS } from "@bufbuild/cel/ext/strings";
run(
`name.indexOf('taco') == 0`,
{name: "tacocat"},
{funcs: STRINGS_EXT_FUNCS },
); // true
That's it!
For an example of creating resusable evaluator and more, refer to the example.ts.
The table below maps JS types to CEL types.
Input
column is any value that can be passed to the evaluator as input. (CelInput
)CEL Type
column is the CEL type it will represent at runtime. (CelType
)Output
column is the type of values that are returned by the evaluator, either as returned from eval
or as arguments to function implementations. (CelValue
)Input (JS Type) | CEL Type (runtime) | Output (JS Type) |
---|---|---|
number, {Float,Double}Value | double | number |
bigint, all signed int wrappers | int | bigint |
CelUint, all unsigned int wrappers | uint | CelUint |
string, StringValue | string | string |
Uint8Array, BytesValue | bytes | Uint8Array |
Map, ReflectMap | map | CelMap |
any[], ReflectList | list | CelList |
boolean, BoolValue | bool | boolean |
null | null_type | null |
CelType | type | CelType |
Timestamp, ReflectMessage | timestamp | ReflectMessage |
Duration, ReflectMessage | duration | ReflectMessage |
Message, ReflectMessage, Any | <typeName> | ReflectMessage |
google.protobuf.Value and friends | double/bool/string/list/map/null | number/boolean/string/CelList/CelMap |
FAQs
A CEL evaluator for ECMAScript
The npm package @bufbuild/cel receives a total of 0 weekly downloads. As such, @bufbuild/cel popularity was classified as not popular.
We found that @bufbuild/cel demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.