Projects STRLCPY csprecon Commits 4d47fa12
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■ ■
    README.md
    skipped 40 lines
    41 41  ----------
    42 42   
    43 43  ```console
    44  - 
     44 +Usage of csprecon:
     45 + -c int
     46 + Concurrency level (default 100)
     47 + -d string
     48 + Filter results belonging to this domain
     49 + -l string
     50 + File containing input domains
     51 + -o string
     52 + File to write output results
     53 + -s Print only results
     54 + -t int
     55 + Connection timeout in seconds (default 4)
     56 + -u string
     57 + Input domain
     58 + -v Verbose output
    45 59  ```
    46 60   
    47 61  Examples :bulb:
    skipped 27 lines
  • ■ ■ ■ ■ ■ ■
    pkg/input/flags.go
    skipped 44 lines
    45 45   flag.StringVar(&options.Input, "u", "", `Input domain`)
    46 46   flag.StringVar(&options.FileInput, "l", "", `File containing input domains`)
    47 47   flag.StringVar(&options.Domain, "d", "", `Filter results belonging to this domain`)
    48  - flag.StringVar(&options.FileOutput, "o", "", `Output File`)
    49  - flag.BoolVar(&options.Verbose, "v", false, `Be verbose`)
     48 + flag.StringVar(&options.FileOutput, "o", "", `File to write output results`)
     49 + flag.BoolVar(&options.Verbose, "v", false, `Verbose output`)
    50 50   flag.BoolVar(&options.Silent, "s", false, `Print only results`)
    51 51   flag.IntVar(&options.Concurrency, "c", DefaultConcurrency, "Concurrency level")
    52 52   flag.IntVar(&options.Timeout, "t", DefaultTimeout, "Connection timeout in seconds")
    skipped 33 lines
Please wait...
Page is in error, reload to recover