BaseAttack.py 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. import socket
  2. import sys
  3. import ipaddress
  4. import os
  5. import random
  6. import re
  7. import tempfile
  8. from abc import abstractmethod, ABCMeta
  9. from scapy.layers.inet import Ether
  10. import numpy as np
  11. import ID2TLib.libpcapreader as pr
  12. from scapy.utils import PcapWriter
  13. from Attack import AttackParameters
  14. from Attack.AttackParameters import Parameter
  15. from Attack.AttackParameters import ParameterTypes
  16. class BaseAttack(metaclass=ABCMeta):
  17. """
  18. Abstract base class for all attack classes. Provides basic functionalities, like parameter validation.
  19. """
  20. def __init__(self, name, description, attack_type):
  21. """
  22. To be called within the individual attack class to initialize the required parameters.
  23. :param statistics: A reference to the Statistics class.
  24. :param name: The name of the attack class.
  25. :param description: A short description of the attack.
  26. :param attack_type: The type the attack belongs to, like probing/scanning, malware.
  27. """
  28. # Reference to statistics class
  29. self.statistics = None
  30. # Class fields
  31. self.attack_name = name
  32. self.attack_description = description
  33. self.attack_type = attack_type
  34. self.params = {}
  35. self.supported_params = {}
  36. self.attack_start_utime = 0
  37. self.attack_end_utime = 0
  38. def set_statistics(self, statistics):
  39. """
  40. Specify the statistics object that will be used to calculate the parameters of this attack.
  41. The statistics are used to calculate default parameters and to process user supplied
  42. queries.
  43. :param statistics: Reference to a statistics object.
  44. """
  45. self.statistics = statistics
  46. @abstractmethod
  47. def init_params(self):
  48. """
  49. Initialize all required parameters taking into account user supplied values. If no value is supplied,
  50. or if a user defined query is supplied, use a statistics object to do the calculations.
  51. A call to this function requires a call to 'set_statistics' first.
  52. """
  53. pass
  54. @abstractmethod
  55. def generate_attack_pcap(self):
  56. """
  57. Creates a pcap containing the attack packets.
  58. :return: The location of the generated pcap file.
  59. """
  60. pass
  61. ################################################
  62. # HELPER VALIDATION METHODS
  63. # Used to validate the given parameter values
  64. ################################################
  65. @staticmethod
  66. def _is_mac_address(mac_address: str):
  67. """
  68. 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.
  69. :param mac_address: The MAC address as string.
  70. :return: True if the MAC address is valid, otherwise False.
  71. """
  72. pattern = re.compile('^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$', re.MULTILINE)
  73. if isinstance(mac_address, list):
  74. for mac in mac_address:
  75. if re.match(pattern, mac) is None:
  76. return False
  77. else:
  78. if re.match(pattern, mac_address) is None:
  79. return False
  80. return True
  81. @staticmethod
  82. def _is_ip_address(ip_address: str):
  83. """
  84. Verifies that the given string or list of IP addresses (strings) is a valid IPv4/IPv6 address.
  85. Accepts comma-separated lists of IP addresses, like "192.169.178.1, 192.168.178.2"
  86. :param ip_address: The IP address(es) as list of strings or comma-separated string.
  87. :return: True if all IP addresses are valid, otherwise False. And a list of IP addresses as string.
  88. """
  89. ip_address_output = []
  90. # a comma-separated list of IP addresses must be splitted first
  91. if isinstance(ip_address, str):
  92. ip_address = ip_address.split(',')
  93. for ip in ip_address:
  94. try:
  95. ipaddress.ip_address(ip)
  96. ip_address_output.append(ip)
  97. except ValueError:
  98. return False, ip_address_output
  99. if len(ip_address_output) == 1:
  100. return True, ip_address_output[0]
  101. else:
  102. return True, ip_address_output
  103. @staticmethod
  104. def _is_port(ports_input: str):
  105. """
  106. Verifies if the given value is a valid port. Accepts port ranges, like 80-90, 80..99, 80...99.
  107. :param ports_input: The port number as int or string.
  108. :return: True if the port number is valid, otherwise False. If a single port or a comma-separated list of ports
  109. was given, a list of int is returned. If a port range was given, the range is resolved
  110. and a list of int is returned.
  111. """
  112. def _is_invalid_port(num):
  113. """
  114. Checks whether the port number is invalid.
  115. :param num: The port number as int.
  116. :return: True if the port number is invalid, otherwise False.
  117. """
  118. return num < 1 or num > 65535
  119. if isinstance(ports_input, str):
  120. ports_input = ports_input.replace(' ', '').split(',')
  121. elif isinstance(ports_input, int):
  122. ports_input = [ports_input]
  123. ports_output = []
  124. for port_entry in ports_input:
  125. if isinstance(port_entry, int):
  126. if _is_invalid_port(port_entry):
  127. return False
  128. ports_output.append(port_entry)
  129. elif isinstance(port_entry, str) and port_entry.isdigit():
  130. # port_entry describes a single port
  131. port_entry = int(port_entry)
  132. if _is_invalid_port(port_entry):
  133. return False
  134. ports_output.append(port_entry)
  135. elif '-' in port_entry or '..' in port_entry:
  136. # port_entry describes a port range
  137. # allowed format: '1-49151', '1..49151', '1...49151'
  138. match = re.match('^([0-9]{1,5})(?:-|\.{2,3})([0-9]{1,5})$', port_entry)
  139. # check validity of port range
  140. # and create list of ports derived from given start and end port
  141. (port_start, port_end) = int(match.group(1)), int(match.group(2))
  142. if _is_invalid_port(port_start) or _is_invalid_port(port_end):
  143. return False
  144. else:
  145. ports_list = [i for i in range(port_start, port_end + 1)]
  146. # append ports at ports_output list
  147. ports_output += ports_list
  148. if len(ports_output) == 1:
  149. return True, ports_output[0]
  150. else:
  151. return True, ports_output
  152. @staticmethod
  153. def _is_timestamp(timestamp: str):
  154. """
  155. Checks whether the given value is in a valid timestamp format. The accepted format is:
  156. YYYY-MM-DD h:m:s, whereas h, m, s may be one or two digits.
  157. :param timestamp: The timestamp to be checked.
  158. :return: True if the timestamp is valid, otherwise False.
  159. """
  160. is_valid = re.match('[0-9]{4}(?:-[0-9]{1,2}){2} (?:[0-9]{1,2}:){2}[0-9]{1,2}', timestamp)
  161. return is_valid is not None
  162. @staticmethod
  163. def _is_boolean(value):
  164. """
  165. Checks whether the given value (string or bool) is a boolean. Strings are valid booleans if they are in:
  166. {y, yes, t, true, on, 1, n, no, f, false, off, 0}.
  167. :param value: The value to be checked.
  168. :return: True if the value is a boolean, otherwise false. And the casted boolean.
  169. """
  170. # If value is already a boolean
  171. if isinstance(value, bool):
  172. return True, value
  173. # If value is a string
  174. # True values are y, yes, t, true, on and 1;
  175. # False values are n, no, f, false, off and 0.
  176. # Raises ValueError if value is anything else.
  177. try:
  178. import distutils.core
  179. value = distutils.util.strtobool(value.lower())
  180. is_bool = True
  181. except ValueError:
  182. is_bool = False
  183. return is_bool, value
  184. @staticmethod
  185. def _is_float(value):
  186. """
  187. Checks whether the given value is a float.
  188. :param value: The value to be checked.
  189. :return: True if the value is a float, otherwise False. And the casted float.
  190. """
  191. try:
  192. value = float(value)
  193. return True, value
  194. except ValueError:
  195. return False, value
  196. @staticmethod
  197. def _is_domain(val: str):
  198. """
  199. Verifies that the given string is a valid URI.
  200. :param uri: The URI as string.
  201. :return: True if URI is valid, otherwise False.
  202. """
  203. domain = re.match('^(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+$', val)
  204. return (domain is not None)
  205. #########################################
  206. # HELPER METHODS
  207. #########################################
  208. def add_param_value(self, param, value):
  209. """
  210. Adds the pair param : value to the dictionary of attack parameters. Prints and error message and skips the
  211. parameter if the validation fails.
  212. :param stats: Statistics used to calculate user queries or default values.
  213. :param param: Name of the parameter that we wish to modify.
  214. :param value: The value we wish to assign to the specifried parameter.
  215. :return: None.
  216. """
  217. # This function call is valid only if there is a statistics object available.
  218. if self.statistics is None:
  219. print('Error: Attack parameter added without setting a statistics object first.')
  220. exit(1)
  221. # by default no param is valid
  222. is_valid = False
  223. # get AttackParameters instance associated with param
  224. # for default values assigned in attack classes, like Parameter.PORT_OPEN
  225. if isinstance(param, AttackParameters.Parameter):
  226. param_name = param
  227. # for values given by user input, like port.open
  228. else:
  229. # Get Enum key of given string identifier
  230. param_name = AttackParameters.Parameter(param)
  231. # Get parameter type of attack's required_params
  232. param_type = self.supported_params.get(param_name)
  233. # Verify validity of given value with respect to parameter type
  234. if param_type is None:
  235. print('Parameter ' + str(param_name) + ' not available for chosen attack. Skipping parameter.')
  236. # If value is query -> get value from database
  237. elif self.statistics.is_query(value):
  238. value = self.statistics.process_db_query(value, False)
  239. if value is not None and value is not "":
  240. is_valid = True
  241. else:
  242. print('Error in given parameter value: ' + value + '. Data could not be retrieved.')
  243. # Validate parameter depending on parameter's type
  244. elif param_type == ParameterTypes.TYPE_IP_ADDRESS:
  245. is_valid, value = self._is_ip_address(value)
  246. elif param_type == ParameterTypes.TYPE_PORT:
  247. is_valid, value = self._is_port(value)
  248. elif param_type == ParameterTypes.TYPE_MAC_ADDRESS:
  249. is_valid = self._is_mac_address(value)
  250. elif param_type == ParameterTypes.TYPE_INTEGER_POSITIVE:
  251. if isinstance(value, int) and int(value) >= 0:
  252. is_valid = True
  253. elif isinstance(value, str) and value.isdigit() and int(value) >= 0:
  254. is_valid = True
  255. value = int(value)
  256. elif param_type == ParameterTypes.TYPE_FLOAT:
  257. is_valid, value = self._is_float(value)
  258. # this is required to avoid that the timestamp's microseconds of the first attack packet is '000000'
  259. # but microseconds are only chosen randomly if the given parameter does not already specify it
  260. # e.g. inject.at-timestamp=123456.987654 -> is not changed
  261. # e.g. inject.at-timestamp=123456 -> is changed to: 123456.[random digits]
  262. if param_name == Parameter.INJECT_AT_TIMESTAMP and is_valid and ((value - int(value)) == 0):
  263. value = value + random.uniform(0, 0.999999)
  264. elif param_type == ParameterTypes.TYPE_TIMESTAMP:
  265. is_valid = self._is_timestamp(value)
  266. elif param_type == ParameterTypes.TYPE_BOOLEAN:
  267. is_valid, value = self._is_boolean(value)
  268. elif param_type == ParameterTypes.TYPE_PACKET_POSITION:
  269. ts = pr.pcap_processor(self.statistics.pcap_filepath, "False").get_timestamp_mu_sec(int(value))
  270. if 0 <= int(value) <= self.statistics.get_packet_count() and ts >= 0:
  271. is_valid = True
  272. param_name = Parameter.INJECT_AT_TIMESTAMP
  273. value = (ts / 1000000) # convert microseconds from getTimestampMuSec into seconds
  274. elif param_type == ParameterTypes.TYPE_DOMAIN:
  275. is_valid = self._is_domain(value)
  276. # add value iff validation was successful
  277. if is_valid:
  278. self.params[param_name] = value
  279. else:
  280. print("ERROR: Parameter " + str(param) + " or parameter value " + str(value) +
  281. " not valid. Skipping parameter.")
  282. def get_param_value(self, param: Parameter):
  283. """
  284. Returns the parameter value for a given parameter.
  285. :param param: The parameter whose value is wanted.
  286. :return: The parameter's value.
  287. """
  288. return self.params.get(param)
  289. def check_parameters(self):
  290. """
  291. Checks whether all parameter values are defined. If a value is not defined, the application is terminated.
  292. However, this should not happen as all attack should define default parameter values.
  293. """
  294. # parameters which do not require default values
  295. non_obligatory_params = [Parameter.INJECT_AFTER_PACKET, Parameter.NUMBER_ATTACKERS]
  296. for param, type in self.supported_params.items():
  297. # checks whether all params have assigned values, INJECT_AFTER_PACKET must not be considered because the
  298. # timestamp derived from it is set to Parameter.INJECT_AT_TIMESTAMP
  299. if param not in self.params.keys() and param not in non_obligatory_params:
  300. print("\033[91mCRITICAL ERROR: Attack '" + self.attack_name + "' does not define the parameter '" +
  301. str(param) + "'.\n The attack must define default values for all parameters."
  302. + "\n Cannot continue attack generation.\033[0m")
  303. import sys
  304. sys.exit(0)
  305. def write_attack_pcap(self, packets: list, append_flag: bool = False, destination_path: str = None):
  306. """
  307. Writes the attack's packets into a PCAP file with a temporary filename.
  308. :return: The path of the written PCAP file.
  309. """
  310. # Only check params initially when attack generation starts
  311. if append_flag is False and destination_path is None:
  312. # Check if all req. parameters are set
  313. self.check_parameters()
  314. # Determine destination path
  315. if destination_path is not None and os.path.exists(destination_path):
  316. destination = destination_path
  317. else:
  318. temp_file = tempfile.NamedTemporaryFile(delete=False, suffix='.pcap')
  319. destination = temp_file.name
  320. # Write packets into pcap file
  321. pktdump = PcapWriter(destination, append=append_flag)
  322. pktdump.write(packets)
  323. # Store pcap path and close file objects
  324. pktdump.close()
  325. return destination
  326. def get_reply_delay(self, ip_dst):
  327. """
  328. Gets the minimum and the maximum reply delay for all the connections of a specific IP.
  329. :param ip_dst: The IP to reterive its reply delay.
  330. :return minDelay: minimum delay
  331. :return maxDelay: maximum delay
  332. """
  333. result = self.statistics.process_db_query(
  334. "SELECT AVG(minDelay), AVG(maxDelay) FROM conv_statistics WHERE ipAddressB='6.6.6.6';") #" + ip_dst + "';")
  335. if result[0][0] and result[0][1]:
  336. minDelay = result[0][0]
  337. maxDelay = result[0][1]
  338. else:
  339. allMinDelays = self.statistics.process_db_query("SELECT minDelay FROM conv_statistics LIMIT 500;")
  340. minDelay = np.median(allMinDelays)
  341. allMaxDelays = self.statistics.process_db_query("SELECT maxDelay FROM conv_statistics LIMIT 500;")
  342. maxDelay = np.median(allMaxDelays)
  343. minDelay = int(minDelay) * 10 ** -6 # convert from micro to seconds
  344. maxDelay = int(maxDelay) * 10 ** -6
  345. return minDelay, maxDelay
  346. def packetsToConvs(self,exploit_raw_packets):
  347. """
  348. Classifies a bunch of packets to conversations groups. A conversation is a set of packets go between host A (IP,port)
  349. to host B (IP,port)
  350. :param exploit_raw_packets: A set of packets contains several conversations.
  351. :return conversations: A set of arrays, each array contains the packet of specifc conversation
  352. :return orderList_conversations: An array contains the conversations ids (IP_A,port_A, IP_b,port_B) in the order
  353. they appeared in the original packets.
  354. """
  355. conversations = {}
  356. orderList_conversations = []
  357. for pkt_num, pkt in enumerate(exploit_raw_packets):
  358. eth_frame = Ether(pkt[0])
  359. ip_pkt = eth_frame.payload
  360. ip_dst = ip_pkt.getfieldval("dst")
  361. ip_src = ip_pkt.getfieldval("src")
  362. tcp_pkt = ip_pkt.payload
  363. port_dst = tcp_pkt.getfieldval("dport")
  364. port_src = tcp_pkt.getfieldval("sport")
  365. conv_req = (ip_src, port_src, ip_dst, port_dst)
  366. conv_rep = (ip_dst, port_dst, ip_src, port_src)
  367. if conv_req not in conversations and conv_rep not in conversations:
  368. pktList = [pkt]
  369. conversations[conv_req] = pktList
  370. # Order list of conv
  371. orderList_conversations.append(conv_req)
  372. else:
  373. if conv_req in conversations:
  374. pktList = conversations[conv_req]
  375. pktList.append(pkt)
  376. conversations[conv_req] = pktList
  377. else:
  378. pktList = conversations[conv_rep]
  379. pktList.append(pkt)
  380. conversations[conv_rep] = pktList
  381. return (conversations, orderList_conversations)
  382. def is_valid_ip_address(self,addr):
  383. """
  384. Checks if the IP address family is supported.
  385. :param addr: IP address to be checked.
  386. :return: Boolean
  387. """
  388. try:
  389. socket.inet_aton(addr)
  390. return True
  391. except socket.error:
  392. return False
  393. def ip_src_dst_equal_check(self, ip_source, ip_destination):
  394. """
  395. Checks if the source IP and destination IP are equal.
  396. :param ip_source: source IP address.
  397. :param ip_destination: destination IP address.
  398. """
  399. equal = False
  400. if isinstance(ip_source, list):
  401. if ip_destination in ip_source:
  402. equal = True
  403. else:
  404. if ip_source == ip_destination:
  405. equal = True
  406. if equal:
  407. print("\nERROR: Invalid IP addresses; source IP is the same as destination IP: " + ip_source + ".")
  408. sys.exit(0)
  409. def get_inter_arrival_time(self, packets, distribution:bool=False):
  410. """
  411. Gets the inter-arrival times array and its distribution of a set of packets.
  412. :param packets: the packets to extract their inter-arrival time.
  413. :return inter_arrival_times: array of the inter-arrival times
  414. :return dict: the inter-arrival time distribution as a histogram {inter-arrival time:frequency}
  415. """
  416. inter_arrival_times = []
  417. prvsPktTime = 0
  418. for index, pkt in enumerate(packets):
  419. timestamp = pkt[1][0] + pkt[1][1]/10**6
  420. if index == 0:
  421. prvsPktTime = timestamp
  422. inter_arrival_times.append(0)
  423. else:
  424. inter_arrival_times.append(timestamp - prvsPktTime)
  425. prvsPktTime = timestamp
  426. if distribution:
  427. # Build a distribution dictionary
  428. import numpy as np
  429. freq,values = np.histogram(inter_arrival_times,bins=20)
  430. dict = {}
  431. for i,val in enumerate(values):
  432. if i < len(freq):
  433. dict[str(val)] = freq[i]
  434. return inter_arrival_times, dict
  435. else:
  436. return inter_arrival_times
  437. def clean_white_spaces(self, str):
  438. """
  439. Delete extra backslash from white spaces. This function is used to process the payload of packets.
  440. :param str: the payload to be processed.
  441. """
  442. str = str.replace("\\n", "\n")
  443. str = str.replace("\\r", "\r")
  444. str = str.replace("\\t", "\t")
  445. str = str.replace("\\\'", "\'")
  446. return str
  447. def modify_http_header(self,str_tcp_seg, orig_target_uri, target_uri, orig_ip_dst, target_host):
  448. """
  449. Substitute the URI and HOST in a HTTP header with new values.
  450. :param str_tcp_seg: the payload to be processed.
  451. :param orig_target_uri: old URI
  452. :param target_uri: new URI
  453. :param orig_ip_dst: old host
  454. :param target_host: new host
  455. """
  456. if len(str_tcp_seg) > 0:
  457. # convert payload bytes to str => str = "b'..\\r\\n..'"
  458. str_tcp_seg = str_tcp_seg[2:-1]
  459. str_tcp_seg = str_tcp_seg.replace(orig_target_uri, target_uri)
  460. str_tcp_seg = str_tcp_seg.replace(orig_ip_dst, target_host)
  461. str_tcp_seg = self.clean_white_spaces(str_tcp_seg)
  462. return str_tcp_seg
  463. #########################################
  464. # RANDOM IP/MAC ADDRESS GENERATORS
  465. #########################################
  466. @staticmethod
  467. def generate_random_ipv4_address(ipClass, n: int = 1):
  468. """
  469. Generates n random IPv4 addresses.
  470. :param n: The number of IP addresses to be generated
  471. :return: A single IP address, or if n>1, a list of IP addresses
  472. """
  473. def is_invalid(ipAddress: ipaddress.IPv4Address):
  474. return ipAddress.is_multicast or ipAddress.is_unspecified or ipAddress.is_loopback or \
  475. ipAddress.is_link_local or ipAddress.is_reserved or ipAddress.is_private
  476. # Generate a random IP from specific class
  477. def generate_address(ipClass):
  478. if ipClass == "Unknown":
  479. return ipaddress.IPv4Address(random.randint(0, 2 ** 32 - 1))
  480. else:
  481. # For DDoS attack, we do not generate private IPs
  482. if "private" in ipClass:
  483. ipClass = ipClass[0] # convert A-private to A
  484. ipClassesByte1 = {"A": {1,126}, "B": {128,191}, "C":{192, 223}, "D":{224, 239}, "E":{240, 254}}
  485. temp = list(ipClassesByte1[ipClass])
  486. minB1 = temp[0]
  487. maxB1 = temp[1]
  488. b1 = random.randint(minB1, maxB1)
  489. b2 = random.randint(1, 255)
  490. b3 = random.randint(1, 255)
  491. b4 = random.randint(1, 255)
  492. ipAddress = ipaddress.IPv4Address(str(b1) +"."+ str(b2) + "." + str(b3) + "." + str(b4))
  493. return ipAddress
  494. ip_addresses = []
  495. for i in range(0, n):
  496. address = generate_address(ipClass)
  497. while is_invalid(address):
  498. address = generate_address(ipClass)
  499. ip_addresses.append(str(address))
  500. if n == 1:
  501. return ip_addresses[0]
  502. else:
  503. return ip_addresses
  504. @staticmethod
  505. def generate_random_ipv6_address(n: int = 1):
  506. """
  507. Generates n random IPv6 addresses.
  508. :param n: The number of IP addresses to be generated
  509. :return: A single IP address, or if n>1, a list of IP addresses
  510. """
  511. def is_invalid(ipAddress: ipaddress.IPv6Address):
  512. return ipAddress.is_multicast or ipAddress.is_unspecified or ipAddress.is_loopback or \
  513. ipAddress.is_link_local or ipAddress.is_private or ipAddress.is_reserved
  514. def generate_address():
  515. return ipaddress.IPv6Address(random.randint(0, 2 ** 128 - 1))
  516. ip_addresses = []
  517. for i in range(0, n):
  518. address = generate_address()
  519. while is_invalid(address):
  520. address = generate_address()
  521. ip_addresses.append(str(address))
  522. if n == 1:
  523. return ip_addresses[0]
  524. else:
  525. return ip_addresses
  526. @staticmethod
  527. def generate_random_mac_address(n: int = 1):
  528. """
  529. Generates n random MAC addresses.
  530. :param n: The number of MAC addresses to be generated.
  531. :return: A single MAC addres, or if n>1, a list of MAC addresses
  532. """
  533. def is_invalid(address: str):
  534. first_octet = int(address[0:2], 16)
  535. is_multicast_address = bool(first_octet & 0b01)
  536. is_locally_administered = bool(first_octet & 0b10)
  537. return is_multicast_address or is_locally_administered
  538. def generate_address():
  539. mac = [random.randint(0x00, 0xff) for i in range(0, 6)]
  540. return ':'.join(map(lambda x: "%02x" % x, mac))
  541. mac_addresses = []
  542. for i in range(0, n):
  543. address = generate_address()
  544. while is_invalid(address):
  545. address = generate_address()
  546. mac_addresses.append(address)
  547. if n == 1:
  548. return mac_addresses[0]
  549. else:
  550. return mac_addresses