28 lines
515 B
Plaintext
28 lines
515 B
Plaintext
include::../description.adoc[]
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
== Sensitive Code Example
|
|
|
|
----
|
|
Response.AppendHeader("Access-Control-Allow-Origin", "*") // Sensitive
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
Response.AppendHeader("Access-Control-Allow-Origin", "trustedwebsite.com") // Compliant
|
|
----
|
|
|
|
include::../see.adoc[]
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|