Esempio n. 1
0
def test__update_fivetupleuni_update():
    afg = AnubisFG(bidirectional=False)
    capture = rdpcap('tests/data/test_100_rows.pcap')
    # Second packet is a SYN TCP packet.
    packet = capture[1]

    ip_src = '172.16.0.5'
    ip_dst = '192.168.50.1'
    timestamp = datetime(2018, 12, 1, 13, 17, 11, 183810)
    src_port = 60675
    dst_port = 80
    protocol = 6
    key = (ip_src, src_port, ip_dst, dst_port, protocol)
    length = 74
    hdr_length = 20
    ttl = 63
    pkt_flag_counter = [0] * 8
    # SYN flag
    pkt_flag_counter[1] = 1

    # Creating
    afg._update_fivetupleuni(packet)
    expected = {
        'fst_timestamp': timestamp,
        'lst_timestamp': timestamp,
        'pkt_flag_counter': pkt_flag_counter,
        'tot_pkt': 1,
        'tot_header_len': hdr_length,
        'tot_packet_len': length,
        'max_pkt_len': length,
        'min_pkt_len': length,
        'tot_ttl': ttl
    }
    assert len(afg.memory_fivetup) == 1
    assert afg.memory_fivetup[key].__dict__ == expected

    # Updating
    # Third packet is another SYN TCP packet with same IPs and Ports
    packet = capture[2]
    new_timestamp = datetime(2018, 12, 1, 13, 17, 11, 183813)
    # SYN flag
    pkt_flag_counter[1] += 1
    afg._update_fivetupleuni(packet)
    expected = {
        'fst_timestamp': timestamp,
        'lst_timestamp': new_timestamp,
        'pkt_flag_counter': pkt_flag_counter,
        'tot_pkt': 2,
        'tot_header_len': hdr_length * 2,
        'tot_packet_len': length * 2,
        'max_pkt_len': length,
        'min_pkt_len': length,
        'tot_ttl': ttl * 2
    }
    assert len(afg.memory_fivetup) == 1
    assert afg.memory_fivetup[key].__dict__ == expected
Esempio n. 2
0
def test__update_fivetupleuni_noupdate():
    afg = AnubisFG(bidirectional=False)
    capture = rdpcap('tests/data/test_100_rows.pcap')
    # First packet is a STP packet that should not be read.
    packet = capture[0]

    afg._update_fivetupleuni(packet)
    assert afg.memory_fivetup == dict()
    with pytest.raises(IndexError, match='Packet does not have an IP layer'):
        afg._update_fivetupleuni(packet, ignore_errors=False)
Esempio n. 3
0
def test_update():
    capture = rdpcap('tests/data/test_100_rows.pcap')
    # Will be tested considering all possible sets of attributes.
    for bidir in [True, False]:
        for onlytwo in [True, False]:
            for onlyfive in set([not onlytwo, False]):
                # This will be updated by the method update.
                afg_1 = AnubisFG(bidirectional=bidir,
                                 only_twotuple=onlytwo,
                                 only_fivetuple=onlyfive)
                # This will be updated by the specific method(s) tested above.
                afg_2 = AnubisFG(bidirectional=bidir,
                                 only_twotuple=onlytwo,
                                 only_fivetuple=onlyfive)
                for i in range(1, 4):
                    packet = capture[i]
                    afg_1.update(packet)
                    assert afg_1.lst_timestamp == datetime.utcfromtimestamp(
                        packet.time)
                    if bidir:
                        if onlytwo:
                            afg_2._update_twotuplebi(packet)
                        elif onlyfive:
                            afg_2._update_fivetuplebi(packet)
                        else:
                            afg_2._update_twotuplebi(packet)
                            afg_2._update_fivetuplebi(packet)
                    else:
                        if onlytwo:
                            afg_2._update_twotupleuni(packet)
                        elif onlyfive:
                            afg_2._update_fivetupleuni(packet)
                        else:
                            afg_2._update_twotupleuni(packet)
                            afg_2._update_fivetupleuni(packet)

                    if afg_1.memory_twotup is None:
                        assert afg_2.memory_twotup is None
                    else:
                        assert afg_1.memory_twotup.keys(
                        ) == afg_2.memory_twotup.keys()
                        for key in afg_1.memory_twotup.keys():
                            assert afg_1.memory_twotup[
                                key].__dict__ == afg_2.memory_twotup[
                                    key].__dict__

                    if afg_1.memory_fivetup is None:
                        assert afg_2.memory_fivetup is None
                    else:
                        assert afg_1.memory_fivetup.keys(
                        ) == afg_2.memory_fivetup.keys()
                        for key in afg_1.memory_fivetup.keys():
                            assert afg_1.memory_fivetup[
                                key].__dict__ == afg_2.memory_fivetup[
                                    key].__dict__
