Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsLearn about NULL Pointer Dereference vulnerabilities in an interactive lesson.
Start learningUpgrade golang.org/x/net/html
to version 0.0.0-20180925071336-cf3bd585ca2a or higher.
golang.org/x/net/html is a package that implements an HTML5-compliant tokenizer and parser.
Affected versions of this package are vulnerable to NULL Pointer Dereference in parse.go
, which mishandles nested templates when parsing. Certain invalid inputs can cause a panic and crash.
package main
import (
"strings"
"golang.org/x/net/html"
)
func main() {
r := strings.NewReader("<math><template><mo><template>")
html.Parse(r)
}