Skip to content

Commit

Permalink
Land #13357, Limit ZDI numbers to 4 digits
Browse files Browse the repository at this point in the history
  • Loading branch information
gwillcox-r7 committed Apr 29, 2020
2 parents 33b61fb + 68c9cfb commit 2dc26db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/dev/msftidy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def check_ref_identifiers
when 'US-CERT-VU'
warn("Invalid US-CERT-VU reference") if value !~ /^\d+$/
when 'ZDI'
warn("Invalid ZDI reference") if value !~ /^\d{2}-\d{3,}$/
warn("Invalid ZDI reference") if value !~ /^\d{2}-\d{3,4}$/
when 'WPVDB'
warn("Invalid WPVDB reference") if value !~ /^\d+$/
when 'PACKETSTORM'
Expand Down

0 comments on commit 2dc26db

Please sign in to comment.