38 lines
622 B
Plaintext
Raw Normal View History

2021-05-11 01:20:07 +00:00
include::../description.adoc[]
include::../ask-yourself.adoc[]
include::../recommended.adoc[]
== Sensitive Code Example
[source,javascript]
2021-05-11 01:20:07 +00:00
----
window.open("https://example.com/dangerous"); // Sensitive
2021-05-11 01:20:07 +00:00
----
== Compliant Solution
2022-02-04 17:28:24 +01:00
[source,javascript]
2021-05-11 01:20:07 +00:00
----
window.open("https://example.com/dangerous", "WindowName", "noopener");
----
include::../see.adoc[]
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]