Replies: 2 comments 6 replies
-
This is a great topic that may be worth having a call about or a deeper discussion on. @valorkin @ScriptedAlchemy @lucamezzalira @ilteoood @lucasfernog |
Beta Was this translation helpful? Give feedback.
2 replies
-
You could use sub resource integrity check? standard browser feature? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi community,
Module Federation is a very powerful and excellent framework!
However, it has such powerful features that it can dynamically load modules from anywhere, which raises concerns about security in a more restricted context. One of these concerns is how to ensure the integrity of modules loaded remotely, that is, guaranteeing they have not been tampered with by 3rd parties over the network.
Generally, systems with dynamic module loading mechanisms may provide a feature to validate the hash or signature of the module at loading time. By validating a pre-generated hash value or signature at the time of module build when loading it, it can be confirmed that the module has not been tampered with during network transmission.
Question: Does Module Federation have such a feature? If so, please tell me how I can use the feature. If not, is it possible to implement such functionality in the future?
Beta Was this translation helpful? Give feedback.
All reactions