Fix typos

This commit is contained in:
Joe Farebrother
2022-10-06 10:15:01 +01:00
parent 0bce1894ae
commit c085c1f3ad
3 changed files with 5 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ class AndroidEditableXmlElement extends XmlElement {
string getId() { result = id.getValue() }
}
/** Gets a regex inidcating that an input field may contain sensitive data. */
/** Gets a regex indicating that an input field may contain sensitive data. */
private string getInputSensitiveInfoRegex() {
result =
[

View File

@@ -26,10 +26,10 @@ should be used to ensure that the input does not get stored in the keyboard cach
<references>
<li>
OWASP Mobile Application Security Testing Guie: <a href="https://github.com/OWASP/owasp-mastg/blob/b7a93a2e5e0557cc9a12e55fc3f6675f6986bb86/Document/0x05d-Testing-Data-Storage.md#determining-whether-the-keyboard-cache-is-disabled-for-text-input-fields-mstg-storage-5">Determining Whether the Keyboard Cache Is Disabled for Text Input Fields</a>.
OWASP Mobile Application Security Testing Guide: <a href="https://github.com/OWASP/owasp-mastg/blob/b7a93a2e5e0557cc9a12e55fc3f6675f6986bb86/Document/0x05d-Testing-Data-Storage.md#determining-whether-the-keyboard-cache-is-disabled-for-text-input-fields-mstg-storage-5">Determining Whether the Keyboard Cache Is Disabled for Text Input Fields</a>.
</li>
<li>
Android Developers: <a href="https://developer.android.com/reference/android/widget/TextView#attr_android:inputType"> <code>android:inputType</code> attribute documentation.
Android Developers: <a href="https://developer.android.com/reference/android/widget/TextView#attr_android:inputType"> <code>android:inputType</code> attribute documentation.</a>
<li>
</references>

View File

@@ -1,9 +1,9 @@
/**
* @name Android sensetive keyboard cache
* @name Android sensitive keyboard cache
* @description Sensitive information should not be saved to the keyboard cache.
* @kind problem
* @problem.severity warning
* @id java/android/sensetive-keyboard-cache
* @id java/android/sensitive-keyboard-cache
* @tags security
* external/cwe/cwe-524
* @precision high