Projects STRLCPY Maryam Commits b76fe191
🤬
  • ■ ■ ■ ■
    maryam/modules/footprint/dnsbrute.py
    skipped 24 lines
    25 25   'description': 'DNS brute force attack, supports concurrency.',
    26 26   'comments': ('The wordlist option can be an url',),
    27 27   'options': (
    28  - ('domain', None, False, 'Domain name without https?://', '-d', 'store', str),
     28 + ('domain', None, True, 'Domain name without https?://', '-d', 'store', str),
    29 29   ('count', None, False, 'Number of payloads len(max=count of payloads). default is max',
    30 30   '-c', 'store', int),
    31 31   ('wordlist', os.path.join(BASEDIR, 'data', 'dnsnames.txt'), False,
    skipped 99 lines
  • ■ ■ ■ ■
    maryam/modules/footprint/filebrute.py
    skipped 26 lines
    27 27   'description': 'File/Directory brute force attack, supports cocurrency.',
    28 28   'comments': ('The wordlist option can be an url.',),
    29 29   'options': (
    30  - ('domain', None, False, 'Domain name without https?://', '-d', 'store', str),
     30 + ('domain', None, True, 'Domain name without https?://', '-d', 'store', str),
    31 31   ('count', None, False, 'Number of payloads len(max=count of payloads). default is max',
    32 32   '-c', 'store', int),
    33 33   ('wordlist', 'https://raw.githubusercontent.com/danielmiessler/SecLists/master/Discovery/Web-Content/RobotsDisallowed-Top500.txt', False,
    skipped 113 lines
  • ■ ■ ■ ■
    maryam/modules/iris/cluster.py
    skipped 20 lines
    21 21   'description': 'Cluster your data using kmeans and fp-growth.',
    22 22   'required': ('sklearn', 'kneed', 'mlxtend', 'numpy', 'pandas'),
    23 23   'options': (
    24  - ('json', None, False, 'Json file that contains the data', '-j', 'store', str),
     24 + ('json', None, True, 'Json file that contains the data', '-j', 'store', str),
    25 25   ),
    26 26   'examples': ('cluster -j test.json')
    27 27  }
    skipped 20 lines
  • ■ ■ ■ ■
    maryam/modules/iris/sentiment.py
    skipped 23 lines
    24 24   'description': 'Running sentiment analysis on your data.',
    25 25   'required': ('vaderSentiment',),
    26 26   'options': (
    27  - ('json', None, False, 'Json file that contains the data', '-j', 'store', str),
     27 + ('json', None, True, 'Json file that contains the data', '-j', 'store', str),
    28 28   ('key', '', False, 'Data key. the value should be a list. None means the json file contains a list: ["..", ..]', '-k', 'store', str),
    29 29   ('thread', 5, False, 'The number of thread per each sell(default=10)', '-t', 'store', int),
    30 30   ('pipe', False, False, 'Dev only! pipe data from other modules(default=False)', '-p', 'store_true', bool),
    skipped 63 lines
  • ■ ■ ■ ■
    maryam/modules/osint/dns_search.py
    skipped 27 lines
    28 28   'urlscan', 'gigablast', 'dogpile'),
    29 29   'options': (
    30 30   ('domain', None,
    31  - False, 'Domain name without https?://', '-d', 'store', str),
     31 + True, 'Domain name without https?://', '-d', 'store', str),
    32 32   ('limit', 3, False, 'Search limit(number of pages, default=3)', '-l', 'store', int),
    33 33   ('count', 30, False, 'number of results per page(min=10, max=100, default=30)', '-c', 'store', int),
    34 34   ('engines', 'otx,securitytrails', False, 'Search engine names. e.g bing,google,...[otx by default]', '-e', 'store', str),
    skipped 330 lines
Please wait...
Page is in error, reload to recover