mirror of
https://github.com/sairson/Yasso.git
synced 2026-02-06 12:03:43 +08:00
10 lines
201 B
Go
10 lines
201 B
Go
package config
|
|
|
|
// Exploits exp结构体
|
|
type Exploits struct {
|
|
Hostname string // 地址
|
|
Port int // 端口
|
|
User string // 连接用的用户名
|
|
Pass string // 连接用的密码
|
|
}
|