求翻译: Intent and Intent filters
Filters and security
An intent filter cannot be relied on for security. While it opens a component to receiving only certain kinds of implicit intents, it does nothing to prevent explicit intents from targeting the component. Even though a filter restricts the intents a component will be asked to handle to certain actions and data sources, someone could always put together an explicit intent with a different action and data source, and name the component as the target.
在 android的官方文档上发现一段话, 不知道怎样去翻译理解,
尤其是 :it does nothing to prevent explicit intents from targeting the component.