icodeface / grdp

pure GoLang RDP client (not finished yet)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Golang Retome Desktop Protocol

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

About

pure GoLang RDP client (not finished yet)

License:GNU General Public License v3.0


Languages

Language:Go 100.0%