
When an include is not surrounded by empty lines, its content is inlined on the same line as the adjacent content. That can lead to broken tags and other display issues. This PR fixes all such includes and introduces a validation step that forbids introducing the same problem again.
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
include::../description.adoc[]
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
== Sensitive Code Example
|
|
|
|
----
|
|
string username = "admin";
|
|
string password = "Admin123"; // Sensitive
|
|
string usernamePassword = "user=admin&password=Admin123"; // Sensitive
|
|
string url = "scheme://user:Admin123@domain.com"; // Sensitive
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
[source,csharp]
|
|
----
|
|
string username = "admin";
|
|
string password = GetEncryptedPassword();
|
|
string usernamePassword = string.Format("user={0}&password={1}", GetEncryptedUsername(), GetEncryptedPassword());
|
|
string url = $"scheme://{username}:{password}@domain.com";
|
|
|
|
string url2 = "http://guest:guest@domain.com"; // Compliant
|
|
const string Password_Property = "custom.password"; // Compliant
|
|
----
|
|
|
|
== Exceptions
|
|
|
|
* Issue is not raised when URI username and password are the same.
|
|
* Issue is not raised when searched pattern is found in variable name and value.
|
|
|
|
include::../see.adoc[]
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
include::../parameters.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
|
|
endif::env-github,rspecator-view[]
|