Apply UUID string length check before parsing

pull/488/head
maxarchx 2018-11-30 15:13:43 +05:00
parent bd37aaaa6a
commit b1a17cf284
1 changed files with 3 additions and 0 deletions

View File

@ -87,6 +87,9 @@ func (src *UUID) AssignTo(dst interface{}) error {
// parseUUID converts a string UUID in standard form to a byte array.
func parseUUID(src string) (dst [16]byte, err error) {
if len(src) < 36 {
return dst, errors.Errorf("cannot parse UUID %v", src)
}
src = src[0:8] + src[9:13] + src[14:18] + src[19:23] + src[24:]
buf, err := hex.DecodeString(src)
if err != nil {