基本适应win7,win10,win server 08,win server 12,win server 16的截图

This commit is contained in:
2025-01-03 23:00:47 +08:00
parent 909b89dfce
commit 84362607c2
77 changed files with 69638 additions and 1 deletions

18
rdp.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"ShotRDP/grdp/glog"
)
/*
修改部分grdp/protocol/x224/x224.go#New()
去除requestedProtocol中的PROTOCOL_HYBRID避免使用NLA
*/
func DoRDP(host string) {
client := NewClient(host, glog.INFO)
err := client.Login("", "", "")
if err != nil {
panic(err)
}
}