rspec/rules/S1466/flex/rule.adoc

24 lines
440 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.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
Security.exactSettings = false;
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
Security.exactSettings = true;
----
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::rspecator-view[]