Skip to content
Merged
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
2 changes: 1 addition & 1 deletion tests/android/MASVS-CODE/MASTG-TEST-0025.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ While the user is providing a STUDENT_ID at `content://sg.vp.owasp_mobile.provid
All app functions that process data coming in through the UI should implement input validation:

- For user interface input, [Android Saripaar v2](https://github.com/ragunathjawahar/android-saripaar "Android Saripaar v2") can be used.
- For input from IPC or URL schemes, a validation function should be created. For example, the following determines whether the [string is alphanumeric](https://stackoverflow.com/questions/11241690/regex-for-checking-if-a-string-is-strictly-alphanumeric "Input Validation"):
- For input from IPC or URL schemes, a validation function should be created. For example, the following determines whether the string is alphanumeric:

```java
public boolean isAlphaNumeric(String s){
Expand Down
Loading