Skip to content

Commit

Permalink
argument update 'domains_list'
Browse files Browse the repository at this point in the history
  • Loading branch information
shamimrezasohag authored Oct 11, 2024
1 parent 747c611 commit 38ade88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dns_security_analysis_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def process_domains(domains, dns_server, output_format, output_filename):

def main():
parser = argparse.ArgumentParser(description='Comprehensive DNS Security Analysis Tool')
parser.add_argument('domains-file', help='Input file for bulk domain security analysis')
parser.add_argument('--domains-file', required=True, help='Input file for bulk domain security analysis')
parser.add_argument('--dns-server', default='8.8.8.8', help='DNS server to use for queries')
parser.add_argument('--format', default='json', choices=['json', 'csv', 'html'], help='Format of the security report')
parser.add_argument('--output', '-o', default='dns_security_report', help='Output file name for the DNS security report')
Expand Down

0 comments on commit 38ade88

Please sign in to comment.