icodeface/grdp: pure GoLang RDP client (not finished yet)
2020-08-16 22:17:02 Author: github.com(查看原文) 阅读量:848 收藏

grdp is a pure Golang implementation of the Microsoft RDP (Remote Desktop Protocol) protocol (client side authorization only).

Status

The project is under development and not finished yet.

  • SSL Authentication (soon)
  • NLA Authentication

Example

client := grdp.NewClient("192.168.0.2:3389", glog.DEBUG)
err := client.Login("Administrator", "123456")
if err != nil {
    fmt.Println("login failed,", err)
} else {
    fmt.Println("login success")
}

Take ideas from


文章来源: https://github.com/icodeface/grdp
如有侵权请联系:admin#unsafe.sh