I try change ICMP packet length on 1 byte from Scapy. But I still see 100 bytes sent in the traffic. Yes, I want send 100 bytes and see packet length 1 byte in traffic dump. What options need use? or it is impossible?
>>> data = 'A'*100
>>> packet = IP(dst='1.1.1.1')/ICMP(length=1)/Raw(load=data)
>>> send(packet)