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
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 我想在一个软件里添加一个优惠弹窗,应该怎么写代码
  • ¥15 fluent的在模拟压强时使用希望得到一些建议
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 Web.config连不上数据库
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流