mirror of
https://github.com/bettercap/bettercap.git
synced 2025-03-12 04:36:03 -07:00
47 lines
957 B
Go
47 lines
957 B
Go
package packets
|
|
|
|
import (
|
|
"github.com/google/gopacket/layers"
|
|
"net"
|
|
)
|
|
|
|
func NewUDPProbe(from net.IP, from_hw net.HardwareAddr, to net.IP, port int) (error, []byte) {
|
|
eth := layers.Ethernet{
|
|
SrcMAC: from_hw,
|
|
DstMAC: net.HardwareAddr{0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
|
|
EthernetType: layers.EthernetTypeIPv4,
|
|
}
|
|
|
|
udp := layers.UDP{
|
|
SrcPort: layers.UDPPort(12345),
|
|
DstPort: layers.UDPPort(port),
|
|
}
|
|
udp.Payload = []byte{0xde, 0xad, 0xbe, 0xef, 0xde, 0xad, 0xbe, 0xef}
|
|
|
|
if to.To4() == nil {
|
|
ip6 := layers.IPv6{
|
|
NextHeader: layers.IPProtocolUDP,
|
|
Version: 6,
|
|
SrcIP: from,
|
|
DstIP: to,
|
|
HopLimit: 64,
|
|
}
|
|
|
|
udp.SetNetworkLayerForChecksum(&ip6)
|
|
|
|
return Serialize(ð, &ip6, &udp)
|
|
} else {
|
|
ip4 := layers.IPv4{
|
|
Protocol: layers.IPProtocolUDP,
|
|
Version: 4,
|
|
TTL: 64,
|
|
SrcIP: from,
|
|
DstIP: to,
|
|
}
|
|
|
|
udp.SetNetworkLayerForChecksum(&ip4)
|
|
|
|
return Serialize(ð, &ip4, &udp)
|
|
}
|
|
}
|