drxt70655 2017-12-04 12:34
浏览 407
已采纳

如何在Golang中发送伪造的udp软件包

Im trying to send a fake udp (a random mac address, let's say 01:ff:ff:ff:ff:ff) package to be handled by the ServeDHCP on the server side, Im running the following dhcpv4 github repository github.com/krolaw/dhcp4.

The goal of send a discover package, is to check if the dhcp is alive.

In fact I created a new func called check

func (h *DHCPHandler) check () {
    con, err = net.Dial("udp", "127.0.0.1:67")
    for {
            //fake udp package???
            time.Sleep(10 * time.Minute)
    }

}

in the main of the function, I have the following call go handler.check()

And in the ServeDHCP I should pass these parameters:
func (h *DHCPHandler) ServeDHCP(p dhcp.Packet, msgType dhcp.MessageType, options dhcp.Options)

How could I send a fake upd package from the func check?

  • 写回答

1条回答 默认 最新

  • doutun1362 2017-12-05 13:45
    关注

    At the end I managed to make works this check to send in periods of 10 minuts an upd package with an mac address I know is gonna never be reached as following.

    func (h *DHCPHandler) check() {
        //Fetch parameters from config file
        config := getConfig() // here is a mac saved on a json file 01:ff:ff:ff:ff:ff
        macFake, err := net.ParseMAC(config.MacFake)
    
        if err != nil {
                fmt.Println("error with the fake mac provided on the json file", err)
        }
    
        // create connection
        conn, err := net.Dial("udp4", "127.0.0.1:67")
        if err != nil {
                fmt.Println("error with the connection", err)
        }
    
        //stay alive
        for {
                fmt.Fprintf(conn, "GET / HTTP/1.0
    
    ")
                conn.Write(dhcp.RequestPacket(dhcp.Discover, macFake, h.ip, []byte{0, 1, 2, 3}, true, nil))
                time.Sleep(10 * time.Minute)
        }
    

    }

    On the main function, I just need to call this check goroutine and add on the server side (ServeDHCP) this code:

        mac := p.CHAddr().String()
        //Fetch parameters from config file
        config := getConfig()
        if mac == config.MacFake { //udp package received and a mac saved on a json file 01:ff:ff:ff:ff:ff
                // send notification to restart if failure on a systemd
                daemon.SdNotify(false, "WATCHDOG=1")
                return
        }
    

    The last part needed is to add a systemd check, in my case I send the watchdog every 10 min, so, the systemd check will be setted it to 11min

    [Service]
    ExecStartPre=//something 
    WatchdogSec=11min 
    Restart=on-failure
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料