Projects STRLCPY metabigor Commits fc8f2c29
🤬
  • ■ ■ ■ ■ ■
    cmd/scan.go
    skipped 64 lines
    65 65   
    66 66   // make sure input is valid
    67 67   if options.Scan.IPv4 {
    68  - inputs = core.FilterIpv4(inputs)
     68 + // only filter when run zmap
     69 + if !options.Scan.SkipOverview {
     70 + inputs = core.FilterIpv4(inputs)
     71 + }
    69 72   }
    70 73   if uniq {
    71 74   inputs = funk.UniqString(inputs)
     75 + }
     76 + if len(inputs) == 0 {
     77 + core.ErrorF("No input provided")
     78 + os.Exit(1)
    72 79   }
    73 80   
    74 81   var result []string
    skipped 199 lines
  • ■ ■ ■ ■ ■ ■
    modules/cve.go
    skipped 7 lines
    8 8   "strings"
    9 9  )
    10 10   
     11 +/*
     12 +@TODO: more source to add
     13 +https://snyk.io/vuln/
     14 +https://www.tenable.com/plugins/nessus/
     15 +https://github.com/advisories
     16 +https://packetstormsecurity.com/files/tags/exploit/
     17 +*/
     18 + 
    11 19  type CVEData struct {
    12 20   CVE string
    13 21   Title string
    skipped 72 lines
Please wait...
Page is in error, reload to recover