Projects STRLCPY CamOver Commits 4299ab69
🤬
  • ■ ■ ■ ■ ■ ■
    camover/cli.py
    skipped 33 lines
    34 34  class CamOverCLI(CamOver, Badges):
    35 35   description = "CamOver is a camera exploitation tool that allows to disclosure network camera admin password."
    36 36   parser = argparse.ArgumentParser(description=description)
    37  - parser.add_argument('--threads', dest='threads', action='store_true', help='Use threads for fastest work.')
    38  - parser.add_argument('--output', dest='output', help='Output result to file.')
    39  - parser.add_argument('--input', dest='input', help='Input file of addresses.')
    40  - parser.add_argument('--address', dest='address', help='Single address.')
     37 + parser.add_argument('-t', '--threads', dest='threads', action='store_true', help='Use threads for fastest work.')
     38 + parser.add_argument('-o', '--output', dest='output', help='Output result to file.')
     39 + parser.add_argument('-i', '--input', dest='input', help='Input file of addresses.')
     40 + parser.add_argument('-a', '--address', dest='address', help='Single address.')
    41 41   parser.add_argument('--api', dest='api', help='Shodan API key for exploiting devices over Internet.')
    42 42   args = parser.parse_args()
    43 43   
    skipped 86 lines
Please wait...
Page is in error, reload to recover