You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The application stores the tokens it sends by SMS in memory. This means that the application cannot be replicated at the moment for high availability. In a Kubernetes setup, this application can restart at any moment. This means that the application state gets lost then and SMS message sent out just before the restart are not valid anymore.
This application has some rate limiting built-in to prevent that attackers can send a very large amount of SMS messages to a single user. This rate limiting is currently also done in memory. This should also be resolved.
The application stores the tokens it sends by SMS in memory. This means that the application cannot be replicated at the moment for high availability. In a Kubernetes setup, this application can restart at any moment. This means that the application state gets lost then and SMS message sent out just before the restart are not valid anymore.
irma_sms_issuer/src/main/java/foundation/privacybydesign/sms/TokenManager.java
Line 21 in 5fcf3de
This application has some rate limiting built-in to prevent that attackers can send a very large amount of SMS messages to a single user. This rate limiting is currently also done in memory. This should also be resolved.
irma_sms_issuer/src/main/java/foundation/privacybydesign/sms/ratelimit/MemoryRateLimit.java
Line 21 in 5fcf3de
The text was updated successfully, but these errors were encountered: