rspec/rules/S5753/vbnet/rule.adoc

76 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-01-13 11:35:08 +00:00
include::../description.adoc[]
include::../ask-yourself.adoc[]
include::../recommended.adoc[]
== Sensitive Code Example
At Controller level:
----
2021-01-14 04:05:20 +00:00
<ValidateInput(False)>
2021-01-13 11:35:08 +00:00
Public Function Welcome(Name As String) As ActionResult
...
End Function
----
At application level, configured in the Web.config file:
----
<configuration>
<system.web>
<pages validateRequest="false" />
...
<httpRuntime requestValidationMode="0.0" />
</system.web>
</configuration>
----
2021-01-13 11:35:08 +00:00
== Compliant Solution
At Controller level:
----
2021-01-14 04:05:20 +00:00
<ValidateInput(True)>
2021-01-13 11:35:08 +00:00
Public Function Welcome(Name As String) As ActionResult
...
End Function
2021-01-16 04:05:14 +00:00
----
2021-01-13 11:35:08 +00:00
or
2021-01-16 04:05:14 +00:00
----
2021-01-13 11:35:08 +00:00
Public Function Welcome(Name As String) As ActionResult
...
End Function
----
At application level, configured in the Web.config file:
----
<configuration>
<system.web>
<pages validateRequest="true" />
...
<httpRuntime requestValidationMode="4.5" />
</system.web>
</configuration>
----
2021-01-13 11:35:08 +00:00
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[]