BaseAttack.py 28 KB

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