mirror of https://gitee.com/openkylin/genmai.git
添加FormatVer字段,为以后方便升级配置文件的格式
This commit is contained in:
parent
c96b599ba7
commit
85e41aa0a8
|
@ -1,15 +1,16 @@
|
|||
{
|
||||
|
||||
"FormatVer" : 20220411,
|
||||
"Id": "CVE-2021-22555",
|
||||
"Belong": "kernel",
|
||||
"Poc-hazard-level": "low",
|
||||
"PocHazardLevel": "low",
|
||||
"Source": " https://github.com/veritas501/CVE-2021-22555-PipeVersion",
|
||||
"SiteInfo": {
|
||||
"Name": "Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核",
|
||||
"Severity": "high",
|
||||
"Description":
|
||||
"Description",
|
||||
"Scope-of-influence":
|
||||
"ScopeOfInfluence":
|
||||
"Scope-of-influence",
|
||||
"References": [ "Reference1", "Reference2" ],
|
||||
"SiteClassification": {
|
||||
|
|
|
@ -1,13 +1,14 @@
|
|||
FormatVer: 20220411
|
||||
Id: CVE-2021-22555
|
||||
Belong: kernel
|
||||
Poc-hazard-level: low
|
||||
PocHazardLevel: low
|
||||
Source: https://github.com/veritas501/CVE-2021-22555-PipeVersion
|
||||
SiteInfo:
|
||||
Name: Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核
|
||||
Severity: high
|
||||
Description:
|
||||
Description
|
||||
Scope-of-influence:
|
||||
ScopeOfInfluence:
|
||||
Scope-of-influence
|
||||
References:
|
||||
- Reference1
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
{
|
||||
|
||||
"FormatVer" : 20220411,
|
||||
"Id": "CVE-2021-22555",
|
||||
"Belong": "kernel",
|
||||
"Poc-hazard-level": "low",
|
||||
"PocHazardLevel": "low",
|
||||
"Source": " https://github.com/veritas501/CVE-2021-22555-PipeVersion",
|
||||
"SiteInfo": {
|
||||
"Name": "Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核",
|
||||
"Severity": "high",
|
||||
"Description":
|
||||
"Description",
|
||||
"Scope-of-influence":
|
||||
"ScopeOfInfluence":
|
||||
"Scope-of-influence",
|
||||
"References": [ "Reference1", "Reference2" ],
|
||||
"SiteClassification": {
|
||||
|
|
|
@ -76,6 +76,7 @@ type SiteInfo struct {
|
|||
Explore的模板
|
||||
*/
|
||||
type ConfigCommon struct {
|
||||
FormatVer int
|
||||
Id string
|
||||
Belong string
|
||||
Poc_hazard_level string
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
package genmai
|
||||
|
||||
type ConfigKernel struct {
|
||||
FormatVer int
|
||||
Id string
|
||||
Belong string
|
||||
Poc_hazard_level string
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
package genmai
|
||||
|
||||
type ExploreSystem struct {
|
||||
FormatVer int
|
||||
Id string
|
||||
Belong string
|
||||
Poc_hazard_level string
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
package genmai
|
||||
|
||||
type ExploreWeb struct {
|
||||
FormatVer int
|
||||
Id string
|
||||
Belong string
|
||||
Poc_hazard_level string
|
||||
|
|
Loading…
Reference in New Issue