Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 431 Bytes

no-eval.md

File metadata and controls

13 lines (7 loc) · 431 Bytes

Pattern: Use of eval()

Issue: -

Description

Disallows eval function invocations.

Rationale: eval() is dangerous as it allows arbitrary code execution with full privileges. There are alternatives for most of the use cases for eval().

Further Reading