From aeaed62894737b3de18a425cbf7b673764d46e4f Mon Sep 17 00:00:00 2001 From: Elias Rohrer Date: Fri, 8 Sep 2023 10:00:25 +0200 Subject: [PATCH] Add length check for read ChannelMonitor keys --- lightning/src/util/persist.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lightning/src/util/persist.rs b/lightning/src/util/persist.rs index ca0605c9..372a094a 100644 --- a/lightning/src/util/persist.rs +++ b/lightning/src/util/persist.rs @@ -216,6 +216,12 @@ where for stored_key in kv_store.list( CHANNEL_MONITOR_PERSISTENCE_NAMESPACE, CHANNEL_MONITOR_PERSISTENCE_SUB_NAMESPACE)? { + if stored_key.len() < 66 { + return Err(io::Error::new( + io::ErrorKind::InvalidData, + "Stored key has invalid length")); + } + let txid = Txid::from_hex(stored_key.split_at(64).0).map_err(|_| { io::Error::new(io::ErrorKind::InvalidData, "Invalid tx ID in stored key") })?; -- 2.30.2