Esempio n. 4
0
def test__generate_features_fivetupleuni():
    '''
        Feature list:
            qt_pkt
            qt_fin_fl
            qt_syn_fl
            qt_res_fl
            qt_psh_fl
            qt_ack_fl
            qt_urg_fl
            qt_ecn_fl
            qt_cwr_fl
            avg_hdr_len
            avg_pkt_len
            max_pkt_len
            min_pkt_len
            frq_pkt
            avg_ttl
            tm_dur_s
    '''
    n_features = 16
    ip_src = '172.16.0.5'
    ip_dst = '192.168.50.1'
    src_port = 60675
    dst_port = 80
    protocol = 6
    key = (ip_src, src_port, ip_dst, dst_port, protocol)
    afg = AnubisFG(bidirectional=False)

    # Tuple that is not on the memory.
    empty = afg._generate_features_fivetupleuni(key)
    assert empty == [0] * n_features

    # Duration 0
    capture = rdpcap('tests/data/test_100_rows.pcap')
    # Second packet is a SYN TCP packet.
    packet = capture[1]
    timestamp = datetime(2018, 12, 1, 13, 17, 11, 183810)
    afg._update_fivetupleuni(packet)
    expected = [
        1,  # qt_pkt
        0,  # qt_fin_fl
        1,  # qt_syn_fl
        0,  # qt_res_fl
        0,  # qt_psh_fl
        0,  # qt_ack_fl
        0,  # qt_urg_fl
        0,  # qt_ecn_fl
        0,  # qt_cwr_fl
        20,  # avg_hdr_len
        74,  # avg_pkt_len
        74,  # max_pkt_len
        74,  # min_pkt_len
        1,  # frq_pkt
        63,  # avg_ttl
        0,  # tm_dur_s
    ]
    ftrs = afg._generate_features_fivetupleuni(key)
    assert ftrs == expected

    # Duration > 0
    # Updating
    # Third packet is another SYN TCP packet with same IPs and Ports
    packet = capture[2]
    afg._update_fivetupleuni(packet)
    new_timestamp = datetime(2018, 12, 1, 13, 17, 11, 183813)
    dur = (new_timestamp - timestamp).total_seconds()
    expected = [
        2,  # qt_pkt
        0,  # qt_fin_fl
        2,  # qt_syn_fl
        0,  # qt_res_fl
        0,  # qt_psh_fl
        0,  # qt_ack_fl
        0,  # qt_urg_fl
        0,  # qt_ecn_fl
        0,  # qt_cwr_fl
        20,  # avg_hdr_len
        74,  # avg_pkt_len
        74,  # max_pkt_len
        74,  # min_pkt_len
        2 / dur,  # frq_pkt
        63,  # avg_ttl
        dur,  # tm_dur_s
    ]
    ftrs = afg._generate_features_fivetupleuni(key)
    assert ftrs == expected

    # Using now datetime.
    new_timestamp = datetime.now()
    dur = (new_timestamp - timestamp).total_seconds()
    expected = [
        2,  # qt_pkt
        0,  # qt_fin_fl
        2,  # qt_syn_fl
        0,  # qt_res_fl
        0,  # qt_psh_fl
        0,  # qt_ack_fl
        0,  # qt_urg_fl
        0,  # qt_ecn_fl
        0,  # qt_cwr_fl
        20,  # avg_hdr_len
        74,  # avg_pkt_len
        74,  # max_pkt_len
        74,  # min_pkt_len
        2 / dur,  # frq_pkt
        63,  # avg_ttl
        dur,  # tm_dur_s
    ]
    ftrs = afg._generate_features_fivetupleuni(key, now=True)
    assert np.isclose(ftrs, expected).all()

    # Zero forward packets on existing flow
    ip_src_1 = '192.168.0.1'
    ip_dst_1 = '192.168.0.2'
    src_port_1 = 80
    dst_port_1 = 80
    protocol_1 = 6
    key_1 = (ip_src_1, src_port_1, ip_dst_1, dst_port_1, protocol_1)
    t5_1 = FiveTupleUnidirectionalNode()
    memory_fivetup_1 = {key_1: t5_1}
    afg_1 = AnubisFG(memory_fivetup=memory_fivetup_1, bidirectional=False)
    ftrs = afg_1._generate_features_fivetupleuni(key_1)
    assert ftrs == [0] * n_features