rspec/rules/S106/cfamily/rule.adoc

38 lines
898 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
include::../description.adoc[]
== Noncompliant Code Example
2022-02-04 17:28:24 +01:00
[source,cpp]
2020-06-30 10:16:44 +02:00
----
std::cout << "My Message"; // Noncompliant
std::cerr << "My Message"; // Noncompliant
printf("My Message"); // Noncompliant
----
== Compliant Solution
2022-02-04 17:28:24 +01:00
[source,cpp]
2020-06-30 10:16:44 +02:00
----
Log().Get(logINFO) << "My Message";
----
== See
* https://owasp.org/Top10/A09_2021-Security_Logging_and_Monitoring_Failures/[OWASP Top 10 2021 Category A9] - Security Logging and Monitoring Failures
* https://www.owasp.org/www-project-top-ten/2017/A3_2017-Sensitive_Data_Exposure[OWASP Top 10 2017 Category A3] - Sensitive Data Exposure
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[]