123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- import collections as col
- import logging
- import random as rnd
- import lea
- import scapy.layers.inet as inet
- import Attack.AttackParameters as atkParam
- import Attack.BaseAttack as BaseAttack
- import ID2TLib.Utility as Util
- logging.getLogger("scapy.runtime").setLevel(logging.ERROR)
- # noinspection PyPep8
- class DDoSAttack(BaseAttack.BaseAttack):
- def __init__(self):
- """
- Creates a new instance of the DDoS attack.
- """
- # Initialize attack
- super(DDoSAttack, self).__init__("DDoS Attack", "Injects a DDoS attack'",
- "Resource Exhaustion")
- self.last_packet = None
- self.total_pkt_num = 0
- self.default_port = 0
- # Define allowed parameters and their type
- self.supported_params.update({
- atkParam.Parameter.IP_SOURCE: atkParam.ParameterTypes.TYPE_IP_ADDRESS,
- atkParam.Parameter.MAC_SOURCE: atkParam.ParameterTypes.TYPE_MAC_ADDRESS,
- atkParam.Parameter.PORT_SOURCE: atkParam.ParameterTypes.TYPE_PORT,
- atkParam.Parameter.IP_DESTINATION: atkParam.ParameterTypes.TYPE_IP_ADDRESS,
- atkParam.Parameter.MAC_DESTINATION: atkParam.ParameterTypes.TYPE_MAC_ADDRESS,
- atkParam.Parameter.PORT_DESTINATION: atkParam.ParameterTypes.TYPE_PORT,
- atkParam.Parameter.INJECT_AT_TIMESTAMP: atkParam.ParameterTypes.TYPE_FLOAT,
- atkParam.Parameter.INJECT_AFTER_PACKET: atkParam.ParameterTypes.TYPE_PACKET_POSITION,
- atkParam.Parameter.PACKETS_PER_SECOND: atkParam.ParameterTypes.TYPE_FLOAT,
- atkParam.Parameter.NUMBER_ATTACKERS: atkParam.ParameterTypes.TYPE_INTEGER_POSITIVE,
- atkParam.Parameter.ATTACK_DURATION: atkParam.ParameterTypes.TYPE_INTEGER_POSITIVE,
- atkParam.Parameter.VICTIM_BUFFER: atkParam.ParameterTypes.TYPE_INTEGER_POSITIVE
- })
- def init_params(self):
- """
- Initialize the parameters of this attack using the user supplied command line parameters.
- Use the provided statistics to calculate default parameters and to process user
- supplied queries.
- """
- # PARAMETERS: initialize with default values
- # (values are overwritten if user specifies them)
- self.add_param_value(atkParam.Parameter.INJECT_AFTER_PACKET, rnd.randint(0, self.statistics.get_packet_count()))
- # attacker configuration
- num_attackers = rnd.randint(1, 16)
- # The most used IP class in background traffic
- most_used_ip_class = Util.handle_most_used_outputs(self.statistics.get_most_used_ip_class())
- self.add_param_value(atkParam.Parameter.IP_SOURCE,
- self.generate_random_ipv4_address(most_used_ip_class, num_attackers))
- self.add_param_value(atkParam.Parameter.MAC_SOURCE, self.generate_random_mac_address(num_attackers))
- self.default_port = int(inet.RandShort())
- self.add_param_value(atkParam.Parameter.PORT_SOURCE, self.default_port)
- self.add_param_value(atkParam.Parameter.PACKETS_PER_SECOND, 0)
- self.add_param_value(atkParam.Parameter.ATTACK_DURATION, rnd.randint(5, 30))
- # victim configuration
- random_ip_address = self.statistics.get_random_ip_address()
- self.add_param_value(atkParam.Parameter.IP_DESTINATION, random_ip_address)
- destination_mac = self.statistics.get_mac_address(random_ip_address)
- if isinstance(destination_mac, list) and len(destination_mac) == 0:
- destination_mac = self.generate_random_mac_address()
- self.add_param_value(atkParam.Parameter.MAC_DESTINATION, destination_mac)
- self.add_param_value(atkParam.Parameter.VICTIM_BUFFER, rnd.randint(1000, 10000))
- def generate_attack_packets(self):
- """
- Creates the attack packets.
- """
- buffer_size = 1000
- # Determine source IP and MAC address
- num_attackers = self.get_param_value(atkParam.Parameter.NUMBER_ATTACKERS)
- if (num_attackers is not None) and (num_attackers is not 0):
- # user supplied atkParam.Parameter.NUMBER_ATTACKERS
- # The most used IP class in background traffic
- most_used_ip_class = Util.handle_most_used_outputs(self.statistics.get_most_used_ip_class())
- # Create random attackers based on user input atkParam.Parameter.NUMBER_ATTACKERS
- ip_source_list = self.generate_random_ipv4_address(most_used_ip_class, num_attackers)
- mac_source_list = self.generate_random_mac_address(num_attackers)
- else: # user did not supply atkParam.Parameter.NUMBER_ATTACKS
- # use default values for IP_SOURCE/MAC_SOURCE or overwritten values
- # if user supplied any values for those params
- ip_source_list = self.get_param_value(atkParam.Parameter.IP_SOURCE)
- mac_source_list = self.get_param_value(atkParam.Parameter.MAC_SOURCE)
- # Make sure IPs and MACs are lists
- if not isinstance(ip_source_list, list):
- ip_source_list = [ip_source_list]
- if not isinstance(mac_source_list, list):
- mac_source_list = [mac_source_list]
- # Generate MACs for each IP that has no corresponding MAC yet
- if (num_attackers is None) or (num_attackers is 0):
- if len(ip_source_list) > len(mac_source_list):
- mac_source_list.extend(self.generate_random_mac_address(len(ip_source_list)-len(mac_source_list)))
- num_attackers = min(len(ip_source_list), len(mac_source_list))
- # Initialize parameters
- self.packets = col.deque(maxlen=buffer_size)
- port_source_list = self.get_param_value(atkParam.Parameter.PORT_SOURCE)
- if not isinstance(port_source_list, list):
- port_source_list = [port_source_list]
- mac_destination = self.get_param_value(atkParam.Parameter.MAC_DESTINATION)
- ip_destination = self.get_param_value(atkParam.Parameter.IP_DESTINATION)
- most_used_ip_address = self.statistics.get_most_used_ip_address()
- pps = self.get_param_value(atkParam.Parameter.PACKETS_PER_SECOND)
- if pps == 0:
- result = self.statistics.process_db_query(
- "SELECT MAX(maxPktRate) FROM ip_statistics WHERE ipAddress='" + ip_destination + "';")
- if result is not None and not 0:
- pps = num_attackers * result
- else:
- result = self.statistics.process_db_query(
- "SELECT MAX(maxPktRate) FROM ip_statistics WHERE ipAddress='" + most_used_ip_address + "';")
- pps = num_attackers * result
- # Calculate complement packet rates of the background traffic for each interval
- attacker_pps = pps / num_attackers
- complement_interval_attacker_pps = self.statistics.calculate_complement_packet_rates(attacker_pps)
- # Check ip.src == ip.dst
- self.ip_src_dst_equal_check(ip_source_list, ip_destination)
- port_destination = self.get_param_value(atkParam.Parameter.PORT_DESTINATION)
- if not port_destination: # user did not define port_dest
- port_destination = self.statistics.process_db_query(
- "SELECT portNumber FROM ip_ports WHERE portDirection='in' AND ipAddress='" + ip_destination +
- "' AND portCount==(SELECT MAX(portCount) FROM ip_ports WHERE portDirection='in' AND ipAddress='" +
- ip_destination + "');")
- if not port_destination: # no port was retrieved
- port_destination = self.statistics.process_db_query(
- "SELECT portNumber FROM (SELECT portNumber, SUM(portCount) as occ FROM ip_ports WHERE "
- "portDirection='in' GROUP BY portNumber ORDER BY occ DESC) WHERE occ=(SELECT SUM(portCount) "
- "FROM ip_ports WHERE portDirection='in' GROUP BY portNumber ORDER BY SUM(portCount) DESC LIMIT 1);")
- if not port_destination:
- port_destination = max(1, int(inet.RandShort()))
- port_destination = Util.handle_most_used_outputs(port_destination)
- self.path_attack_pcap = None
- min_delay, max_delay = self.get_reply_delay(ip_destination)
- victim_buffer = self.get_param_value(atkParam.Parameter.VICTIM_BUFFER)
- attack_duration = self.get_param_value(atkParam.Parameter.ATTACK_DURATION)
- pkts_num = int(pps * attack_duration)
- source_win_sizes = self.statistics.get_rnd_win_size(pkts_num)
- destination_win_dist = self.statistics.get_win_distribution(ip_destination)
- if len(destination_win_dist) > 0:
- destination_win_prob_dict = lea.Lea.fromValFreqsDict(destination_win_dist)
- destination_win_value = destination_win_prob_dict.random()
- else:
- destination_win_value = self.statistics.get_most_used_win_size()
- destination_win_value = Util.handle_most_used_outputs(destination_win_value)
- # MSS that was used by IP destination in background traffic
- mss_dst = self.statistics.get_most_used_mss(ip_destination)
- if mss_dst is None:
- mss_dst = self.statistics.get_most_used_mss_value()
- mss_dst = Util.handle_most_used_outputs(mss_dst)
- # Stores triples of (timestamp, source_id, destination_id) for each timestamp.
- # Victim has id=0. Attacker tuple does not need to specify the destination because it's always the victim.
- timestamps_tuples = []
- # For each attacker(id), stores the current source-ports of SYN-packets
- # which still have to be acknowledged by the victim, as a "FIFO" for each attacker
- previous_attacker_port = []
- replies_count = 0
- self.total_pkt_num = 0
- # For each attacker, generate his own packets, then merge all packets
- for attacker in range(num_attackers):
- # Initialize empty port "FIFO" for current attacker
- previous_attacker_port.append([])
- # Calculate timestamp of first SYN-packet of attacker
- timestamp_next_pkt = self.get_param_value(atkParam.Parameter.INJECT_AT_TIMESTAMP)
- attack_ends_time = timestamp_next_pkt + attack_duration
- timestamp_next_pkt = rnd.uniform(timestamp_next_pkt, Util.update_timestamp(timestamp_next_pkt, attacker_pps))
- attacker_pkts_num = int(pkts_num / num_attackers) + rnd.randint(0, 100)
- timestamp_prv_reply = 0
- for pkt_num in range(attacker_pkts_num):
- # Stop the attack when it exceeds the duration
- if timestamp_next_pkt > attack_ends_time:
- break
- # Add timestamp of attacker SYN-packet. Attacker tuples do not need to specify destination
- timestamps_tuples.append((timestamp_next_pkt, attacker+1))
- # Calculate timestamp of victim ACK-packet
- timestamp_reply = Util.update_timestamp(timestamp_next_pkt, attacker_pps, min_delay)
- while timestamp_reply <= timestamp_prv_reply:
- timestamp_reply = Util.update_timestamp(timestamp_prv_reply, attacker_pps, min_delay)
- timestamp_prv_reply = timestamp_reply
- # Add timestamp of victim ACK-packet(victim always has id=0)
- timestamps_tuples.append((timestamp_reply, 0, attacker+1))
- # Calculate timestamp for next attacker SYN-packet
- attacker_pps = max(Util.get_interval_pps(complement_interval_attacker_pps, timestamp_next_pkt),
- (pps / num_attackers) / 2)
- timestamp_next_pkt = Util.update_timestamp(timestamp_next_pkt, attacker_pps)
- # Sort timestamp-triples according to their timestamps in ascending order
- timestamps_tuples.sort(key=lambda tmstmp: tmstmp[0])
- self.attack_start_utime = timestamps_tuples[0][0]
- # For each triple, generate packet
- for timestamp in timestamps_tuples:
- # If current current triple is an attacker
- if timestamp[1] != 0:
- attacker_id = timestamp[1]-1
- # Build request package
- # Select one IP address and its corresponding MAC address
- ip_source = ip_source_list[attacker_id]
- mac_source = mac_source_list[attacker_id]
- # Determine source port
- (port_source, ttl_value) = Util.get_attacker_config(ip_source_list, ip_source)
- # If source ports were specified by the user, get random port from specified ports
- if port_source_list[0] != self.default_port:
- port_source = rnd.choice(port_source_list)
- # Push port of current attacker SYN-packet into port "FIFO" of the current attacker
- # only if victim can still respond, otherwise, memory is wasted
- if replies_count <= victim_buffer:
- previous_attacker_port[attacker_id].insert(0, port_source)
- request_ether = inet.Ether(dst=mac_destination, src=mac_source)
- request_ip = inet.IP(src=ip_source, dst=ip_destination, ttl=ttl_value)
- # Random win size for each packet
- source_win_size = rnd.choice(source_win_sizes)
- request_tcp = inet.TCP(sport=port_source, dport=port_destination, flags='S', ack=0,
- window=source_win_size)
- request = (request_ether / request_ip / request_tcp)
- request.time = timestamp[0]
- # Append request
- self.packets.append(request)
- self.total_pkt_num += 1
- # If current triple is the victim
- else:
- # Build reply package
- if replies_count <= victim_buffer:
- attacker_id = timestamp[2]-1
- reply_ether = inet.Ether(src=mac_destination, dst=mac_source_list[attacker_id])
- reply_ip = inet.IP(src=ip_destination, dst=ip_source_list[attacker_id], flags='DF')
- # Pop port from attacker's port "FIFO" into destination port
- reply_tcp = inet.TCP(sport=port_destination, dport=previous_attacker_port[attacker_id].pop(), seq=0,
- ack=1, flags='SA', window=destination_win_value, options=[('MSS', mss_dst)])
- reply = (reply_ether / reply_ip / reply_tcp)
- reply.time = timestamp[0]
- self.packets.append(reply)
- replies_count += 1
- self.total_pkt_num += 1
- # every 1000 packets write them to the pcap file (append)
- if (self.total_pkt_num > 0) and (self.total_pkt_num % buffer_size == 0) and (len(self.packets) > 0):
- self.last_packet = self.packets[-1]
- self.attack_end_utime = self.last_packet.time
- self.packets = sorted(self.packets, key=lambda pkt: pkt.time)
- self.path_attack_pcap = self.write_attack_pcap(self.packets, True, self.path_attack_pcap)
- self.packets = []
- def generate_attack_pcap(self):
- """
- Creates a pcap containing the attack packets.
- :return: The location of the generated pcap file.
- """
- if len(self.packets) > 0:
- self.packets = sorted(self.packets, key=lambda pkt: pkt.time)
- self.path_attack_pcap = self.write_attack_pcap(self.packets, True, self.path_attack_pcap)
- self.last_packet = self.packets[-1]
- # Store timestamp of last packet
- self.attack_end_utime = self.last_packet.time
- # Return packets sorted by packet time_sec_start
- # pkt_num+1: because pkt_num starts at 0
- return self.total_pkt_num, self.path_attack_pcap
|