Skip to content

Commit 447e06d

Browse files
Rename from SensitiveBroadcast to SensitiveCommmunication
1 parent 54e9c49 commit 447e06d

File tree

7 files changed

+6
-7
lines changed

7 files changed

+6
-7
lines changed

java/ql/lib/semmle/code/java/security/AndroidSensitiveBroadcastQuery.qll renamed to java/ql/lib/semmle/code/java/security/AndroidSensitiveCommunicationQuery.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** Provides definitions to reason about Android Sensitive Broadcast queries */
1+
/** Provides definitions to reason about Android Sensitive Communication queries */
22

33
import java
44
import semmle.code.java.dataflow.DataFlow3

java/ql/src/Security/CWE/CWE-927/SensitiveBroadcast.ql renamed to java/ql/src/Security/CWE/CWE-927/SensitiveCommunication.ql

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
/**
2-
* @name Broadcasting sensitive data to all Android applications
3-
* @description An Android application uses implicit intents to broadcast
4-
* sensitive data to all applications without specifying any
5-
* receiver permission.
2+
* @name Leaking sensetive information through an implicit Intent.
3+
* @description An Android application uses implicit intents containing sensitive data
4+
* in a way that exposes it to arbitrary applications on the device.
65
* @kind path-problem
76
* @problem.severity warning
87
* @precision medium
9-
* @id java/android/sensitive-broadcast
8+
* @id java/android/sensitive-communication
109
* @tags security
1110
* external/cwe/cwe-927
1211
*/
1312

1413
import java
15-
import semmle.code.java.security.AndroidSensitiveBroadcastQuery
14+
import semmle.code.java.security.AndroidSensitiveCommunicationQuery
1615
import DataFlow::PathGraph
1716

1817
from SensitiveBroadcastConfig cfg, DataFlow::PathNode source, DataFlow::PathNode sink

0 commit comments

Comments
 (0)