Skip to content

Latest commit

 

History

History
48 lines (46 loc) · 982 Bytes

File metadata and controls

48 lines (46 loc) · 982 Bytes

Bug Label

Bug type

  • buffer-overflow
  • integer-overflow
  • integer-underflow
  • format-string
  • command-injection
  • negative-shift
  • div-by-zero

Single point

{
  "project": (string),
  "version": (string),
  "file": (string),
  "line": (int),
  "type": (string, see above),
  "CVE": ((string | string[] | null), CVE-XXXX-XXXX),
  "report": ((string | string[] | null), bug report or CVE report),
  "patch": ((string | string[] | null), patch commit),
  "code": (string)
}

Two points

{
  "project": (string),
  "version": (string),
  "source": {
    "file": (string),
    "line": (int),
    "code": (string)
  },
  "sink": {
    "file": (string),
    "line": (int),
    "code": (string)
  },
  "type": (string, see above),
  "CVE": ((string | string[] | null), CVE-XXXX-XXXX),
  "report": ((string | string[] | null), bug report or CVE report),
  "patch": ((string | string[] | null), patch commit)
}

Note

  • "line": -1 if the location is not found yet.