-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbyteosaurus_hex.py
2657 lines (2562 loc) · 117 KB
/
byteosaurus_hex.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/python3
#################################################################################################################
# Yet another packet generator based on Scapy
# For installation and usage see README https://github.com/UchihaItachiSama/scapy-cli/blob/main/README.md
#################################################################################################################
#################################################################################################################
# Libraries
import codecs
import sys
from scapy.all import *
from scapy.error import Scapy_Exception
from collections import Counter
from tabulate import tabulate
import gc
import multiprocessing
from os import urandom
from random import randint
from scapy.contrib.igmp import *
from scapy.contrib.igmpv3 import *
from scapy.contrib.mac_control import *
from scapy.contrib.mpls import *
import re
import logging
#################################################################################################################
def requires(module):
req_arr = {
"ICMP": [
"Source MAC (de:ad:be:ef:ca:fe)", "Destination MAC", "Source IP",
"Destination IP", "TTL", "Tag (y/n)"
],
"ARP": [
"Source MAC (de:ad:be:ef:ca:fe)", "Destination MAC", "Sender MAC",
"Sender IP", "Target MAC", "Target IP", "Tag (y/n)"
],
"IGMP": [
"Sender MAC (de:ad:be:ef:ca:fe)", "Sender IP", "Multicast Address",
"Source Address", "Tag (y/n)"
],
"PCAP": [
"Source MAC (de:ad:be:ef:ca:fe)", "Destination MAC", "Source IP",
"Destination IP"
],
"MCAST": [
"Source MAC (de:ad:be:ef:ca:fe)", "Source IP", "Destination IP",
"UDP Source Port", "UDP Destination Port", "Tag (y/n)"
],
"UDP": [
"Source MAC (de:ad:be:ef:ca:fe)", "Destination MAC", "Source IP",
"Destination IP", "UDP Source Port", "UDP Destination Port",
"Tag (y/n)"
],
"TCP": [
"Source MAC (de:ad:be:ef:ca:fe)", "Destination MAC", "Source IP",
"Destination IP", "TCP Source Port", "TCP Destination Port",
"Tag (y/n)"
],
"VXLAN": [
"Outer Source MAC (de:ad:be:af:ca:fe)", "Outer Destination MAC",
"Outer Source IP", "Outer Destination IP", "Outer UDP Source Port",
"Outer UDP Destination Port (default 4789)", "VNI"
],
"LLFC": [
"Source MAC (de:ad:be:ef:ca:fe)", "Time in Quanta (0-65535)"
],
"PFC": [
"Source MAC (de:ad:be:ef:ca:fe)", "Enable Pause for Class (C0-C7)",
"Time in Quanta for Class (0-65535)"
],
"MPLS": [
"Outer Source MAC (de:ad:be:af:ca:fe)", "Outer Destination MAC",
"Labels in comma delimited form (Top to Bottom)", "Control Word (y/n)"
],
"common": ["Count (c for continous)", "Source Interface"]
}
return req_arr[module], req_arr["common"]
#################################################################################################################
def build_icmp():
# Gettting the input parameters
icmp_pkt = None
input_param, common_param = requires("ICMP")
fuzzy = (input("Random ICMP Packet? (y/n) > ").strip()).lower()
if fuzzy == "y":
icmp_type = (input("ICMP Type (req/reply) > ").strip()).lower()
inputs = []
# Common parameters
for i in range(0, len(common_param)):
inputs.insert(i, input("{} > ".format(common_param[i])))
icmp_pkt = icmp_packet(fuzzy, 'ICMP', icmp_type, inputs)
if icmp_pkt != None:
logger.info("ICMP packet built")
icmp_pkt.show()
return icmp_pkt, inputs[0], inputs[1]
else:
return None
elif fuzzy == "n":
icmp_type = (input("ICMP Type (req/reply) > ").strip()).lower()
# Getting input parameters
inputs = []
dot1q_prio = []
for i in range(0, len(input_param)):
temp_input = input("{} > ".format(input_param[i]))
if "Tag" in input_param[i] and temp_input.lower() == "y":
inputs.insert(i, input("VLAN Tag (x,y) > "))
dot1q_prio.insert(0, input("CoS (x,y | default 0) > "))
elif "Tag" in input_param[i] and temp_input.lower() == "n":
inputs.insert(i, False)
elif "Tag" not in input_param[i]:
inputs.insert(i, temp_input)
else:
logger.critical(
"Invalid choice, got '{}' expected values (y/n)".format(
temp_input))
return None
# Common parameters
for j in range(0, len(common_param)):
i = i + 1
inputs.insert(i, input("{} > ".format(common_param[j])))
# Based on the provided VLAN tag return tagged/untagged icmp packet
if not (inputs[5]):
icmp_pkt = icmp_packet(fuzzy, 'ICMP', icmp_type, inputs)
else:
vlans = (inputs[5]).strip().split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan id'{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
icmp_pkt = icmp_packet(fuzzy, 'ICMP', icmp_type, inputs)
cos = validate_cos(cos, vlans)
if icmp_pkt != None and cos != None:
icmp_pkt = add_vlan(icmp_pkt, vlans, cos)
else:
return None
if icmp_pkt != None:
logger.info("ICMP Packet built")
icmp_pkt.show()
return icmp_pkt, inputs[6], inputs[7]
else:
return None
else:
logger.critical(
"Invalid input '{}' Expected string (y/n)".format(fuzzy))
return None
#################################################################################################################
def build_arp():
# Getting input parameters
input_param, common_param = requires("ARP")
inputs = [None] * len(input_param)
arp_pkt = None
fuzzy = (input("Generate random ARP Packet? (y/n) > ").strip()).lower()
if fuzzy == "y":
arp_type = (input("ARP Type (req/resp) > ").strip()).lower()
inputs = []
# Common parameters
for i in range(0, len(common_param)):
inputs.insert(i, input("{} > ".format(common_param[i])))
arp_pkt = arp_packet(fuzzy, 'ARP', arp_type, inputs)
if arp_pkt != None:
logger.info("ARP packet built")
arp_pkt.show()
return arp_pkt, inputs[0], inputs[1]
else:
return None
elif fuzzy == "n":
arp_type = (input("ARP Type (req/resp) > ").strip()).lower()
inputs = []
dot1q_prio = []
for i in range(0, len(input_param)):
temp_input = input("{} > ".format(input_param[i]))
if "Tag" in input_param[i] and temp_input.lower() == "y":
inputs.insert(i, input("VLAN Tag (x,y) > "))
dot1q_prio.insert(0, input("CoS (x,y | default 0) > "))
elif "Tag" in input_param[i] and temp_input.lower() == "n":
inputs.insert(i, False)
elif "Tag" not in input_param[i]:
inputs.insert(i, temp_input)
else:
logger.critical(
"Invalid choice, got '{}' expected values (y/n)".format(
temp_input))
return None
# Common parameters
for j in range(0, len(common_param)):
i = i + 1
inputs.insert(i, input("{} > ".format(common_param[j])))
if not (inputs[6]):
arp_pkt = arp_packet(fuzzy, 'ARP', arp_type, inputs)
else:
vlans = inputs[6].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan id'{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
arp_pkt = arp_packet(fuzzy, 'ARP', arp_type, inputs)
cos = validate_cos(cos, vlans)
if arp_pkt != None and cos != None:
arp_pkt = add_vlan(arp_pkt, vlans, cos)
else:
return None
if arp_pkt != None:
logger.info("ARP packet built")
arp_pkt.show()
return arp_pkt, inputs[7], inputs[8]
else:
return None
else:
logger.critical(
"Invalid input '{}' Expected string (y/n)".format(fuzzy))
return None
#################################################################################################################
def build_group_records(msg_type):
final_grp_arr = []
if msg_type == "M_R":
try:
num_records = int(input("Number of group records > ").strip())
for index in range(0, num_records):
print("\nGroup record {}:".format(index + 1))
mcast_addr = input("Multicast Address > ").strip()
record_type = int(
input(
"\nRecord Type:\n\n1 -- Mode Is Include\n2 -- Mode Is Exclude\n3 -- Change To Include Mode\n4 -- Change To Exclude Mode\n5 -- Allow New Sources\n6 -- Block Old Sources\n\nEnter your choice (1-6) > "
).strip())
src_addrs = input("Source addresses (IP1,IP2) > ").split(",")
if len(src_addrs) == 1 and src_addrs[0] == '':
gr1 = IGMPv3gr(rtype=4, maddr=mcast_addr, numsrc=0)
final_grp_arr.append(gr1)
else:
gr1 = IGMPv3gr(rtype=record_type,
maddr=mcast_addr,
numsrc=len(src_addrs),
srcaddrs=src_addrs)
final_grp_arr.append(gr1)
except ValueError:
logger.critical(
"Invalid input for num_records:'{}'. Expecting integer value".
format(num_records))
logger.critical(ValueError, exc_info=True)
return None
elif msg_type == "L_G":
try:
num_records = int(input("Number of group records > ").strip())
for index in range(0, num_records):
print("\nGroup record {}:".format(index + 1))
mcast_addr = input("Multicast Address > ").strip()
#record_type = int(input("\nRecord Type \n{1: 'Mode Is Include'\n2: 'Mode Is Exclude'\n3: 'Change To Include Mode'\n4: 'Change To Exclude Mode'\n5: 'Allow New Sources'\n6: 'Block Old Sources'}\n Input > ").strip())
src_addrs = input("Source addresses (IP1,IP2) > ").split(",")
if len(src_addrs) == 1 and src_addrs[0] == '':
gr1 = IGMPv3gr(rtype=3, maddr=mcast_addr, numsrc=0)
final_grp_arr.append(gr1)
else:
gr1 = IGMPv3gr(rtype=6,
maddr=mcast_addr,
numsrc=len(src_addrs),
srcaddrs=src_addrs)
final_grp_arr.append(gr1)
except ValueError:
logger.critical(
"Invalid input for num_records:'{}'. Expecting integer value".
format(num_records))
logger.critical(ValueError, exc_info=True)
return None
return final_grp_arr
#################################################################################################################
def build_igmp(msg_type, version):
if msg_type == "M_Q_G" and (version == "v1" or version == "v2" or version == "v3"):
# Gettting the input parameters
input_param, common_param = requires("IGMP")
del input_param[2:4]
inputs = []
dot1q_prio = []
for i in range(0, len(input_param)):
temp_input = input("{} > ".format(input_param[i]))
if "Tag" in input_param[i] and temp_input.lower() == "y":
inputs.insert(i, input("VLAN Tag (x,y) > "))
dot1q_prio.insert(0, input("CoS (x,y | default 0) > "))
elif "Tag" in input_param[i] and temp_input.lower() == "n":
inputs.insert(i, False)
elif "Tag" not in input_param[i]:
inputs.insert(i, temp_input)
else:
logger.critical(
"Invalid input, got '{}' expected values (y/n)".format(
temp_input))
return None
# Common parameters
for j in range(0, len(common_param)):
i = i + 1
inputs.insert(i, input("{} > ".format(common_param[j])))
# Building IGMPv1 Membership Query
if version == "v1":
if not (inputs[2]):
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(
type=0x11, gaddr="0.0.0.0", mrcode=0)
if not (p[IGMP].igmpize()):
logger.critical("Failed building IGMPv1 Membership Query")
return None
else:
vlans = inputs[2].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(
type=0x11, gaddr="0.0.0.0", mrcode=0)
if not (p[IGMP].igmpize()):
logger.critical("Failed building IGMPv1 Membership Query")
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv1 Membership Query Built")
p.show()
return p, inputs[3], inputs[4]
# Building IGMPv2 Membership Query, General
elif version == "v2":
if not (inputs[2]):
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(
type=0x11, gaddr="0.0.0.0")
if not (p[IGMP].igmpize()):
logger.critical("Failed building IGMPv2 Membership Query")
return None
else:
vlans = inputs[2].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(
type=0x11, gaddr="0.0.0.0")
if not (p[IGMP].igmpize()):
logger.critical("Failed building IGMPv2 Membership Query")
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv2 Membership Query Built")
p.show()
return p, inputs[3], inputs[4]
# Building IGMPv3 Membership Query, General
elif version == "v3":
if not (inputs[2]):
p = Ether(src=inputs[0]) / IP(
src=inputs[1]) / IGMPv3() / IGMPv3mq(gaddr="0.0.0.0")
if not (p[IGMPv3].igmpize()):
logger.critical("Failed building IGMPv3 Membership Query")
return None
else:
vlans = inputs[2].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(
src=inputs[1]) / IGMPv3() / IGMPv3mq(gaddr="0.0.0.0")
if not (p[IGMPv3].igmpize()):
logger.critical("Failed building IGMPv3 Membership Query")
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv3 Membership Query Built")
p.show()
return p, inputs[3], inputs[4]
else:
logger.critical(
"Invalid version: '{}' Expected value (v1/v2/v3)".format(
version))
return None
elif msg_type == "M_Q_GS" and (version == "v2" or version == "v3"):
# Gettting the input parameters
input_param, common_param = requires("IGMP")
del input_param[3:4]
inputs = []
dot1q_prio = []
for i in range(0, len(input_param)):
temp_input = input("{} > ".format(input_param[i]))
if "Tag" in input_param[i] and temp_input.lower() == "y":
inputs.insert(i, input("VLAN Tag (x,y) > "))
dot1q_prio.insert(0, input("CoS (x,y | default 0) > "))
elif "Tag" in input_param[i] and temp_input.lower() == "n":
inputs.insert(i, False)
elif "Tag" not in input_param[i]:
inputs.insert(i, temp_input)
else:
logger.critical(
"Invalid input, got '{}' expected values (y/n)".format(
temp_input))
return None
# Common parameters
for j in range(0, len(common_param)):
i = i + 1
inputs.insert(i, input("{} > ".format(common_param[j])))
# Building IGMP Membership query, Group specific
if version == "v2":
if not (inputs[3]):
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(
type=0x11, gaddr=inputs[2])
if not (p[IGMP].igmpize()):
logger.critical(
"Failed building IGMPv2 Membership Query, Group specific"
)
return None
else:
vlans = inputs[3].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(
type=0x11, gaddr=inputs[2])
if not (p[IGMP].igmpize()):
logger.critical(
"Failed building IGMPv2 Membership Query, Group specific"
)
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv2 Membership Query, Group specific")
p.show()
return p, inputs[4], inputs[5]
elif version == "v3":
if not (inputs[3]):
p = Ether(src=inputs[0]) / IP(
src=inputs[1]) / IGMPv3() / IGMPv3mq(gaddr=inputs[2])
if not (p[IGMPv3].igmpize()):
logger.critical(
"Failed building IGMPv3 Membership Query, Group specific"
)
return None
else:
vlans = inputs[3].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(
src=inputs[1]) / IGMPv3() / IGMPv3mq(gaddr=inputs[2])
if not (p[IGMPv3].igmpize()):
logger.critical(
"Failed building IGMPv3 Membership Query, Group specific"
)
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv3 Membership Query, Group specific")
p.show()
return p, inputs[4], inputs[5]
else:
logger.critical(
"Invalid version: '{}' Expected value (v1/v2/v3)".format(
version))
return None
elif msg_type == "M_Q_G_SS" and (version == "v3"):
# Gettting the input parameters
input_param, common_param = requires("IGMP")
inputs = []
dot1q_prio = []
for i in range(0, len(input_param)):
temp_input = input("{} > ".format(input_param[i]))
if "Tag" in input_param[i] and temp_input.lower() == "y":
inputs.insert(i, input("VLAN Tag (x,y) > "))
dot1q_prio.insert(0, input("CoS (x,y | default 0) > "))
elif "Tag" in input_param[i] and temp_input.lower() == "n":
inputs.insert(i, False)
elif "Tag" not in input_param[i]:
inputs.insert(i, temp_input)
else:
logger.critical(
"Invalid input, got '{}' expected values (y/n)".format(
temp_input))
return None
# Common parameters
for j in range(0, len(common_param)):
i = i + 1
inputs.insert(i, input("{} > ".format(common_param[j])))
# Building IGMP Membership query, Group and Source specific
if version == "v3":
src_addrs = inputs[3].split(",")
for index in range(len(src_addrs)):
src_addrs[index] = src_addrs[index].strip()
if not (inputs[4]):
p = Ether(src=inputs[0]) / IP(
src=inputs[1]) / IGMPv3() / IGMPv3mq(gaddr=inputs[2],
numsrc=len(src_addrs),
srcaddrs=src_addrs)
if not (p[IGMPv3].igmpize()):
logger.critical(
"Failed building IGMPv3 Membership Query, Group & Source specific"
)
return None
else:
vlans = inputs[4].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(
src=inputs[1]) / IGMPv3() / IGMPv3mq(gaddr=inputs[2],
numsrc=len(src_addrs),
srcaddrs=src_addrs)
if not (p[IGMPv3].igmpize()):
logger.critical(
"Failed building IGMPv3 Membership Query, Group & Source specific"
)
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv3 Membership Query, Group & Source specific")
p.show()
return p, inputs[5], inputs[6]
else:
logger.critical(
"Invalid version: '{}' Expected value (v1/v2/v3)".format(
version))
return None
elif msg_type == "M_R" and (version == "v1" or version == "v2"):
# Gettting the input parameters
input_param, common_param = requires("IGMP")
del input_param[3:4]
inputs = []
dot1q_prio = []
for i in range(0, len(input_param)):
temp_input = input("{} > ".format(input_param[i]))
if "Tag" in input_param[i] and temp_input.lower() == "y":
inputs.insert(i, input("VLAN Tag (x,y) > "))
dot1q_prio.insert(0, input("CoS (x,y | default 0) > "))
elif "Tag" in input_param[i] and temp_input.lower() == "n":
inputs.insert(i, False)
elif "Tag" not in input_param[i]:
inputs.insert(i, temp_input)
else:
logger.critical(
"Invalid input, got '{}' expected values (y/n)".format(
temp_input))
return None
# Common parameters
for j in range(0, len(common_param)):
i = i + 1
inputs.insert(i, input("{} > ".format(common_param[j])))
# Building IGMPv1 Membership Report
if version == "v1":
if not (inputs[3]):
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(
type=0x12, gaddr=inputs[2])
if not (p[IGMP].igmpize()):
logger.critical("Failed building IGMPv1 Membership Report")
return None
else:
vlans = inputs[3].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(
type=0x12, gaddr=inputs[2])
if not (p[IGMP].igmpize()):
logger.critical("Failed building IGMPv1 Membership Report")
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv1 Membership Report")
p.show()
return p, inputs[4], inputs[5]
# Building IGMPv2 Membership Report
elif version == "v2":
if not (inputs[3]):
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(
type=0x16, gaddr=inputs[2])
if not (p[IGMP].igmpize()):
logger.critical("Failed building IGMPv2 Membership Report")
return None
else:
vlans = inputs[3].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(
type=0x16, gaddr=inputs[2])
if not (p[IGMP].igmpize()):
logger.critical("Failed building IGMPv2 Membership Report")
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv2 Membership Report")
p.show()
return p, inputs[4], inputs[5]
else:
logger.critical(
"Invalid version: '{}' Expected value (v1/v2/v3)".format(
version))
return None
elif msg_type == "M_R" and version == "v3":
# Gettting the input parameters
input_param, common_param = requires("IGMP")
inputs = []
dot1q_prio = []
del input_param[2:4]
for i in range(0, len(input_param)):
temp_input = input("{} > ".format(input_param[i]))
if "Tag" in input_param[i] and temp_input.lower() == "y":
inputs.insert(i, input("VLAN Tag (x,y) > "))
dot1q_prio.insert(0, input("CoS (x,y | default 0) > "))
elif "Tag" in input_param[i] and temp_input.lower() == "n":
inputs.insert(i, False)
elif "Tag" not in input_param[i]:
inputs.insert(i, temp_input)
else:
logger.critical(
"Invalid input, got '{}' expected values (y/n)".format(
temp_input))
return None
# Build group records
group_rec = build_group_records("M_R")
if group_rec == None:
return None
# Common parameters
for j in range(0, len(common_param)):
i = i + 1
inputs.insert(i, input("{} > ".format(common_param[j])))
# Building the IGMPv3 Membership Record with group records
if not (inputs[2]):
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMPv3() / IGMPv3mr(
numgrp=len(group_rec), records=group_rec)
if not (p[IGMPv3].igmpize()):
logger.critical("Failed building IGMPv3 Membership Report")
return None
else:
vlans = inputs[2].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMPv3() / IGMPv3mr(
numgrp=len(group_rec), records=group_rec)
if not (p[IGMPv3].igmpize()):
logger.critical(
"Failed building IGMPv3 Membership Query, Group & Source specific"
)
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv3 Membership Report")
p.show()
return p, inputs[3], inputs[4]
elif msg_type == "L_G" and version == "v2":
# Gettting the input parameters
input_param, common_param = requires("IGMP")
inputs = []
dot1q_prio = []
del input_param[3:4]
for i in range(0, len(input_param)):
temp_input = input("{} > ".format(input_param[i]))
if "Tag" in input_param[i] and temp_input.lower() == "y":
inputs.insert(i, input("VLAN Tag (x,y) > "))
dot1q_prio.insert(0, input("CoS (x,y | default 0) > "))
elif "Tag" in input_param[i] and temp_input.lower() == "n":
inputs.insert(i, False)
elif "Tag" not in input_param[i]:
inputs.insert(i, temp_input)
else:
logger.critical(
"Invalid input, got '{}' expected values (y/n)".format(
temp_input))
return None
# Common parameters
for j in range(0, len(common_param)):
i = i + 1
inputs.insert(i, input("{} > ".format(common_param[j])))
#Building the IGMPv2 Leave Message
if not (inputs[3]):
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(type=0x17,
gaddr=inputs[2])
if not (p[IGMP].igmpize()):
logger.critical("Failed building IGMPv2 Leave Message")
return None
else:
vlans = inputs[3].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMP(type=0x17,
gaddr=inputs[2])
if not (p[IGMP].igmpize()):
logger.critical("Failed building IGMPv2 Leave Message")
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv2 Leave Message")
p.show()
return p, inputs[4], inputs[5]
elif msg_type == "L_G" and version == "v3":
# Gettting the input parameters
input_param, common_param = requires("IGMP")
inputs = []
dot1q_prio = []
del input_param[2:4]
for i in range(0, len(input_param)):
temp_input = input("{} > ".format(input_param[i]))
if "Tag" in input_param[i] and temp_input.lower() == "y":
inputs.insert(i, input("VLAN Tag (x,y) > "))
dot1q_prio.insert(0, input("CoS (x,y | default 0) > "))
elif "Tag" in input_param[i] and temp_input.lower() == "n":
inputs.insert(i, False)
elif "Tag" not in input_param[i]:
inputs.insert(i, temp_input)
else:
logger.critical(
"Invalid input, got '{}' expected values (y/n)".format(
temp_input))
return None
# Build group records
group_rec = build_group_records("L_G")
if group_rec == None:
return None
# Common parameters
for j in range(0, len(common_param)):
i = i + 1
inputs.insert(i, input("{} > ".format(common_param[j])))
# Building the IGMPv3 Leave message with group records
if not (inputs[2]):
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMPv3() / IGMPv3mr(
numgrp=len(group_rec), records=group_rec)
if not (p[IGMPv3].igmpize()):
logger.critical("Failed building IGMPv3 Leave Message")
return None
else:
vlans = inputs[2].split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan '{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
p = Ether(src=inputs[0]) / IP(src=inputs[1]) / IGMPv3() / IGMPv3mr(
numgrp=len(group_rec), records=group_rec)
if not (p[IGMPv3].igmpize()):
logger.critical("Failed building IGMPv3 Leave Message")
return None
cos = validate_cos(cos, vlans)
if cos != None:
p = add_vlan(p, vlans, cos)
else:
return None
logger.info("IGMPv3 Leave Message")
p.show()
return p, inputs[3], inputs[4]
else:
logger.critical(
"Invalid msg_type: '{}' or version: '{}' provided".format(
msg_type, version))
return None
#################################################################################################################
def igmp():
# Getting IGMP version and message types
igmp_ver = input("IGMP Version (v1/v2/v3) > ").strip().lower()
if igmp_ver == "v1":
try:
msg_type = int(
input(
"\nIGMP Message Type:\n\n1 -- {}\n2 -- {}\n\nEnter your choice (1-2) > "
.format("Membership Query", "Membership Report")).strip())
if msg_type == 1: #Membership Query
return build_igmp("M_Q_G", igmp_ver)
elif msg_type == 2: #Membership Report
return build_igmp("M_R", igmp_ver)
else:
logger.critical(
"Invalid msg_type: '{}' Expected integer (1-2)".format(
msg_type))
return None
except ValueError:
logger.critical("Invalid input, expected integer (1-2).")
return None
elif igmp_ver == "v2":
try:
msg_type = int(
input(
"\nIGMP Message Type:\n\n1 -- {}\n2 -- {}\n3 -- {}\n4 -- {}\n\nEnter your choice (1-4) > "
.format("Membership Query, General",
"Membership Query, Group-Specific",
"Membership Report", "Leave Group")).strip())
if msg_type == 1: #Membership Query, General
return build_igmp("M_Q_G", igmp_ver)
elif msg_type == 2: #Membership Query, Group-Specific
return build_igmp("M_Q_GS", igmp_ver)
elif msg_type == 3: #Membership Report
return build_igmp("M_R", igmp_ver)
elif msg_type == 4: #Leave Group
return build_igmp("L_G", igmp_ver)
else:
logger.critical(
"Invalid msg_type: '{}' Expected integer (1-4)".format(
msg_type))
return None
except ValueError:
logger.critical("Invalid input, expected integer (1-4).")
return None
elif igmp_ver == "v3":
try:
msg_type = int(
input(
"\nIGMP Message Type:\n\n1 -- {}\n2 -- {}\n3 -- {}\n4 -- {}\n5 -- {}\n\nEnter your choice (1-5) > "
.format("Membership Query, General",
"Membership Query, Group-Specific",
"Membership Query, Group-and-Source-Specific",
"Membership Report", "Leave Group")).strip())
if msg_type == 1: #Membership Query, General
return build_igmp("M_Q_G", igmp_ver)
elif msg_type == 2: #Membership Query, Group-Specific
return build_igmp("M_Q_GS", igmp_ver)
elif msg_type == 3: #Membership Query, Group-and-Source-Specific
return build_igmp("M_Q_G_SS", igmp_ver)
elif msg_type == 4: #Membership Report
return build_igmp("M_R", igmp_ver)
elif msg_type == 5: #Leave Group
return build_igmp("L_G", igmp_ver)
else:
logger.critical(
"Invalid msg_type: '{}' Expected integer (1-5)".format(
msg_type))
return None
except ValueError:
logger.critical("Invalid input, expected integer (1-5).")
return None
else:
logger.critical(
"Invalid igmp_ver: '{}' Expected string (v1/v2/v3)".format(
igmp_ver))
return None
#################################################################################################################
def convert_multicast_ip_to_mac(ip_address):
try:
ip_binary = socket.inet_pton(socket.AF_INET, ip_address)
ip_bit_string = ''.join(['{0:08b}'.format(x) for x in ip_binary])
except socket.error:
raise RuntimeError('Invalid IP Address to convert.')
lower_order_23 = ip_bit_string[-23:]
high_order_25 = '0000000100000000010111100'
mac_bit_string = high_order_25 + lower_order_23
final_string = '{0:012x}'.format(int(mac_bit_string, 2))
mac_string = ':'.join('%02x' % b for b in (codecs.decode(final_string, 'hex')))
return mac_string.lower()
#################################################################################################################
def build_mcast():
# Gettting the input parameters
input_param, common_param = requires("MCAST")
udp_pkt = None
fuzzy = (input("Random Multicast Packet? (y/n) > ").strip()).lower()
if fuzzy == "y":
inputs = []
# Common parameters
for i in range(0, len(common_param)):
inputs.insert(i, input("{} > ".format(common_param[i])))
udp_pkt = udp_packet(fuzzy, 'MCAST', inputs)
if udp_pkt != None:
logger.info("Multicast Packet built")
udp_pkt.show()
return udp_pkt, inputs[0], inputs[1]
else:
return None
elif fuzzy == "n":
inputs = []
dot1q_prio = []
for i in range(0, len(input_param)):
temp_input = input("{} > ".format(input_param[i]))
if "Tag" in input_param[i] and temp_input.lower() == "y":
inputs.insert(i, input("VLAN Tag (x,y) > "))
dot1q_prio.insert(0, input("CoS (x,y | default 0) > "))
elif "Tag" in input_param[i] and temp_input.lower() == "n":
inputs.insert(i, False)
elif "Tag" not in input_param[i]:
inputs.insert(i, temp_input)
else:
logger.critical(
"Invalid choice, got '{}' expected values (y/n)".format(
temp_input))
return None
# Common parameters
for j in range(0, len(common_param)):
i = i + 1
inputs.insert(i, input("{} > ".format(common_param[j])))
# Based on the provided VLAN tag return tagged/untagged UDP packet
if not (inputs[5]):
udp_pkt = udp_packet(fuzzy, 'MCAST', inputs)
else:
vlans = (inputs[5]).strip().split(",")
cos = (dot1q_prio[0]).strip().split(",")
try:
vlans = [int(i) for i in vlans]
except ValueError:
logger.critical(
"Invalid vlan id'{}' Expected integer".format(vlans))
logger.critical(ValueError, exc_info=True)
return None
udp_pkt = udp_packet(fuzzy, 'MCAST', inputs)
cos = validate_cos(cos, vlans)
if udp_pkt != None and cos != None:
udp_pkt = add_vlan(udp_pkt, vlans, cos)