Add change note

This commit is contained in:
Joe Farebrother
2022-04-27 16:37:58 +01:00
parent 2fc142f41f
commit d88d216388
2 changed files with 7 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
/**
* @name Improper Verification of Intent by Broadcast Reciever
* @name Improper Verification of Intent by Broadcast Receiver
* @description The Android application uses a Broadcast Receiver that receives an Intent but does not properly verify that the Intent came from an authorized source.
* @kind problem
* @problem.severity warning

View File

@@ -0,0 +1,6 @@
---
category: newQuery
---
* A new query "Improper Verification of Intent by Broadcast Receiver" (`java/improper-intent-verification`) has been added.
This query finds instances of Android `BroadcastReceiver`s that don't verify the action string of received Intents when registered
to receive system intents.