rspec/rules/S3330/python/rule.adoc
Egon Okerman 6417c38013
Modify rule S2092, S3330, S4830, S5131, S5144: Revert FastAPI changes (#3408)
The PRs #3365, #3374, #3386, #3391 and #3392 were merged before
implementation. This reverts them, to be merged only once implemented.

## Review

A dedicated reviewer checked the rule description successfully for:

- [ ] logical errors and incorrect information
- [ ] information gaps and missing content
- [ ] text style and tone
- [ ] PR summary and labels follow [the
guidelines](https://github.com/SonarSource/rspec/#to-modify-an-existing-rule)
2023-11-06 15:58:47 +00:00

59 lines
1.0 KiB
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:
[source,python]
----
from flask import Response
@app.route('/')
def index():
response = Response()
response.set_cookie('key', 'value', httponly=True) # Compliant
return response
----
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)
=== on 28 Oct 2019, 07:43:14 Alexandre Gigleux wrote:
To be reviewed: "Sensitive" comment is missing on the "Sensitive Code Examples" section.
=== on 28 Oct 2019, 15:17:04 Tolun Ardahanli wrote:
Thank you for review. I updated.
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]