test nuclei reverse output no results #5235
Replies: 2 comments
|
@mnd5756242 please use https://github.com/projectdiscovery/nuclei/discussions/categories/q-a for questions instead of github issues. |
0 replies
|
This discussion closed automatically due to inactivity. Feel free to reopen or start new if still relevant. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
The following is what I call after executing, the result is nil
In other words, how do I modify the code to call the callback function and obtain the result after the reverse connection?
`func (r *Runner) ExecuteNucleiPoc(target string, poc *nuclei.Template) (results []*output.ResultEvent, err error) {
e := poc.Executer
ctx := scan.NewScanContext(contextargs.NewWithInput(target))
}`
AND I initialized interactClient as follows:
`//outputWriter := testutils.NewMockOutputWriter(options.OmitTemplate)
outputWriter, errs := output.NewStandardWriter(options)
if errs != nil {
logger.Error(err, "could not create output file")
}
So is there no callback result because Authorization is not configured?I use nuclei reverse.
All reactions