Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Recommendation(s)

It is recommended to perform input validation to limit the total request size, and file upload and extension sizes. and, It’s also important to prevent any user input based function or threading interaction. These preventative measures help against application-level DoS attacks.
It is recommended to perform input validation to ensure that all inputs meet the expected format and content, while rejecting any malformed inputs. Input validation should consider limits to the total request, file upload, and extension sizes. It’s also important to implement exception handling so that the application gracefully handles errors without crashing. These preventative measures help against application-level DoS attacks.

For more information, refer to the following resources:

Expand Down