Documentation
¶
Index ¶
- type DNSServer
- type DeregisterRequest
- type FTPServer
- func (h *FTPServer) AfterCurDirChanged(ctx *ftpserver.Context, oldCurDir, newCurDir string, err error)
- func (h *FTPServer) AfterDirCreated(ctx *ftpserver.Context, dstPath string, err error)
- func (h *FTPServer) AfterDirDeleted(ctx *ftpserver.Context, dstPath string, err error)
- func (h *FTPServer) AfterFileDeleted(ctx *ftpserver.Context, dstPath string, err error)
- func (h *FTPServer) AfterFileDownloaded(ctx *ftpserver.Context, dstPath string, size int64, err error)
- func (h *FTPServer) AfterFilePut(ctx *ftpserver.Context, dstPath string, size int64, err error)
- func (h *FTPServer) AfterUserLogin(ctx *ftpserver.Context, userName, password string, passMatched bool, err error)
- func (h *FTPServer) BeforeChangeCurDir(ctx *ftpserver.Context, oldCurDir, newCurDir string)
- func (h *FTPServer) BeforeCreateDir(ctx *ftpserver.Context, dstPath string)
- func (h *FTPServer) BeforeDeleteDir(ctx *ftpserver.Context, dstPath string)
- func (h *FTPServer) BeforeDeleteFile(ctx *ftpserver.Context, dstPath string)
- func (h *FTPServer) BeforeDownloadFile(ctx *ftpserver.Context, dstPath string)
- func (h *FTPServer) BeforeLoginUser(ctx *ftpserver.Context, userName string)
- func (h *FTPServer) BeforePutFile(ctx *ftpserver.Context, dstPath string)
- func (h *FTPServer) Close()
- func (h *FTPServer) ListenAndServe(tlsConfig *tls.Config, ftpAlive chan bool)
- func (h *FTPServer) Print(sessionID string, message interface{})
- func (h *FTPServer) PrintCommand(sessionID string, command string, params string)
- func (h *FTPServer) PrintResponse(sessionID string, code int, message string)
- func (h *FTPServer) Printf(sessionID string, format string, v ...interface{})
- type HTTPServer
- type Interaction
- type LDAPServer
- func (ldapServer *LDAPServer) Close() error
- func (ldapServer *LDAPServer) Fatal(v ...interface{})
- func (ldapServer *LDAPServer) Fatalf(format string, v ...interface{})
- func (ldapServer *LDAPServer) Fatalln(v ...interface{})
- func (ldapServer *LDAPServer) ListenAndServe(tlsConfig *tls.Config, ldapAlive chan bool)
- func (ldapServer *LDAPServer) Panic(v ...interface{})
- func (ldapServer *LDAPServer) Panicf(format string, v ...interface{})
- func (ldapServer *LDAPServer) Panicln(v ...interface{})
- func (ldapServer *LDAPServer) Print(v ...interface{})
- func (ldapServer *LDAPServer) Printf(format string, v ...interface{})
- func (ldapServer *LDAPServer) Println(v ...interface{})
- type NopAuth
- type NopDriver
- func (n *NopDriver) DeleteDir(c *ftpserver.Context, s string) error
- func (n *NopDriver) DeleteFile(c *ftpserver.Context, s string) error
- func (n *NopDriver) GetFile(c *ftpserver.Context, s1 string, k int64) (int64, io.ReadCloser, error)
- func (n *NopDriver) ListDir(c *ftpserver.Context, s string, f func(os.FileInfo) error) error
- func (n *NopDriver) MakeDir(c *ftpserver.Context, s string) error
- func (n *NopDriver) PutFile(c *ftpserver.Context, s string, r io.Reader, k int64) (int64, error)
- func (n *NopDriver) Rename(c *ftpserver.Context, s1 string, s2 string) error
- func (n *NopDriver) Stat(c *ftpserver.Context, s string) (os.FileInfo, error)
- type Options
- type PollResponse
- type RegisterRequest
- type ResponderServer
- type SMBServer
- type SMTPServer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DNSServer ¶
type DNSServer struct {
TxtRecord string // used for ACME verification
// contains filtered or unexported fields
}
DNSServer is a DNS server instance that listens on port 53.
func NewDNSServer ¶
NewDNSServer returns a new DNS server.
func (*DNSServer) ListenAndServe ¶
ListenAndServe listens on dns ports for the server.
type DeregisterRequest ¶
type DeregisterRequest struct {
// CorrelationID is an ID for correlation with requests.
CorrelationID string `json:"correlation-id"`
// SecretKey is the secretKey for the interactsh client.
SecretKey string `json:"secret-key"`
}
DeregisterRequest is a request for client deregistration to interactsh server.
type FTPServer ¶
type FTPServer struct {
// contains filtered or unexported fields
}
FTPServer is a ftp server instance
func NewFTPServer ¶
NewFTPServer returns a new TLS & Non-TLS FTP server.
func (*FTPServer) AfterCurDirChanged ¶
func (*FTPServer) AfterDirCreated ¶
func (*FTPServer) AfterDirDeleted ¶
func (*FTPServer) AfterFileDeleted ¶
func (*FTPServer) AfterFileDownloaded ¶
func (*FTPServer) AfterFilePut ¶
func (*FTPServer) AfterUserLogin ¶
func (*FTPServer) BeforeChangeCurDir ¶
func (*FTPServer) BeforeCreateDir ¶
func (*FTPServer) BeforeDeleteDir ¶
func (*FTPServer) BeforeDeleteFile ¶
func (*FTPServer) BeforeDownloadFile ¶
func (*FTPServer) BeforeLoginUser ¶
func (*FTPServer) BeforePutFile ¶
func (*FTPServer) ListenAndServe ¶
ListenAndServe listens on smtp and/or smtps ports for the server.
func (*FTPServer) PrintCommand ¶
func (*FTPServer) PrintResponse ¶
type HTTPServer ¶
type HTTPServer struct {
// contains filtered or unexported fields
}
HTTPServer is a http server instance that listens both TLS and Non-TLS based servers.
func NewHTTPServer ¶
func NewHTTPServer(options *Options) (*HTTPServer, error)
NewHTTPServer returns a new TLS & Non-TLS HTTP server.
func (*HTTPServer) ListenAndServe ¶
func (h *HTTPServer) ListenAndServe(tlsConfig *tls.Config, httpAlive, httpsAlive chan bool)
ListenAndServe listens on http and/or https ports for the server.
type Interaction ¶
type Interaction struct {
// Protocol for interaction, can contains HTTP/DNS/SMTP,etc.
Protocol string `json:"protocol"`
// UniqueID is the uniqueID for the subdomain receiving the interaction.
UniqueID string `json:"unique-id"`
// FullId is the full path for the subdomain receiving the interaction.
FullId string `json:"full-id"`
// QType is the question type for the interaction
QType string `json:"q-type,omitempty"`
// RawRequest is the raw request received by the interactsh server.
RawRequest string `json:"raw-request,omitempty"`
// RawResponse is the raw response sent by the interactsh server.
RawResponse string `json:"raw-response,omitempty"`
// SMTPFrom is the mail form field
SMTPFrom string `json:"smtp-from,omitempty"`
// RemoteAddress is the remote address for interaction
RemoteAddress string `json:"remote-address"`
// Timestamp is the timestamp for the interaction
Timestamp time.Time `json:"timestamp"`
}
Interaction is an interaction received to the server.
type LDAPServer ¶
type LDAPServer struct {
WithLogger bool
// contains filtered or unexported fields
}
LDAPServer is a ldap server instance
func NewLDAPServer ¶
func NewLDAPServer(options *Options, withLogger bool) (*LDAPServer, error)
NewLDAPServer returns a new LDAP server.
func (*LDAPServer) Close ¶
func (ldapServer *LDAPServer) Close() error
func (*LDAPServer) Fatal ¶
func (ldapServer *LDAPServer) Fatal(v ...interface{})
func (*LDAPServer) Fatalf ¶
func (ldapServer *LDAPServer) Fatalf(format string, v ...interface{})
func (*LDAPServer) Fatalln ¶
func (ldapServer *LDAPServer) Fatalln(v ...interface{})
func (*LDAPServer) ListenAndServe ¶
func (ldapServer *LDAPServer) ListenAndServe(tlsConfig *tls.Config, ldapAlive chan bool)
ListenAndServe listens on ldap ports for the server.
func (*LDAPServer) Panic ¶
func (ldapServer *LDAPServer) Panic(v ...interface{})
func (*LDAPServer) Panicf ¶
func (ldapServer *LDAPServer) Panicf(format string, v ...interface{})
func (*LDAPServer) Panicln ¶
func (ldapServer *LDAPServer) Panicln(v ...interface{})
func (*LDAPServer) Print ¶
func (ldapServer *LDAPServer) Print(v ...interface{})
func (*LDAPServer) Printf ¶
func (ldapServer *LDAPServer) Printf(format string, v ...interface{})
func (*LDAPServer) Println ¶
func (ldapServer *LDAPServer) Println(v ...interface{})
type NopDriver ¶
type NopDriver struct {
// contains filtered or unexported fields
}
func NewNopDriver ¶
type Options ¶
type Options struct {
// Domain is the domain for the instance.
Domain string
// IPAddress is the IP address of the current server.
IPAddress string
// ListenIP is the IP address to listen servers on
ListenIP string
// DomainPort is the port to listen DNS servers on
DnsPort int
// HttpPort is the port to listen HTTP server on
HttpPort int
// HttpsPort is the port to listen HTTPS server on
HttpsPort int
// SmbPort is the port to listen Smb server on
SmbPort int
// SmtpPort is the port to listen Smtp server on
SmtpPort int
// SmtpsPort is the port to listen Smtps server on
SmtpsPort int
// SmtpAutoTLSPort is the port to listen Smtp autoTLS server on
SmtpAutoTLSPort int
// FtpPort is the port to listen Ftp server on
FtpPort int
// FtpPort is the port to listen Ftp server on
LdapPort int
// Hostmaster is the hostmaster email for the server.
Hostmaster string
// Storage is a storage for interaction data storage
Storage *storage.Storage
// Auth requires client to authenticate
Auth bool
// Token required to retrieve interactions
Token string
// Enable root tld interactions
RootTLD bool
// OriginURL for the HTTP Server
OriginURL string
// FTPDirectory or temporary one
FTPDirectory string
// ScanEverywhere for potential correlation id
ScanEverywhere bool
// CorrelationIdLength of preamble
CorrelationIdLength int
// CorrelationIdNonceLength of the unique identifier
CorrelationIdNonceLength int
// Certificate Path
CertificatePath string
// Private Key Path
PrivateKeyPath string
ACMEStore *acme.Provider
}
Options contains configuration options for the servers
func (*Options) GetIdLength ¶
func (*Options) URLReflection ¶
URLReflection returns a reversed part of the URL payload which is checked in the response.
type PollResponse ¶
type PollResponse struct {
Data []string `json:"data"`
Extra []string `json:"extra"`
AESKey string `json:"aes_key"`
TLDData []string `json:"tlddata,omitempty"`
}
PollResponse is the response for a polling request
type RegisterRequest ¶
type RegisterRequest struct {
// PublicKey is the public RSA Key of the client.
PublicKey string `json:"public-key"`
// SecretKey is the secret-key for correlation ID registered for the client.
SecretKey string `json:"secret-key"`
// CorrelationID is an ID for correlation with requests.
CorrelationID string `json:"correlation-id"`
}
RegisterRequest is a request for client registration to interactsh server.
type ResponderServer ¶
type ResponderServer struct {
LogFile string
// contains filtered or unexported fields
}
ResponderServer is a Responder wrapper server instance
func NewResponderServer ¶
func NewResponderServer(options *Options) (*ResponderServer, error)
NewResponderServer returns a new SMB server.
func (*ResponderServer) Close ¶
func (h *ResponderServer) Close()
func (*ResponderServer) ListenAndServe ¶
func (h *ResponderServer) ListenAndServe(responderAlive chan bool) error
ListenAndServe listens on various responder ports
type SMBServer ¶
type SMBServer struct {
LogFile string
// contains filtered or unexported fields
}
SMBServer is a smb wrapper server instance
func NewSMBServer ¶
NewSMBServer returns a new SMB server.
func (*SMBServer) ListenAndServe ¶
ListenAndServe listens on smb port
type SMTPServer ¶
type SMTPServer struct {
// contains filtered or unexported fields
}
SMTPServer is a smtp server instance that listens both TLS and Non-TLS based servers.
func NewSMTPServer ¶
func NewSMTPServer(options *Options) (*SMTPServer, error)
NewSMTPServer returns a new TLS & Non-TLS SMTP server.
func (*SMTPServer) ListenAndServe ¶
func (h *SMTPServer) ListenAndServe(tlsConfig *tls.Config, smtpAlive, smtpsAlive chan bool)
ListenAndServe listens on smtp and/or smtps ports for the server.
Source Files
¶
Directories
¶
| Path | Synopsis |
|---|---|
|
Taken from https://github.com/chinzhiweiblank/coredns-acme/blob/e0cdfbdd78adfcc6c2d098255902f64ec60daecb/provider.go Copyright @chinzhiweiblank under Apache License 2.0
|
Taken from https://github.com/chinzhiweiblank/coredns-acme/blob/e0cdfbdd78adfcc6c2d098255902f64ec60daecb/provider.go Copyright @chinzhiweiblank under Apache License 2.0 |