github.com/anchore/syft@v1.38.2/syft/pkg/microsoft.go (about)

     1  package pkg
     2  
     3  // MicrosoftKbPatch represents a Windows Knowledge Base patch identifier associated with a specific Microsoft product from the MSRC (Microsoft Security Response Center).
     4  // This type captures both the product being patched and the KB article number for the update.
     5  type MicrosoftKbPatch struct {
     6  	// ProductID is MSRC Product ID (e.g. "Windows 10 Version 1703 for 32-bit Systems")
     7  	ProductID string `toml:"product_id" json:"product_id"`
     8  
     9  	// Kb is Knowledge Base article number (e.g. "5001028")
    10  	Kb string `toml:"kb" json:"kb"`
    11  }