Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated recommendation.md for malformed android intents #423

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 2 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, including the Intents sent to your application, meet the expected format and content while rejecting any malformed inputs. It’s also important to implement exception handling so that the application gracefully handles errors without crashing.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure what is meant by "Intents" here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good pick up here. I've updated the wrong recommendation text here. This is meant for Application-Level Denial-of-Service (DoS) > App Crash > Malformed Android Intents.
I'll update accordingly and close this PR once complete.


For more information, refer to the following resources:

Expand Down