Skip to content

Commit

Permalink
Merge pull request #424 from bugcrowd/malformed-iOS-URL-Schemes
Browse files Browse the repository at this point in the history
Updated recommendation.md for malformed iOS URL Schemes
  • Loading branch information
RRudder committed May 15, 2024
2 parents 8690d8b + f1bcf2b commit 2ea4990
Showing 1 changed file with 1 addition and 1 deletion.
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 URL Schemes sent to your application, meet the expected format and content while rejecting any malformed inputs. This can include limiting URL Schemes to ones that are expected or known in order to prevent attackers from using other URL Schemes to trigger crashes. It’s also important to implement exception handling so that the application gracefully handles errors without crashing.

For more information, refer to the following resources:

Expand Down

0 comments on commit 2ea4990

Please sign in to comment.