暴力破解Windows RDP(3389)

RDP是远程桌面协议。 $ nmap your_target Starting Nmap 7.01 ( https://nmap.org ) at 2016-09-20 17:29 CST Nmap scan report for ns514636.ip-192-95-xx.net (192.95.xx.xx) Host is up (0.28s latency). Not shown: 988 closed ports PORT STATE

golang模板语法

模板语法 with关键字 type u struct { Name string Age int Sex string } user:=&u{Name:"asd",Age:20,Sex:"mal"} data["user"]=user c.HTML(http.StatusOK, "index.html", data) 输出 {{with .user}} {{.Name}}; {{.Age}}; {{.Sex}} {{end}} 循环打印数组 nums