CLI.py 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. #! /usr/bin/env python3
  2. import argparse
  3. import sys
  4. from ID2TLib.Controller import Controller
  5. class LoadFromFile(argparse.Action):
  6. """
  7. Parses the parameter file given by application param -c/--config.
  8. """
  9. def __call__(self, parser, namespace, values, option_string=None):
  10. with values as f:
  11. parser.parse_args(f.read().split(), namespace)
  12. class CLI(object):
  13. def __init__(self):
  14. """
  15. Creates a new CLI object used to handle
  16. """
  17. # Reference to PcapFile object
  18. self.args = None
  19. self.attack_config = None
  20. def parse_arguments(self, args):
  21. """
  22. Defines the allowed application arguments and invokes the evaluation of the arguments.
  23. :param args: The application arguments
  24. """
  25. # Create parser for arguments
  26. parser = argparse.ArgumentParser(description="Intrusion Detection Dataset Toolkit (ID2T) - A toolkit for "
  27. "injecting synthetically created attacks into PCAP files.",
  28. prog="id2t")
  29. # Required arguments
  30. required_group = parser.add_argument_group('required arguments')
  31. required_args_group = required_group.add_mutually_exclusive_group(required=True)
  32. required_args_group.add_argument('-i', '--input', metavar="PCAP_FILE",
  33. help='path to the input pcap file')
  34. required_args_group.add_argument('-l', '--list-attacks', action='store_true')
  35. # Optional arguments
  36. parser.add_argument('-c', '--config', metavar='CONFIG_FILE', help='file containing configuration parameters.',
  37. action=LoadFromFile, type=open)
  38. parser.add_argument('-e', '--export',
  39. help='store statistics as a ".stat" file',
  40. action='store_true', default=False)
  41. parser.add_argument('-r', '--recalculate',
  42. help='recalculate statistics even if a cached version exists.',
  43. action='store_true', default=False)
  44. parser.add_argument('-s', '--statistics', help='print file statistics to stdout.', action='store_true',
  45. default=False)
  46. parser.add_argument('-p', '--plot', help='creates the following plots: the values distributions of TTL, MSS, Window Size, '
  47. 'protocol, and the novelty distributions of IP, port, TTL, MSS, Window Size,'
  48. ' and ToS. In addition to packets count in interval-wise.', action='append',
  49. nargs='?')
  50. parser.add_argument('-q', '--query', metavar="QUERY",
  51. action='append', nargs='?',
  52. help='query the statistics database. If no query is provided, the application enters query mode.')
  53. parser.add_argument('-t', '--extraTests', help='perform extra tests on the input pcap file, including calculating IP entropy'
  54. 'in interval-wise, TCP checksum, and checking payload availability.', action='store_true')
  55. parser.add_argument('-S', '--randomSeed', action='append', help='sets random seed for testing or benchmarking',
  56. nargs='+', default=[])
  57. parser.add_argument('-T', '--time', help='measures packet generation time', action='store_true', default=False)
  58. # Attack arguments
  59. parser.add_argument('-a', '--attack', metavar="ATTACK", action='append',
  60. help='injects ATTACK into a PCAP file.', nargs='+')
  61. # Parse arguments
  62. self.args = parser.parse_args(args)
  63. self.process_arguments()
  64. def process_arguments(self):
  65. """
  66. Decide what to do with each of the command line parameters.
  67. """
  68. if self.args.list_attacks:
  69. # User wants to see the available attacks
  70. self.process_attack_listing()
  71. else:
  72. # User wants to process a PCAP
  73. self.process_pcap()
  74. def process_attack_listing(self):
  75. import pkgutil
  76. import importlib
  77. import Attack
  78. # Find all attacks, exclude some classes
  79. package = Attack
  80. attack_names = []
  81. for _, name, __ in pkgutil.iter_modules(package.__path__):
  82. if name != 'BaseAttack' and name != 'AttackParameters':
  83. attack_names.append(name)
  84. # List the attacks and their parameters
  85. emph_start = '\033[1m'
  86. emph_end = '\033[0m'
  87. for attack_name in attack_names:
  88. attack_module = importlib.import_module('Attack.{}'.format(attack_name))
  89. attack_class = getattr(attack_module, attack_name)
  90. # Instantiate the attack to get to its definitions.
  91. attack_obj = attack_class()
  92. print('* {}{}{}'.format(emph_start, attack_obj.attack_name, emph_end))
  93. print('\t- {}Description:{} {}'.format(emph_start, emph_end,
  94. attack_obj.attack_description))
  95. print('\t- {}Type:{} {}'.format(emph_start, emph_end,
  96. attack_obj.attack_type))
  97. print('\t- {}Supported Parameters:{}'.format(emph_start, emph_end), end=' ')
  98. # Get all the parameter names in a list and sort them
  99. param_list = []
  100. for key in attack_obj.supported_params:
  101. param_list.append(key.value)
  102. param_list.sort()
  103. # Print each parameter type per line
  104. last_prefix = None
  105. current_prefix = None
  106. for param in param_list:
  107. current_prefix = param.split('.')[0]
  108. if not last_prefix or current_prefix != last_prefix:
  109. print('\n\t + |', end=' ')
  110. print(param, end=' | ')
  111. last_prefix = current_prefix
  112. # Print an empty line
  113. print()
  114. def process_pcap(self):
  115. """
  116. Loads the application controller, the PCAP file statistics and if present, processes the given attacks. Evaluates
  117. given queries.
  118. """
  119. # Create ID2T Controller
  120. controller = Controller(self.args.input, self.args.extraTests)
  121. # Load PCAP statistics
  122. controller.load_pcap_statistics(self.args.export, self.args.recalculate, self.args.statistics)
  123. # Create statistics plots
  124. if self.args.plot is not None:
  125. doEntropy = False
  126. if self.args.extraTests:
  127. doEntropy = True
  128. controller.create_statistics_plot(self.args.plot, doEntropy)
  129. # Check random seed
  130. if not isinstance(self.args.randomSeed, list):
  131. self.args.randomSeed = [self.args.randomSeed]
  132. # Process attack(s) with given attack params
  133. if self.args.attack is not None:
  134. # If attack is present, load attack with params
  135. controller.process_attacks(self.args.attack, self.args.randomSeed, self.args.time)
  136. # Parameter -q without arguments was given -> go into query loop
  137. if self.args.query == [None]:
  138. controller.enter_query_mode()
  139. # Parameter -q with arguments was given -> process query
  140. elif self.args.query is not None:
  141. controller.process_db_queries(self.args.query, True)
  142. def main(args):
  143. """
  144. Creates a new CLI object and invokes the arguments parsing.
  145. :param args: The provided arguments
  146. """
  147. cli = CLI()
  148. # Check arguments
  149. cli.parse_arguments(args)
  150. # Uncomment to enable calling by terminal
  151. if __name__ == '__main__':
  152. main(sys.argv[1:])