rspec/rules/S1466/flex/rule.adoc

14 lines
302 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
The Security.exactSettings value should remain set at the default value of true. Setting this value to false could make the SWF vulnerable to cross-domain attacks.
== Noncompliant Code Example
----
Security.exactSettings = false;
----
== Compliant Solution
----
Security.exactSettings = true;
----