
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
github.com/diggs/go-eval
go-eval evaluates boolean or basic arithmetic expressions from strings. It's analogous to a basic form of the eval function often found in dynamic languages.
Examples:
res, err := EvalBool("1 > 2")
log.Print(res)
> false
res, err := EvalBool(`(1 + 3) >= 4 && ("FOO" == "BAR" || "FOO" == "FOO")`)
log.Print(res)
> true
res, err := EvalArithmetic("1 + 2")
log.Print(res)
> 3
res, err := EvalArithmetic("2 - -1")
log.Print(res)
> 3
go-eval leverges the awesome AST and Parser packages that ship in the Go standard library. It constructs an abstract syntax tree from the specified expression and walks the tree to determine the result.
go get github.com/tools/godep
godep restore
go test
PASS
ok github.com/diggs/go-eval 0.005s
Floats are not supported yet. Only boolean and arithmetic expressions are supported, this doesn't support conditionals etc.
FAQs
Unknown package
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 flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.