diff options
author | Joey Hess <joeyh@joeyh.name> | 2017-02-24 00:17:25 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2017-02-24 00:17:25 -0400 |
commit | 24115d7fe885e3c15603daca9c2bd5e25c7c5a14 (patch) | |
tree | fb3d90f72b86a78ab46163dd3c3f1ab44a4ee1d6 /Types | |
parent | 55983c0a8e4ad4908b57b69f64256fbb7aa24397 (diff) |
Tighten key parser to not accept keys containing a non-numeric fields, which could be used to embed data useful for a SHA1 attack against git.
Also todo about why this is important, and with some further hardening to
add.
This commit was sponsored by Ignacio on Patreon.
Diffstat (limited to 'Types')
-rw-r--r-- | Types/Key.hs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Types/Key.hs b/Types/Key.hs index 598fe43cc..23648dd03 100644 --- a/Types/Key.hs +++ b/Types/Key.hs @@ -22,6 +22,7 @@ module Types.Key ( import System.Posix.Types import Data.Aeson +import Data.Char import qualified Data.Text as T import Common @@ -108,6 +109,16 @@ file2key s findfields _ v = v addbackend k v = Just k { keyBackendName = v } + + -- This is a strict parser for security reasons; a key + -- can contain only 4 fields, which all consist only of numbers. + -- Any key containing other fields, or non-numeric data is + -- rejected with Nothing. + -- + -- If a key contained non-numeric fields, they could be used to + -- embed data used in a SHA1 collision attack, which would be a + -- problem since the keys are committed to git. + addfield _ _ v | not (all isDigit v) = Nothing addfield 's' k v = do sz <- readish v return $ k { keySize = Just sz } @@ -120,7 +131,7 @@ file2key s addfield 'C' k v = case readish v of Just chunknum | chunknum > 0 -> return $ k { keyChunkNum = Just chunknum } - _ -> return k + _ -> Nothing addfield _ _ _ = Nothing instance ToJSON Key where |