grdp is a pure Golang implementation of the Microsoft RDP (Remote Desktop Protocol) protocol (client side authorization only).
The project is under development and not finished yet.
- SSL Authentication (soon)
- NLA Authentication
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")
}