44 lines
690 B
Plaintext
44 lines
690 B
Plaintext
include::../description.adoc[]
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
== Sensitive Code Example
|
|
|
|
Flask
|
|
|
|
----
|
|
from flask import Response
|
|
|
|
@app.route('/')
|
|
def index():
|
|
response = Response()
|
|
response.set_cookie('key', 'value') # Sensitive
|
|
return response
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
Flask
|
|
|
|
----
|
|
from flask import Response
|
|
|
|
@app.route('/')
|
|
def index():
|
|
response = Response()
|
|
response.set_cookie('key', 'value', secure=True) # Compliant
|
|
return response
|
|
----
|
|
|
|
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[]
|