Skip to content

Commit c085c1f

Browse files
Fix typos
1 parent 0bce189 commit c085c1f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

java/ql/lib/semmle/code/java/security/SensitiveKeyboardCacheQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class AndroidEditableXmlElement extends XmlElement {
3030
string getId() { result = id.getValue() }
3131
}
3232

33-
/** Gets a regex inidcating that an input field may contain sensitive data. */
33+
/** Gets a regex indicating that an input field may contain sensitive data. */
3434
private string getInputSensitiveInfoRegex() {
3535
result =
3636
[

java/ql/src/Security/CWE/CWE-524/SensitiveKeyboardCache.qhelp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ should be used to ensure that the input does not get stored in the keyboard cach
2626
<references>
2727

2828
<li>
29-
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>.
29+
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>.
3030
</li>
3131
<li>
32-
Android Developers: <a href="https://developer.android.com/reference/android/widget/TextView#attr_android:inputType"> <code>android:inputType</code> attribute documentation.
32+
Android Developers: <a href="https://developer.android.com/reference/android/widget/TextView#attr_android:inputType"> <code>android:inputType</code> attribute documentation.</a>
3333
<li>
3434

3535
</references>

java/ql/src/Security/CWE/CWE-524/SensitiveKeyboardCache.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
2-
* @name Android sensetive keyboard cache
2+
* @name Android sensitive keyboard cache
33
* @description Sensitive information should not be saved to the keyboard cache.
44
* @kind problem
55
* @problem.severity warning
6-
* @id java/android/sensetive-keyboard-cache
6+
* @id java/android/sensitive-keyboard-cache
77
* @tags security
88
* external/cwe/cwe-524
99
* @precision high

0 commit comments

Comments
 (0)