Unicode Direction Control Characters Detected
Description
The code must not contain any of Unicode Direction Control Characters, as it can lead to improper enforcement of a single, unique action.
Examples
Insecure Code
solidity
string s = "\u202a";Secure Code
solidity
string s = "";Remediation
Remove Unicode Direction Control Characters from the code.
Rule Details
| Field | Value |
|---|---|
| ID | CODE-0737 |
| Category | InsecureConfig |
| Severity | LOW |
| CWE | CWE-837 |
| Confidence | HIGH |
| Impact | LOW |
| Likelihood | LOW |
| Exploitability | COMPLEX |
| Tags | unicode, direction control characters |
| OWASP | N/A |