Utility.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. import calendar as cal
  2. import datetime as dt
  3. import ipaddress
  4. import os
  5. import random as rnd
  6. import matplotlib
  7. import scipy.stats as stats
  8. matplotlib.use('Agg', force=True)
  9. import lea
  10. import xdg.BaseDirectory as BaseDir
  11. import scapy.layers.inet as inet
  12. CACHE_DIR = os.path.join(BaseDir.xdg_cache_home, 'id2t')
  13. CODE_DIR = os.path.dirname(os.path.abspath(__file__)) + "/../"
  14. ROOT_DIR = CODE_DIR + "../"
  15. RESOURCE_DIR = ROOT_DIR + "resources/"
  16. TEST_DIR = RESOURCE_DIR + "test/"
  17. OUT_DIR = None
  18. MISC_OUT_FILES = {}
  19. # List of common operation systems
  20. platforms = {"win7", "win10", "winxp", "win8.1", "macos", "linux", "win8", "winvista", "winnt", "win2000"}
  21. # Distribution of common operation systems
  22. platform_probability = {"win7": 48.43, "win10": 27.99, "winxp": 6.07, "win8.1": 6.07, "macos": 5.94, "linux": 3.38,
  23. "win8": 1.35, "winvista": 0.46, "winnt": 0.31}
  24. # List of no-ops
  25. x86_nops = {b'\x90', b'\xfc', b'\xfd', b'\xf8', b'\xf9', b'\xf5', b'\x9b'}
  26. # List of pseudo no-ops (includes ops which won't change the state e.g. read access)
  27. x86_pseudo_nops = {b'\x97', b'\x96', b'\x95', b'\x93', b'\x92', b'\x91', b'\x99', b'\x4d', b'\x48', b'\x47', b'\x4f',
  28. b'\x40', b'\x41', b'\x37', b'\x3f', b'\x27', b'\x2f', b'\x46', b'\x4e', b'\x98', b'\x9f', b'\x4a',
  29. b'\x44', b'\x42', b'\x43', b'\x49', b'\x4b', b'\x45', b'\x4c', b'\x60', b'\x0e', b'\x1e', b'\x50',
  30. b'\x55', b'\x53', b'\x51', b'\x57', b'\x52', b'\x06', b'\x56', b'\x54', b'\x16', b'\x58', b'\x5d',
  31. b'\x5b', b'\x59', b'\x5f', b'\x5a', b'\x5e', b'\xd6'}
  32. # Characters which result in operational behaviour (e.g. FTPWinaXeExploit.py)
  33. forbidden_chars = [b'\x00', b'\x0a', b'\x0d']
  34. # Used in get_attacker_config
  35. attacker_port_mapping = {}
  36. # Used in get_attacker_config
  37. attacker_ttl_mapping = {}
  38. # Identifier for attacks
  39. generic_attack_names = {"attack", "exploit"}
  40. def update_timestamp(timestamp, pps, delay=0):
  41. """
  42. Calculates the next timestamp to be used based on the packet per second rate (pps) and the maximum delay.
  43. :return: Timestamp to be used for the next packet.
  44. """
  45. # FIXME: throw Exception if pps==0
  46. if delay == 0:
  47. # Calculate request timestamp
  48. # To imitate the bursty behavior of traffic
  49. randomdelay = lea.Lea.fromValFreqsDict({1 / pps: 70, 2 / pps: 20, 5 / pps: 7, 10 / pps: 3})
  50. return timestamp + rnd.uniform(1 / pps, randomdelay.random())
  51. else:
  52. # Calculate reply timestamp
  53. randomdelay = lea.Lea.fromValFreqsDict({delay / 2: 70, delay / 3: 20, delay / 5: 7, delay / 10: 3})
  54. return timestamp + rnd.uniform(1 / pps + delay, 1 / pps + randomdelay.random())
  55. def get_interval_pps(complement_interval_pps, timestamp):
  56. """
  57. Gets the packet rate (pps) for a specific time interval.
  58. :param complement_interval_pps: an array of tuples (the last timestamp in the interval, the packet rate in the
  59. corresponding interval).
  60. :param timestamp: the timestamp at which the packet rate is required.
  61. :return: the corresponding packet rate (pps) .
  62. """
  63. for row in complement_interval_pps:
  64. if timestamp <= row[0]:
  65. return row[1]
  66. return complement_interval_pps[-1][1] # in case the timestamp > capture max timestamp
  67. def get_nth_random_element(*element_list):
  68. """
  69. Returns the n-th element of every list from an arbitrary number of given lists.
  70. For example, list1 contains IP addresses, list 2 contains MAC addresses. Use of this function ensures that
  71. the n-th IP address uses always the n-th MAC address.
  72. :param element_list: An arbitrary number of lists.
  73. :return: A tuple of the n-th element of every list.
  74. """
  75. if len(element_list) <= 0:
  76. return None
  77. elif len(element_list) == 1 and len(element_list[0]) > 0:
  78. return rnd.choice(element_list[0])
  79. else:
  80. range_max = min([len(x) for x in element_list])
  81. if range_max > 0:
  82. range_max -= 1
  83. n = rnd.randint(0, range_max)
  84. return tuple(x[n] for x in element_list)
  85. else:
  86. return None
  87. def get_rnd_os():
  88. """
  89. Chooses random platform over an operating system probability distribution
  90. :return: random platform as string
  91. """
  92. os_dist = lea.Lea.fromValFreqsDict(platform_probability)
  93. return os_dist.random()
  94. def check_platform(platform: str) -> None:
  95. """
  96. Checks if the given platform is currently supported
  97. if not exits with error
  98. :param platform: the platform, which should be validated
  99. """
  100. if platform not in platforms:
  101. raise ValueError("ERROR: Invalid platform: " + platform + "." +
  102. "\n Please select one of the following platforms: " + ",".join(platforms))
  103. def get_ip_range(start_ip: str, end_ip: str):
  104. """
  105. Generates a list of IPs of a given range. If the start_ip is greater than the end_ip, the reverse range is generated
  106. :param start_ip: the start_ip of the desired IP-range
  107. :param end_ip: the end_ip of the desired IP-range
  108. :return: a list of all IPs in the desired IP-range, including start-/end_ip
  109. """
  110. start = ipaddress.ip_address(start_ip)
  111. end = ipaddress.ip_address(end_ip)
  112. ips = []
  113. if start < end:
  114. while start <= end:
  115. ips.append(start.exploded)
  116. start = start + 1
  117. elif start > end:
  118. while start >= end:
  119. ips.append(start.exploded)
  120. start = start - 1
  121. else:
  122. ips.append(start_ip)
  123. return ips
  124. def generate_source_port_from_platform(platform: str, previous_port=0):
  125. """
  126. Generates the next source port according to the TCP-port-selection strategy of the given platform
  127. :param platform: the platform for which to generate source ports
  128. :param previous_port: the previously used/generated source port. Must be 0 if no port was generated before
  129. :return: the next source port for the given platform
  130. """
  131. check_platform(platform)
  132. if platform in {"winnt", "winxp", "win2000"}:
  133. if (previous_port == 0) or (previous_port + 1 > 5000):
  134. return rnd.randint(1024, 5000)
  135. else:
  136. return previous_port + 1
  137. elif platform == "linux":
  138. return rnd.randint(32768, 61000)
  139. else:
  140. if (previous_port == 0) or (previous_port + 1 > 65535):
  141. return rnd.randint(49152, 65535)
  142. else:
  143. return previous_port + 1
  144. def get_filetime_format(timestamp):
  145. """
  146. Converts a timestamp into MS FILETIME format
  147. :param timestamp: a timestamp in seconds
  148. :return: MS FILETIME timestamp
  149. """
  150. boot_datetime = dt.datetime.fromtimestamp(timestamp)
  151. if boot_datetime.tzinfo is None or boot_datetime.tzinfo.utcoffset(boot_datetime) is None:
  152. boot_datetime = boot_datetime.replace(tzinfo=boot_datetime.tzname())
  153. boot_filetime = 116444736000000000 + (cal.timegm(boot_datetime.timetuple()) * 10000000)
  154. return boot_filetime + (boot_datetime.microsecond * 10)
  155. def get_rnd_boot_time(timestamp, platform="winxp"):
  156. """
  157. Generates a random boot time based on a given timestamp and operating system
  158. :param timestamp: a timestamp in seconds
  159. :param platform: a platform as string as specified in check_platform above. default is winxp. this param is optional
  160. :return: timestamp of random boot time in seconds since EPOCH
  161. """
  162. check_platform(platform)
  163. if platform is "linux":
  164. uptime_in_days = lea.Lea.fromValFreqsDict({3: 50, 7: 25, 14: 12.5, 31: 6.25, 92: 3.125, 183: 1.5625,
  165. 365: 0.78125, 1461: 0.390625, 2922: 0.390625})
  166. elif platform is "macos":
  167. uptime_in_days = lea.Lea.fromValFreqsDict({7: 50, 14: 25, 31: 12.5, 92: 6.25, 183: 3.125, 365: 3.076171875,
  168. 1461: 0.048828125})
  169. else:
  170. uptime_in_days = lea.Lea.fromValFreqsDict({3: 50, 7: 25, 14: 12.5, 31: 6.25, 92: 3.125, 183: 1.5625,
  171. 365: 0.78125, 1461: 0.78125})
  172. timestamp -= rnd.randint(0, uptime_in_days.random() * 86400)
  173. return timestamp
  174. def get_rnd_x86_nop(count=1, side_effect_free=False, char_filter=set()):
  175. """
  176. Generates a specified number of x86 single-byte (pseudo-)NOPs
  177. :param count: The number of bytes to generate
  178. :param side_effect_free: Determines whether NOPs with side-effects (to registers or the stack) are allowed
  179. :param char_filter: A set of bytes which are forbidden to generate
  180. :return: Random x86 NOP bytestring
  181. """
  182. result = b''
  183. nops = x86_nops.copy()
  184. if not side_effect_free:
  185. nops |= x86_pseudo_nops.copy()
  186. if not isinstance(char_filter, set):
  187. char_filter = set(char_filter)
  188. nops = list(nops - char_filter)
  189. for i in range(0, count):
  190. result += nops[rnd.randint(0, len(nops) - 1)]
  191. return result
  192. def get_rnd_bytes(count=1, ignore=None):
  193. """
  194. Generates a specified number of random bytes while excluding unwanted bytes
  195. :param count: Number of wanted bytes
  196. :param ignore: The bytes, which should be ignored, as an array
  197. :return: Random bytestring
  198. """
  199. if ignore is None:
  200. ignore = []
  201. result = b''
  202. for i in range(0, count):
  203. char = os.urandom(1)
  204. while char in ignore:
  205. char = os.urandom(1)
  206. result += char
  207. return result
  208. def check_payload_len(payload_len: int, limit: int) -> None:
  209. """
  210. Checks if the len of the payload exceeds a given limit
  211. :param payload_len: The length of the payload
  212. :param limit: The limit of the length of the payload which is allowed
  213. """
  214. if payload_len > limit:
  215. raise ValueError("Custom payload too long: " + str(payload_len) +
  216. " bytes. Should be a maximum of " + str(limit) + " bytes.")
  217. def get_bytes_from_file(filepath):
  218. """
  219. Converts the content of a file into its byte representation
  220. The content of the file can either be a string or hexadecimal numbers/bytes (e.g. shellcode)
  221. The file must have the keyword "str" or "hex" in its first line to specify the rest of the content
  222. If the content is hex, whitespaces, backslashes, "x", quotation marks and "+" are removed
  223. Example for a hexadecimal input file:
  224. hex
  225. "abcd ef \xff10\ff 'xaa' x \ ab"
  226. Output: b'\xab\xcd\xef\xff\x10\xff\xaa\xab'
  227. :param filepath: The path of the file from which to get the bytes
  228. :return: The bytes of the file (either a byte representation of a string or the bytes contained in the file)
  229. """
  230. try:
  231. file = open(filepath)
  232. result_bytes = b''
  233. header = file.readline().strip()
  234. content = file.read()
  235. if header == "hex":
  236. content = content.replace(" ", "").replace("\n", "").replace("\\", "").replace("x", "").replace("\"", "") \
  237. .replace("'", "").replace("+", "").replace("\r", "")
  238. try:
  239. result_bytes = bytes.fromhex(content)
  240. except ValueError:
  241. print("\nERROR: Content of file is not all hexadecimal.")
  242. file.close()
  243. exit(1)
  244. elif header == "str":
  245. result_bytes = content.strip().encode()
  246. else:
  247. print("\nERROR: Invalid header found: " + header + ". Try 'hex' or 'str' followed by endline instead.")
  248. file.close()
  249. exit(1)
  250. for forbidden_char in forbidden_chars:
  251. if forbidden_char in result_bytes:
  252. print("\nERROR: Forbidden character found in payload: ", forbidden_char)
  253. file.close()
  254. exit(1)
  255. file.close()
  256. return result_bytes
  257. except FileNotFoundError:
  258. print("\nERROR: File not found: ", filepath)
  259. exit(1)
  260. def handle_most_used_outputs(most_used_x):
  261. """
  262. :param most_used_x: Element or list (e.g. from SQL-query output) which should only be one element
  263. :return: most_used_x if it's not a list. The first element of most_used_x after being sorted if it's a list.
  264. None if that list is empty.
  265. """
  266. if isinstance(most_used_x, list):
  267. if len(most_used_x) == 0:
  268. return None
  269. most_used_x.sort()
  270. return most_used_x[0]
  271. else:
  272. return most_used_x
  273. def get_attacker_config(ip_source_list, ip_address: str):
  274. """
  275. Returns the attacker configuration depending on the IP address, this includes the port for the next
  276. attacking packet and the previously used (fixed) TTL value.
  277. :param ip_source_list: List of source IPs
  278. :param ip_address: The IP address of the attacker
  279. :return: A tuple consisting of (port, ttlValue)
  280. """
  281. # Gamma distribution parameters derived from MAWI 13.8G dataset
  282. alpha, loc, beta = (2.3261710235, -0.188306914406, 44.4853123884)
  283. gd = stats.gamma.rvs(alpha, loc=loc, scale=beta, size=len(ip_source_list))
  284. # Determine port
  285. port = attacker_port_mapping.get(ip_address)
  286. if port is not None: # use next port
  287. next_port = attacker_port_mapping.get(ip_address) + 1
  288. if next_port > (2 ** 16 - 1):
  289. next_port = 1
  290. else: # generate starting port
  291. next_port = inet.RandShort()
  292. attacker_port_mapping[ip_address] = next_port
  293. # Determine TTL value
  294. ttl = attacker_ttl_mapping.get(ip_address)
  295. if ttl is None: # determine TTL value
  296. is_invalid = True
  297. pos = ip_source_list.index(ip_address)
  298. pos_max = len(gd)
  299. while is_invalid:
  300. ttl = int(round(gd[pos]))
  301. if 0 < ttl < 256: # validity check
  302. is_invalid = False
  303. else:
  304. pos = (pos + 1) % pos_max
  305. attacker_ttl_mapping[ip_address] = ttl
  306. # return port and TTL
  307. return next_port, ttl
  308. def remove_generic_ending(string):
  309. """"
  310. Returns the input string with it's ending cut off, in case it was a generic one
  311. :param string: Input string
  312. :return: Input string with ending cut off
  313. """
  314. for end in generic_attack_names:
  315. if string.endswith(end):
  316. return string[:-len(end)]
  317. return string