summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--rsa.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/rsa.c b/rsa.c
index 7222b8d..67b90f7 100644
--- a/rsa.c
+++ b/rsa.c
@@ -68,6 +68,12 @@ int buf_get_rsa_pub_key(buffer* buf, dropbear_rsa_key *key) {
goto out;
}
+ /* 64 bit is limit used by openssl, so we won't block any keys in the wild */
+ if (mp_count_bits(key->e) > 64) {
+ dropbear_log(LOG_WARNING, "RSA key bad e");
+ goto out;
+ }
+
TRACE(("leave buf_get_rsa_pub_key: success"))
ret = DROPBEAR_SUCCESS;
out: