Skip to content

LeakIX/nns

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

.NET NegotiateStream Protocol for Golang

This library implements a simple net.Conn abstraction for NNS authenticated streams.

It currently supports NTLMSSP as an authentication mechanism.

ntlmsspClient, err := ntlmssp.NewClient(ntlmssp.SetCompatibilityLevel(1), ntlmssp.SetUserInfo("user01", "password"))
if err != nil {
    return nil, err
}
nnsConn, err := nns.DialNTLMSSP("127.0.0.1:9380", ntlmsspClient, 5*time.Second)
if err != nil {
    return nil, err
}

About

.NET NegotiateStream Protocol for Golang

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages