
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.
86 lines
1.6 KiB
Plaintext
86 lines
1.6 KiB
Plaintext
include::../description.adoc[]
|
|
|
|
include::../ask-yourself.adoc[]
|
|
|
|
include::../recommended.adoc[]
|
|
|
|
== Sensitive Code Example
|
|
|
|
----
|
|
Imports Microsoft.AspNetCore.Mvc
|
|
|
|
Public Class MyController
|
|
Inherits Controller
|
|
|
|
<HttpPost>
|
|
<DisableRequestSizeLimit> ' Sensitive: No size limit
|
|
<RequestSizeLimit(10000000)> ' Sensitive: 10MB is more than the recommended limit of 8MB
|
|
Public Function PostRequest(Model model) As IActionResult
|
|
' ...
|
|
End Function
|
|
|
|
<HttpPost>
|
|
<RequestFormLimits(MultipartBodyLengthLimit = 8000000)> ' Sensitive: 10MB is more than the recommended limit of 8MB
|
|
Public Function MultipartFormRequest(Model model) As IActionResult
|
|
' ...
|
|
End Function
|
|
|
|
End Class
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
[source,vbnet]
|
|
----
|
|
Imports Microsoft.AspNetCore.Mvc
|
|
|
|
Public Class MyController
|
|
Inherits Controller
|
|
|
|
<HttpPost>
|
|
<RequestSizeLimit(8000000)> ' Compliant: 8MB
|
|
Public Function PostRequest(Model model) As IActionResult
|
|
' ...
|
|
End Function
|
|
|
|
<HttpPost>
|
|
<RequestFormLimits(MultipartBodyLengthLimit = 8000000)> ' Compliant: 8MB
|
|
Public Function MultipartFormRequest(Model model) AS IActionResult
|
|
' ...
|
|
End Function
|
|
|
|
End Class
|
|
----
|
|
|
|
include::../see.adoc[]
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
=== Parameters
|
|
|
|
.fileUploadSizeLimit
|
|
****
|
|
_integer_
|
|
|
|
----
|
|
8000000
|
|
----
|
|
|
|
The maximum size of HTTP requests handling file uploads (in bytes)
|
|
****
|
|
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
|
|
endif::env-github,rspecator-view[]
|