calculator-py

PassAudited by VirusTotal on May 10, 2026.

Findings (1)

The skill implements a calculator using the Python `eval()` function in `scripts/calc.py` to process user-provided mathematical expressions. While it attempts to sandbox the execution by clearing `__builtins__`, this is a known insecure pattern in Python that is susceptible to Remote Code Execution (RCE) through object introspection and attribute access. The inclusion of the `numpy` and `mpmath` modules in the evaluation namespace further increases the attack surface for escaping the restricted environment.