-
Notifications
You must be signed in to change notification settings - Fork 2
/
receive.py
83 lines (75 loc) · 2.43 KB
/
receive.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env python
import sys
import struct
import os
import argparse
import socket
import random
import argparse
import time
import gpt2
from scapy.all import sniff, send, sendp, hexdump, get_if_list, get_if_hwaddr, hexdump, sr1,sr
from scapy.all import Packet, IPOption
from scapy.all import ShortField, IntField, LongField, BitField, FieldListField, FieldLenField
from scapy.all import IP, IPv6, TCP, UDP, Raw, Ether
from scapy.layers.inet import _IPOption_HDR
from gpt2 import *
from scapy import all
def get_if():
ifs=get_if_list()
iface=None
for i in get_if_list():
if "vf0_0" in i:
iface=i
break;
if not iface:
print "Cannot find eth1 interface"
exit(1)
return iface
class IPOption_MRI(IPOption):
name = "MRI"
option = 31
fields_desc = [ _IPOption_HDR,
FieldLenField("length", None, fmt="B",
length_of="swids",
adjust=lambda pkt,l:l+4),
ShortField("count", 0),
FieldListField("swids",
[],
IntField("", 0),
length_from=lambda pkt:pkt.count*4) ]
def handle_pkt(pkt):
iface = "vf0_0"
#if UDP in pkt and pkt[UDP].dport == 2152:
#if UDP in pkt:
if pkt.nh == 43:
print "wow, got a srv6 packet"
pkt.addresses=["fc00::4","fc00::1","fc00::99"]
pkt.show2()
hexdump(pkt)
sendp(pkt, iface=iface, verbose=False)
'''
#5G PACKET
pkt5g = Ether(src='00:15:5d:00:00:00', dst='00:15:5d:00:00:03') / IPv6(src="fc00::1", dst="fc00::4") / IPv6ExtHdrRouting(type = 4, segleft = 2, addresses=["fc00::4","fc00::101","fc00::100"]) / UDP (sport=64515, dport=2152 ) / GTP_U_Header(TEID=32, Reserved=0, E=1) / dl_pdu_session(gtp_ext=133,QoSID=14)
#5G + USER DATA
pkt2=pkt5g / pkt[IPv6]
print "got a packet"
pkt.show2()
hexdump(pkt)
print "packet sent"
pkt2.show2()
hexdump(pkt2)
sendp(pkt2, iface=iface, verbose=False)
sendp(pkt2, loop=0, count=1)
'''
main()
def main():
ifaces = filter(lambda i: 'eth' in i, os.listdir('/sys/class/net/'))
iface = "vf0_0"
print "sniffing on %s" % iface
sys.stdout.flush()
sniff(iface = iface,
prn = lambda x: handle_pkt(x))
print "teste"
if __name__ == '__main__':
main()