libplugin

This commit is contained in:
Boshi Lian 2022-07-02 11:37:38 +00:00
parent b49669bdae
commit dbef31dd3d
18 changed files with 5250 additions and 4 deletions

44
plugin/fixed/main.go Normal file
View file

@ -0,0 +1,44 @@
package main
import (
"os"
log "github.com/sirupsen/logrus"
"github.com/tg123/sshpiper/libplugin"
)
func main() {
if len(os.Args) < 2 {
log.Fatal("no target address provided")
}
target := os.Args[1]
host, port, err := libplugin.SplitHostPortForSSH(target)
if err != nil {
panic(err)
}
config := libplugin.SshPiperPluginConfig{
PasswordCallback: func(conn libplugin.ConnMetadata, password []byte) (*libplugin.Upstream, error) {
log.Info("routing to ", target)
return &libplugin.Upstream{
Host: host,
Port: int32(port),
IgnoreHostKey: true,
Auth: libplugin.CreatePasswordAuth(password),
}, nil
},
}
p, err := libplugin.NewFromStdio(config)
if err != nil {
panic(err)
}
libplugin.ConfigStdioLogrus(p, nil)
log.Printf("starting fix routing to ssh %v (password only)", target)
panic(p.Serve())
}