BaseAttack.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. import ipaddress
  2. import random
  3. import re
  4. from abc import abstractmethod, ABCMeta
  5. import ID2TLib.libpcapreader as pr
  6. from Attack import AttackParameters
  7. from Attack.AttackParameters import Parameter
  8. from Attack.AttackParameters import ParameterTypes
  9. class BaseAttack(metaclass=ABCMeta):
  10. """
  11. Abstract base class for all attack classes. Provides basic functionalities, like parameter validation.
  12. """
  13. def __init__(self, statistics, name, description, attack_type):
  14. """
  15. To be called within the individual attack class to initialize the required parameters.
  16. :param statistics: A reference to the Statistics class.
  17. :param name: The name of the attack class.
  18. :param description: A short description of the attack.
  19. :param attack_type: The type the attack belongs to, like probing/scanning, malware.
  20. """
  21. # Reference to statistics class
  22. self.statistics = statistics
  23. # Class fields
  24. self.attack_name = name
  25. self.attack_description = description
  26. self.attack_type = attack_type
  27. self.params = {}
  28. self.supported_params = {}
  29. self.attack_start_utime = 0
  30. self.attack_end_utime = 0
  31. @abstractmethod
  32. def get_packets(self):
  33. """
  34. Creates the packets containing the attack.
  35. :return: A list of packets ordered ascending by the packet's timestamp.
  36. """
  37. pass
  38. ################################################
  39. # HELPER VALIDATION METHODS
  40. # Used to validate the given parameter values
  41. ################################################
  42. @staticmethod
  43. def _is_mac_address(mac_address: str):
  44. """
  45. Verifies if the given string is a valid MAC address. Accepts the formats 00:80:41:ae:fd:7e and 00-80-41-ae-fd-7e.
  46. :param mac_address: The MAC address as string.
  47. :return: True if the MAC address is valid, otherwise False.
  48. """
  49. result = re.match('^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$', mac_address, re.MULTILINE)
  50. return result is not None
  51. @staticmethod
  52. def _is_ip_address(ip_address: str):
  53. """
  54. Verifies that the given string or list of IP addresses (strings) is a valid IPv4/IPv6 address.
  55. Accepts comma-separated lists of IP addresses, like "192.169.178.1, 192.168.178.2"
  56. :param ip_address: The IP address(es) as list of strings or comma-separated string.
  57. :return: True if all IP addresses are valid, otherwise False. And a list of IP addresses as string.
  58. """
  59. ip_address_output = []
  60. # a comma-separated list of IP addresses must be splitted first
  61. if isinstance(ip_address, str):
  62. ip_address = ip_address.split(',')
  63. for ip in ip_address:
  64. try:
  65. ipaddress.ip_address(ip)
  66. ip_address_output.append(ip)
  67. except ValueError:
  68. return False, ip_address_output
  69. if len(ip_address_output) == 1:
  70. return True, ip_address_output[0]
  71. else:
  72. return True, ip_address_output
  73. @staticmethod
  74. def _is_port(ports_input: str):
  75. """
  76. Verifies if the given value is a valid port. Accepts port ranges, like 80-90, 80..99, 80...99.
  77. :param ports_input: The port number as int or string.
  78. :return: True if the port number is valid, otherwise False. If a single port or a comma-separated list of ports
  79. was given, a list of int is returned. If a port range was given, the range is resolved
  80. and a list of int is returned.
  81. """
  82. def _is_invalid_port(num):
  83. """
  84. Checks whether the port number is invalid.
  85. :param num: The port number as int.
  86. :return: True if the port number is invalid, otherwise False.
  87. """
  88. return num < 0 or num > 65535
  89. if isinstance(ports_input, str):
  90. ports_input = ports_input.replace(' ', '').split(',')
  91. ports_output = []
  92. for port_entry in ports_input:
  93. if isinstance(port_entry, int):
  94. if _is_invalid_port(port_entry):
  95. return False
  96. ports_output.append(port_entry)
  97. elif isinstance(port_entry, str) and port_entry.isdigit():
  98. # port_entry describes a single port
  99. port_entry = int(port_entry)
  100. if _is_invalid_port(port_entry):
  101. return False
  102. ports_output.append(port_entry)
  103. elif '-' in port_entry or '..' in port_entry:
  104. # port_entry describes a port range
  105. # allowed format: '1-49151', '1..49151', '1...49151'
  106. match = re.match('^([0-9]{1,5})(?:-|\.{2,3})([0-9]{1,5})$', port_entry)
  107. # check validity of port range
  108. # and create list of ports derived from given start and end port
  109. (port_start, port_end) = int(match.group(1)), int(match.group(2))
  110. if _is_invalid_port(port_start) or _is_invalid_port(port_end):
  111. return False
  112. else:
  113. ports_list = [i for i in range(port_start, port_end + 1)]
  114. # append ports at ports_output list
  115. ports_output += ports_list
  116. if len(ports_output) == 1:
  117. return True, ports_output[0]
  118. else:
  119. return True, ports_output
  120. @staticmethod
  121. def _is_timestamp(timestamp: str):
  122. """
  123. Checks whether the given value is in a valid timestamp format. The accepted format is:
  124. YYYY-MM-DD h:m:s, whereas h, m, s may be one or two digits.
  125. :param timestamp: The timestamp to be checked.
  126. :return: True if the timestamp is valid, otherwise False.
  127. """
  128. is_valid = re.match('[0-9]{4}(?:-[0-9]{1,2}){2} (?:[0-9]{1,2}:){2}[0-9]{1,2}', timestamp)
  129. return is_valid is not None
  130. @staticmethod
  131. def _is_boolean(value):
  132. """
  133. Checks whether the given value (string or bool) is a boolean. Strings are valid booleans if they are in:
  134. {y, yes, t, true, on, 1, n, no, f, false, off, 0}.
  135. :param value: The value to be checked.
  136. :return: True if the value is a boolean, otherwise false. And the casted boolean.
  137. """
  138. # If value is already a boolean
  139. if isinstance(value, bool):
  140. return True, value
  141. # If value is a string
  142. # True values are y, yes, t, true, on and 1;
  143. # False values are n, no, f, false, off and 0.
  144. # Raises ValueError if value is anything else.
  145. try:
  146. import distutils.core
  147. value = distutils.util.strtobool(value.lower())
  148. is_bool = True
  149. except ValueError:
  150. is_bool = False
  151. return is_bool, value
  152. @staticmethod
  153. def _is_float(value):
  154. """
  155. Checks whether the given value is a float.
  156. :param value: The value to be checked.
  157. :return: True if the value is a float, otherwise False. And the casted float.
  158. """
  159. try:
  160. value = float(value)
  161. return True, value
  162. except ValueError:
  163. return False, value
  164. #########################################
  165. # HELPER METHODS
  166. #########################################
  167. def add_param_value(self, param, value: str):
  168. """
  169. Adds the pair param : value to the dictionary of attack parameters. Prints and error message and skips the
  170. parameter if the validation fails.
  171. :param param: The parameter name.
  172. :param value: The parameter's value.
  173. :return: None.
  174. """
  175. # by default no param is valid
  176. is_valid = False
  177. # get AttackParameters instance associated with param
  178. # for default values assigned in attack classes, like Parameter.PORT_OPEN
  179. if isinstance(param, AttackParameters.Parameter):
  180. param_name = param
  181. # for values given by user input, like port.open
  182. else:
  183. # Get Enum key of given string identifier
  184. param_name = AttackParameters.Parameter(param)
  185. # Get parameter type of attack's required_params
  186. param_type = self.supported_params.get(param_name)
  187. # Verify validity of given value with respect to parameter type
  188. if param_type is None:
  189. print('Parameter ' + str(param_name) + ' not available for chosen attack. Skipping parameter.')
  190. # If value is query -> get value from database
  191. elif self.statistics.is_query(value):
  192. value = self.statistics.process_db_query(value, False)
  193. if value is not None and value is not "":
  194. is_valid = True
  195. else:
  196. print('Error in given parameter value: ' + value + '. Data could not be retrieved.')
  197. # Validate parameter depending on parameter's type
  198. elif param_type == ParameterTypes.TYPE_IP_ADDRESS:
  199. is_valid, value = self._is_ip_address(value)
  200. elif param_type == ParameterTypes.TYPE_PORT:
  201. is_valid, value = self._is_port(value)
  202. elif param_type == ParameterTypes.TYPE_MAC_ADDRESS:
  203. is_valid = self._is_mac_address(value)
  204. elif param_type == ParameterTypes.TYPE_INTEGER_POSITIVE:
  205. if isinstance(value, int) and int(value) >= 0:
  206. is_valid = True
  207. elif isinstance(value, str) and value.isdigit() and int(value) >= 0:
  208. is_valid = True
  209. value = int(value)
  210. elif param_type == ParameterTypes.TYPE_FLOAT:
  211. is_valid, value = self._is_float(value)
  212. # this is required to avoid that the timestamp's microseconds of the first attack packet is '000000'
  213. # but microseconds are only chosen randomly if the given parameter does not already specify it
  214. # e.g. inject.at-timestamp=123456.987654 -> is not changed
  215. # e.g. inject.at-timestamp=123456 -> is changed to: 123456.[random digits]
  216. if param_name == Parameter.INJECT_AT_TIMESTAMP and is_valid and ((value - int(value)) == 0):
  217. value = value + random.uniform(0, 0.999999)
  218. elif param_type == ParameterTypes.TYPE_TIMESTAMP:
  219. is_valid = self._is_timestamp(value)
  220. elif param_type == ParameterTypes.TYPE_BOOLEAN:
  221. is_valid, value = self._is_boolean(value)
  222. elif param_type == ParameterTypes.TYPE_PACKET_POSITION:
  223. ts = pr.pcap_processor(self.statistics.pcap_filepath).get_timestamp_mu_sec(int(value))
  224. if 0 <= int(value) <= self.statistics.get_packet_count() and ts >= 0:
  225. is_valid = True
  226. param_name = Parameter.INJECT_AT_TIMESTAMP
  227. value = (ts / 1000000) # convert microseconds from getTimestampMuSec into seconds
  228. # add value iff validation was successful
  229. if is_valid:
  230. self.params[param_name] = value
  231. else:
  232. print("ERROR: Parameter " + str(param) + " or parameter value " + str(value) +
  233. " not valid. Skipping parameter.")
  234. def get_param_value(self, param: Parameter):
  235. """
  236. Returns the parameter value for a given parameter.
  237. :param param: The parameter whose value is wanted.
  238. :return: The parameter's value.
  239. """
  240. return self.params[param]
  241. def check_parameters(self):
  242. """
  243. Checks whether all parameter values are defined. If a value is not defined, the application is terminated.
  244. However, this should not happen as all attack should define default parameter values.
  245. """
  246. for param, type in self.supported_params.items():
  247. # checks whether all params have assigned values, INJECT_AFTER_PACKET must not be considered because the
  248. # timestamp derived from it is set to Parameter.INJECT_AT_TIMESTAMP
  249. if param not in self.params.keys() and param is not Parameter.INJECT_AFTER_PACKET:
  250. print("\033[91mCRITICAL ERROR: Attack '" + self.attack_name + "' does not define the parameter '" +
  251. str(param) + "'.\n The attack must define default values for all parameters."
  252. + "\n Cannot continue attack generation.\033[0m")
  253. import sys
  254. sys.exit(0)
  255. def generate_random_ipv4_address(self, n: int = 1):
  256. """
  257. Generates n random IPv4 addresses.
  258. :param n: The number of IP addresses to be generated
  259. :return: A single IP address, or if n>1, a list of IP addresses
  260. """
  261. def is_invalid(ipAddress: ipaddress.IPv4Address):
  262. return ipAddress.is_multicast or ipAddress.is_unspecified or ipAddress.is_loopback or \
  263. ipAddress.is_link_local or ipAddress.is_reserved
  264. def generate_address():
  265. return ipaddress.IPv4Address(random.randint(0, 2 ** 32 - 1))
  266. ip_addresses = []
  267. for i in range(0, n):
  268. address = generate_address()
  269. while (is_invalid(address)):
  270. address = generate_address()
  271. ip_addresses.append(str(address))
  272. if n == 1:
  273. return ip_addresses[0]
  274. else:
  275. return ip_addresses
  276. def generate_random_ipv6_address(self, n: int = 1):
  277. """
  278. Generates n random IPv6 addresses.
  279. :param n: The number of IP addresses to be generated
  280. :return: A single IP address, or if n>1, a list of IP addresses
  281. """
  282. def is_invalid(ipAddress: ipaddress.IPv6Address):
  283. return ipAddress.is_multicast or ipAddress.is_unspecified or ipAddress.is_loopback or \
  284. ipAddress.is_link_local or ipAddress.is_reserved
  285. def generate_address():
  286. return str(ipaddress.IPv6Address(random.randint(0, 2 ** 128 - 1)))
  287. ip_addresses = []
  288. for i in range(0, n):
  289. address = generate_address()
  290. while (is_invalid(address)):
  291. address = generate_address()
  292. ip_addresses.append(str(address))
  293. if n == 1:
  294. return ip_addresses[0]
  295. else:
  296. return ip_addresses