33 lines
716 B
Plaintext
33 lines
716 B
Plaintext
include::../description.adoc[]
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
== Sensitive Code Example
|
|
|
|
----
|
|
$value = "1234 1234 1234 1234";
|
|
|
|
// Review this cookie as it seems to send sensitive information (credit card number).
|
|
setcookie("CreditCardNumber", $value, $expire, $path, $domain, true, true); // Sensitive
|
|
setrawcookie("CreditCardNumber", $value, $expire, $path, $domain, true, true); // Sensitive
|
|
----
|
|
|
|
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[]
|