Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Safe evaluation of strings as math expressions
Install Python 3.6 or newer.
Install
# or PyPI
pip install math_eval
Use in situations where you need safe evaluation of strings as math expressions
>>> from math_eval import compute, safe_compute
>>> fun = safe_compute("x*y")
>>> fun('a', 3)
Traceback (most recent call last):
...
ValueError: Functions produced by compute() with safe = True do not accept non-numeric arguments.
>>> fun(3.4, 3)
10.2
>>> fun2 = compute("str(z) + x*y")
>>> fun2('a', 3, 3.5)
'3.5aaa'
>>> print(fun2.__doc__)
str(z) + x*y
Args are positional-only in the order ['x', 'y', 'z'].
>>> compute("(3*4.5**2 >= 17) | 1/-5 == 3")
True
WARNING
safe_compute()
is not safe if arbitrary ufunctions are added, and compute()
is probably unsafe in countless ways I haven't thought of as it is.
For instance, if the chr
and eval
ufunctions were introduced, even safe_compute()
could be used to evaluate artibrary Python expressions by translating integers into strings, and evaluating those strings with the normal Python interpreter.
I (Mark J. Olson) am not knowledgeable about computer security, so think carefully about possible workarounds for safe_compute's safety features before deploying it in a safety-sensitive setting.
Be sure to read the [contribution guidelines]
(https://github.com/molsonkiko/math_eval/blob/main/CONTRIBUTING.md).
TODO: add something to show test coverage of code (Coverage URL does not exist)
FAQs
Tool for safe (or less safe) evaluation of strings as math expressions
We found that math-eval 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.