AttackParameters.py 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. from enum import Enum
  2. class Parameter(Enum):
  3. """
  4. Defines the shortname for attack parameters. The shortname may be used for attack parameter specification
  5. when calling ID2T via the command line.
  6. """
  7. # recommended type: IP address -------------------------------
  8. IP_SOURCE = 'ip.src' # source IP address
  9. IP_DESTINATION = 'ip.dst' # destination IP address
  10. IP_DNS = 'ip.dns' # IP address of DNS server
  11. # recommended type: MAC address ------------------------------
  12. MAC_SOURCE = 'mac.src' # MAC address of source
  13. MAC_DESTINATION = 'mac.dst' # MAC address of destination
  14. # recommended type: Port -------------------------------------
  15. PORT_OPEN = 'port.open' # open ports
  16. PORT_DESTINATION = 'port.dst' # destination ports
  17. PORT_SOURCE = 'port.src' # source ports
  18. # recommended type: Integer positive -------------------------
  19. PACKETS_LIMIT = 'packets.limit'
  20. NUMBER_ATTACKERS = 'attackers.count'
  21. ATTACK_DURATION = 'attack.duration' # in seconds
  22. VICTIM_BUFFER = 'victim.buffer' # in packets
  23. TARGET_URI = 'target.uri'
  24. # recommended type: domain -----------------------------------
  25. TARGET_HOST = 'target.host'
  26. # recommended type: Float ------------------------------------
  27. PACKETS_PER_SECOND = 'packets.per-second' # packets per second
  28. INJECT_AT_TIMESTAMP = 'inject.at-timestamp' # unix epoch time (seconds.millis) where attack should be injected
  29. # recommended type: Packet Position ----------------------------------
  30. INJECT_AFTER_PACKET = 'inject.after-pkt' # packet after which attack should be injected
  31. # recommended type: boolean --------------------------------
  32. PORT_DEST_SHUFFLE = 'port.dst.shuffle' # shuffles the destination ports if a list of ports is given
  33. PORT_DEST_ORDER_DESC = 'port.dst.order-desc' # uses a descending port order instead of a ascending order
  34. IP_SOURCE_RANDOMIZE = 'ip.src.shuffle' # randomizes the sources IP address if a list of IP addresses is given
  35. PORT_SOURCE_RANDOMIZE = 'port.src.shuffle' # randomizes the source port if a list of sources ports is given
  36. class ParameterTypes(Enum):
  37. """
  38. Defines types for parameters. These types may be used in the specification of allowed parameters within the
  39. individual attack classes. The type is used to verify the validity of the given value.
  40. """
  41. TYPE_IP_ADDRESS = 0
  42. TYPE_MAC_ADDRESS = 1
  43. TYPE_PORT = 2
  44. TYPE_INTEGER_POSITIVE = 3
  45. TYPE_TIMESTAMP = 4
  46. TYPE_BOOLEAN = 5
  47. TYPE_FLOAT = 6
  48. TYPE_PACKET_POSITION = 7 # used to derive timestamp from parameter INJECT_AFTER_PACKET
  49. TYPE_DOMAIN = 8