Skip to content

Commit

Permalink
fix: handle nuclei scan argument
Browse files Browse the repository at this point in the history
  • Loading branch information
vmfunc committed Jun 20, 2024
1 parent 09565b4 commit b5266dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sif.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ func (app *App) Run() error {
scan.Git(url, app.settings.Timeout, app.settings.Threads, app.settings.LogDir)
}

if app.settings.Nuclei {
scan.Nuclei(url, app.settings.Timeout, app.settings.Threads, app.settings.LogDir)
}

if app.settings.ApiMode {
utils.ReturnApiOutput()
}
Expand Down

0 comments on commit b5266dd

Please sign in to comment.