dgryski / semgrep-go

Go rules for semgrep and go-ruleguard
MIT License
460 stars 37 forks source link

Update http-ctx-goroutine.yml #52

Closed komuw closed 2 years ago

komuw commented 2 years ago

catch code of the form;

func login(w http.ResponseWriter, r *http.Request) {
    go email(r.Context(), "hello")
}