repo stringlengths 6 47 | file_url stringlengths 77 269 | file_path stringlengths 5 186 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-07 08:35:43 2026-01-07 08:55:24 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/swn/swn.go | msrpc/swn/swn.go | // The swn package implements the SWN client protocol.
//
// # Introduction
//
// The Service Witness Protocol is a remote procedure call (RPC)-based protocol that
// is used to promptly notify a client of resource changes that have occurred on a highly
// available server.
//
// # Overview
//
// In highly available sy... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/swn/witness/v1/server.go | msrpc/swn/witness/v1/server.go | package witness
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.E... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/swn/witness/v1/v1.go | msrpc/swn/witness/v1/v1.go | package witness
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
swn "github.com/oiweiwei/go-msrpc/msrpc/swn"... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/samr/samr.go | msrpc/samr/samr.go | // The samr package implements the SAMR client protocol.
//
// # Introduction
//
// The Security Account Manager (SAM) Remote Protocol (Client-to-Server) provides management
// functionality for an account store or directory containing users and groups. The
// goal of this protocol is to enable IT administrators and en... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/samr/samr/v1/old_large_integer.go | msrpc/samr/samr/v1/old_large_integer.go | package samr
import "encoding/json"
func (o *OldLargeInteger) Uint64() uint64 {
return uint64(o.LowPart) + uint64(o.HighPart)<<32
}
func (o *OldLargeInteger) MarshalJSON() ([]byte, error) {
return json.Marshal(o.Uint64())
}
| go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/samr/samr/v1/server.go | msrpc/samr/samr/v1/server.go | package samr
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.Enco... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/samr/samr/v1/user_properties.go | msrpc/samr/samr/v1/user_properties.go | package samr
import (
"context"
)
func (o *UserProperties) AfterUnmarshalNDR(ctx context.Context) error {
if o == nil {
return nil
}
if o.UserPropertiesList != nil {
o.UserProperties = o.UserPropertiesList.UserProperties
o.PropertyCount = o.UserPropertiesList.PropertyCount
}
for i1 := range o.UserPrope... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/samr/samr/v1/v1.go | msrpc/samr/samr/v1/v1.go | package samr
import (
"context"
"encoding/hex"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-ms... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/erref/gen.go | msrpc/erref/gen.go | //go:build ignore
package main
import (
"bytes"
"flag"
"fmt"
"go/format"
"io"
"net/http"
"os"
"regexp"
"strings"
"github.com/PuerkitoBio/goquery"
)
var (
out string
pkg string
url StringSlice
)
type StringSlice []string
func (s *StringSlice) String() string {
return strings.Join(*s, ",")
}
func (s ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/erref/wmi/wmi.go | msrpc/erref/wmi/wmi.go | package wmi
import (
"context"
"fmt"
"github.com/oiweiwei/go-msrpc/dcerpc/errors"
"github.com/oiweiwei/go-msrpc/msrpc/dcom/wmi"
)
func init() {
errors.AddMapper(Mapper{})
}
type Mapper struct{}
func (Mapper) MapValue(ctx context.Context, value any) error {
switch code := value.(type) {
case int32:
return ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/erref/hresult/hresult.go | msrpc/erref/hresult/hresult.go | //go:generate go run ../gen.go -o hresult_errors.go -pkg hresult -url https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/705fb797-2175-4a90-b5a3-3918024b10b8 -url https://learn.microsoft.com/en-us/previous-versions/windows/internet-explorer/ie-developer/platform-apis/ms775145(v=vs.85) -url https://l... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/erref/hresult/hresult_errors.go | msrpc/erref/hresult/hresult_errors.go | package hresult
var (
StgSConverted = &Error{0x00030200, "STG_S_CONVERTED", "The underlying file was converted to compound file format."}
StgSBlock = &Error{0x00030201, "STG_S_BLOCK", "The storage operation should block... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/erref/ntstatus/ntstatus_errors.go | msrpc/erref/ntstatus/ntstatus_errors.go | package ntstatus
var (
StatusSuccess = &Error{0x00000000, "STATUS_SUCCESS", "The operation completed successfully."}
StatusWait0 = &Error{0x00000000, "STATUS_WAIT_0", "The caller specified WaitAny for WaitType and one of th... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/erref/ntstatus/ntstatus.go | msrpc/erref/ntstatus/ntstatus.go | //go:generate go run ../gen.go -o ntstatus_errors.go -pkg ntstatus -url https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/596a1078-e883-4972-9bbc-49e60bebca55
package ntstatus
import (
"context"
"fmt"
"github.com/oiweiwei/go-msrpc/dcerpc/errors"
)
type Error struct {
Code uint32
Name ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/erref/drsr/drsr.go | msrpc/erref/drsr/drsr.go | package drsr
import (
"context"
"fmt"
"github.com/oiweiwei/go-msrpc/dcerpc/errors"
"github.com/oiweiwei/go-msrpc/msrpc/drsr/drsuapi/v4"
)
func init() {
errors.AddMapper(Mapper{})
}
type Mapper struct{}
func (Mapper) MapValue(ctx context.Context, value any) error {
switch code := value.(type) {
case int32:
... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/erref/win32/win32.go | msrpc/erref/win32/win32.go | //go:generate go run ../gen.go -o win32_errors.go -pkg win32 -url https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-erref/18d8fbe8-a967-4f1c-ae50-99ca8e491d2d
package win32
import (
"context"
"fmt"
"github.com/oiweiwei/go-msrpc/dcerpc/errors"
)
func init() {
errors.AddMapper(Mapper{})
}
type Mapp... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/erref/win32/win32_errors.go | msrpc/erref/win32/win32_errors.go | package win32
var (
ErrorSuccess = &Error{0x00000000, "ERROR_SUCCESS", "The operation completed successfully."}
NerrSuccess = &Error{0x00000000, "NERR_Success", "The operation completed successfully."}
ErrorInvalidFunction ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/par/par.go | msrpc/par/par.go | // The par package implements the PAR client protocol.
//
// # Introduction
//
// The Print System Asynchronous Remote Protocol supports printing and spooling operations
// between a client and server, including print job control and print system management.
// It is designed to be used asynchronously by clients whose ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/par/iremotewinspool/v1/server.go | msrpc/par/iremotewinspool/v1/server.go | package iremotewinspool
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ =... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/par/iremotewinspool/v1/v1.go | msrpc/par/iremotewinspool/v1/v1.go | package iremotewinspool
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-msrpc/m... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/mqmq/mqmq.go | msrpc/mqmq/mqmq.go | // The mqmq package implements the MQMQ client protocol.
//
// # Introduction
//
// Message Queuing (MSMQ): Data Structures contains common definitions and data structures
// that are used in various protocols in the set of Microsoft Message Queuing protocols.
// The documentation for individual protocols contains refe... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/srvs/srvs.go | msrpc/srvs/srvs.go | // The srvs package implements the SRVS client protocol.
//
// # Introduction
//
// This document specifies the Server Service Remote Protocol. The Server Service Remote
// Protocol is a remote procedure call (RPC)–based protocol that is used for remotely
// enabling file and printer sharing and named pipe access to th... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/srvs/srvsvc/v3/v3.go | msrpc/srvs/srvsvc/v3/v3.go | package srvsvc
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/srvs/srvsvc/v3/server.go | msrpc/srvs/srvsvc/v3/server.go | package srvsvc
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.En... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fasp/fasp.go | msrpc/fasp/fasp.go | // The fasp package implements the FASP client protocol.
//
// # Introduction
//
// The Firewall and Advanced Security Protocol describes managing security policies
// on remote computers. The specific policies that this protocol manages are those of
// the firewall and advanced security components. The protocol allows... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fasp/remotefw/v1/server.go | msrpc/fasp/remotefw/v1/server.go | package remotefw
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fasp/remotefw/v1/v1.go | msrpc/fasp/remotefw/v1/v1.go | package remotefw
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dt... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/oxabref/oxabref.go | msrpc/oxabref/oxabref.go | // The oxabref package implements the OXABREF client protocol.
//
// # Introduction
//
// The Address Book Name Service Provider Interface (NSPI) Referral Protocol defines
// a remote procedure call (RPC) service that supplies a caller with the name of an
// NSPI server. Additionally, this protocol can return the Domai... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/oxabref/rfri/v1/server.go | msrpc/oxabref/rfri/v1/server.go | package rfri
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.Enco... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/oxabref/rfri/v1/v1.go | msrpc/oxabref/rfri/v1/v1.go | package rfri
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.Enco... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/bkrp/bkrp.go | msrpc/bkrp/bkrp.go | // The bkrp package implements the BKRP client protocol.
//
// # Introduction
//
// The BackupKey Remote Protocol is used by clients to encrypt and decrypt sensitive
// data (such as cryptographic keys) with the help of a server. Data encrypted using
// this protocol can be decrypted only by the server, and the client ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/bkrp/backupkey/v1/server.go | msrpc/bkrp/backupkey/v1/server.go | package backupkey
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/bkrp/backupkey/v1/v1.go | msrpc/bkrp/backupkey/v1/v1.go | package backupkey
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/raa/raa.go | msrpc/raa/raa.go | // The raa package implements the RAA client protocol.
//
// # Introduction
//
// This document specifies the Remote Authorization API Protocol. The Remote Authorization
// API Protocol is a Remote Procedure Call (RPC)-based protocol used to perform various
// authorization queries on remote computers.
//
// # Overview... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/raa/authzr/v0/server.go | msrpc/raa/authzr/v0/server.go | package authzr
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.En... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/raa/authzr/v0/v0.go | msrpc/raa/authzr/v0/v0.go | package authzr
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/mqqp/mqqp.go | msrpc/mqqp/mqqp.go | // The mqqp package implements the MQQP client protocol.
//
// # Introduction
//
// This document specifies the Message Queuing (MSMQ): Queue Manager to Queue Manager
// Protocol. The Queue Manager to Queue Manager Protocol is an RPC-based protocol used
// by the queue manager and runtime library to read and purge mess... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/mqqp/qm2qm/v1/server.go | msrpc/mqqp/qm2qm/v1/server.go | package qm2qm
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.Enc... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/mqqp/qm2qm/v1/v1.go | msrpc/mqqp/qm2qm/v1/v1.go | package qm2qm
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp"... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/lrec/lrec.go | msrpc/lrec/lrec.go | // The lrec package implements the LREC client protocol.
//
// # Introduction
//
// The Live Remote Event Capture (LREC) Protocol allows a management station to monitor
// events on a target system across a network. The protocol consists of two components:
//
// * A WS-Management-based control channel for starting and ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/lrec/neteventforwarder/v1/server.go | msrpc/lrec/neteventforwarder/v1/server.go | package neteventforwarder
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/lrec/neteventforwarder/v1/v1.go | msrpc/lrec/neteventforwarder/v1/v1.go | package neteventforwarder
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-msrpc... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/negoex/negoex.go | msrpc/negoex/negoex.go | // The negoex package implements the NEGOEX client protocol.
//
// # Introduction
//
// The SPNEGO Extended Negotiation (NEGOEX) Security Mechanism enhances the capabilities
// of SPNEGO by providing a security mechanism that can be negotiated by the SPNEGO
// protocol. When the NEGOEX security mechanism is selected by... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/adts/adts.go | msrpc/adts/adts.go | // The adts package implements the ADTS client protocol.
//
// # Introduction
//
// This is the primary specification for Active Directory, both Active Directory Domain
// Services (AD DS) and Active Directory Lightweight Directory Services (AD LDS). When
// the specification does not refer specifically to AD DS or AD ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/adts/claims/claims.go | msrpc/adts/claims/claims.go | // The claims package implements the CLAIMS client protocol.
//
// # Introduction
//
// This is the primary specification for Active Directory, both Active Directory Domain
// Services (AD DS) and Active Directory Lightweight Directory Services (AD LDS). When
// the specification does not refer specifically to AD DS or... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/adts/claims/claims/v1/claims_set_metadata.go | msrpc/adts/claims/claims/v1/claims_set_metadata.go | package claims
import (
"fmt"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
// Claims function returns the parsed claims set from the ClaimsSetMetadata.
func (o *ClaimsSetMetadata) Claims(opts ...any) (*ClaimsSet, error) {
var (
cls ClaimsSet
raw []byte
err error
)
if o.CompressionFormat != ClaimsCompression... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/adts/claims/claims/v1/server.go | msrpc/adts/claims/claims/v1/server.go | package claims
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.En... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/adts/claims/claims/v1/v1.go | msrpc/adts/claims/claims/v1/v1.go | package claims
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.En... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/nspi/nspi.go | msrpc/nspi/nspi.go | // The nspi package implements the NSPI client protocol.
//
// # Introduction
//
// The Name Service Provider Interface (NSPI) Protocol provides messaging clients a
// way to access and manipulate addressing data stored by a server. This protocol consists
// of an abstract data model and a single remote procedure call ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/nspi/nspi/v56/v56.go | msrpc/nspi/nspi/v56/v56.go | package nspi
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp"
... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/nspi/nspi/v56/server.go | msrpc/nspi/nspi/v56/server.go | package nspi
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.Enco... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/rprn/rprn.go | msrpc/rprn/rprn.go | // The rprn package implements the RPRN client protocol.
//
// # Introduction
//
// The Print System Remote Protocol is a synchronous Remote Procedure Call (RPC)-based
// protocol used by a print client to send print jobs to a print server, to direct their
// processing, to add or remove print queues, and to perform ot... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/rprn/winspool/v1/server.go | msrpc/rprn/winspool/v1/server.go | package winspool
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/rprn/winspool/v1/v1.go | msrpc/rprn/winspool/v1/v1.go | package winspool
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dt... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/lsad/lsad.go | msrpc/lsad/lsad.go | // The lsad package implements the LSAD client protocol.
//
// # Introduction
//
// The Local Security Authority (Domain Policy) Remote Protocol is used to manage various
// machine and domain security policies. All versions of Windows NT operating system–based
// products, in all configurations, implement and listen o... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/lsad/lsarpc/v0/server.go | msrpc/lsad/lsarpc/v0/server.go | package lsarpc
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.En... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/lsad/lsarpc/v0/v0.go | msrpc/lsad/lsarpc/v0/v0.go | package lsarpc
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fax/fax.go | msrpc/fax/fax.go | // The fax package implements the FAX client protocol.
//
// # Introduction
//
// The Fax Server and Client Remote Protocol Specification defines a protocol that is
// referred to as the Fax Server and Client Remote Protocol. This is a client/server
// protocol based on remote procedure call (RPC) that is used to send ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fax/faxclient/v3/v3.go | msrpc/fax/faxclient/v3/v3.go | package faxclient
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
fax "github.com/oiweiwei/go-msrpc/msrpc/fax"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ =... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fax/faxclient/v3/server.go | msrpc/fax/faxclient/v3/server.go | package faxclient
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fax/faxobs/v4/v4.go | msrpc/fax/faxobs/v4/v4.go | package faxobs
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
fax "github.com/oiweiwei/go-msrpc/msrpc/fax"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = co... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fax/faxobs/v4/server.go | msrpc/fax/faxobs/v4/server.go | package faxobs
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.En... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fax/fax/v4/v4.go | msrpc/fax/fax/v4/v4.go | package fax
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
fax "github.com/oiweiwei/go-msrpc/msrpc/fax"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = conte... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fax/fax/v4/server.go | msrpc/fax/fax/v4/server.go | package fax
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.Encod... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/efsr/efsr.go | msrpc/efsr/efsr.go | // The efsr package implements the EFSR client protocol.
//
// # Introduction
//
// The Encrypting File System Remote (EFSRPC) Protocol is used for performing maintenance
// and management operations on encrypted data that is stored remotely and accessed
// over a network. It is used in Windows to manage files that res... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/efsr/efsrpc/v1/server.go | msrpc/efsr/efsrpc/v1/server.go | package efsrpc
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.En... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/efsr/efsrpc/v1/v1.go | msrpc/efsr/efsrpc/v1/v1.go | package efsrpc
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcetypes "github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dnsp/dnsp.go | msrpc/dnsp/dnsp.go | // The dnsp package implements the DNSP client protocol.
//
// # Introduction
//
// The Domain Name Service (DNS) Server Management Protocol defines RPC interfaces that
// provide methods for remotely accessing and administering a DNS server. It is a client/server
// protocol based on RPC that is used in the configurat... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dnsp/record.go | msrpc/dnsp/record.go | package dnsp
import (
"github.com/miekg/dns"
"github.com/oiweiwei/go-msrpc/msrpc/dnsp/record"
)
// NewRecordFromString creates a new Record from a string data.
func NewRecordFromString(typ uint16, ttl uint32, data string) (*Record, error) {
record, err := record.NewRecordFromString(typ, ttl, data)
if err != nil... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dnsp/dnsserver/v5/v5.go | msrpc/dnsp/dnsserver/v5/v5.go | package dnsserver
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dnsp "github.com/oiweiwei/go-msrpc/msrpc/dnsp"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dnsp/dnsserver/v5/server.go | msrpc/dnsp/dnsserver/v5/server.go | package dnsserver
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dnsp/record/rr.go | msrpc/dnsp/record/rr.go | package record
import (
"context"
"encoding/base32"
"encoding/base64"
"encoding/hex"
"encoding/json"
"fmt"
"net"
"strings"
"github.com/miekg/dns"
"github.com/oiweiwei/go-msrpc/ndr"
ms_dns "github.com/oiweiwei/go-msrpc/msrpc/dnsp/record/dns"
)
func (o *NodeName) MarshalJSON() ([]byte, error) {
return js... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dnsp/record/record.go | msrpc/dnsp/record/record.go | // The record package implements the RECORD client protocol.
//
// # Introduction
//
// The Domain Name Service (DNS) Server Management Protocol defines RPC interfaces that
// provide methods for remotely accessing and administering a DNS server. It is a client/server
// protocol based on RPC that is used in the config... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dnsp/record/dns/types.go | msrpc/dnsp/record/dns/types.go | package dns
import (
"encoding/hex"
"fmt"
"net"
"strconv"
"github.com/miekg/dns"
)
var (
TypeATMA uint16 = 0x22
TypeWINS uint16 = 0xFF01
TypeWINSR uint16 = 0xFF02
TypeWKS uint16 = 0x0B
)
func init() {
dns.TypeToString[TypeATMA] = "ATMA"
dns.TypeToString[TypeWINSR] = "WINSR"
dns.TypeToString[TypeWINS... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/capr/capr.go | msrpc/capr/capr.go | // The capr package implements the CAPR client protocol.
//
// # Introduction
//
// The Central Access Policy Identifier (ID) Retrieval Protocol enables an administrative
// tool to query the Central Access Policies (CAPs) configured on a remote computer.
//
// # Overview
//
// The Central Access Policy ID Retrieval (C... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/capr/lsacap/v1/server.go | msrpc/capr/lsacap/v1/server.go | package lsacap
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.En... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/capr/lsacap/v1/v1.go | msrpc/capr/lsacap/v1/v1.go | package lsacap
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
capr "github.com/oiweiwei/go-msrpc/msrpc/capr"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/error_info_string.go | msrpc/dcom/error_info_string.go | package dcom
import (
"context"
)
func (o *ErrorInfoString) AfterPreparePayload(ctx context.Context) error {
if o.Actual == 0 {
o.Actual = o.Max
}
return nil
}
| go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/id.go | msrpc/dcom/id.go | package dcom
import (
"github.com/oiweiwei/go-msrpc/midl/uuid"
)
func (o *IPID) MarshalJSON() ([]byte, error) { return o.GUID().MarshalJSON() }
func (o *IID) MarshalJSON() ([]byte, error) { return o.GUID().MarshalJSON() }
func (o *IID) String() string { return o.GUID().String() }
func (o *ClassID) MarshalJSON() (... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/dcom.go | msrpc/dcom/dcom.go | // The dcom package implements the DCOM client protocol.
//
// # Introduction
//
// The Distributed Component Object Model (DCOM) Remote Protocol is a protocol for exposing
// application objects by way of remote procedure calls (RPCs). The protocol consists
// of a set of extensions layered on Microsoft Remote Procedu... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/interface_pointer.go | msrpc/dcom/interface_pointer.go | package dcom
import "github.com/oiweiwei/go-msrpc/ndr"
var ObjectReferenceCustomSignature = "MEOW"
func (o *InterfacePointer) IPID() *IPID {
if std := o.GetStandardObjectReference().Std; std != nil && std.IPID != nil {
return std.IPID
}
return &IPID{}
}
func (o *InterfacePointer) GetObjectReference() *ObjectRe... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/dualstringarray.go | msrpc/dcom/dualstringarray.go | package dcom
import (
"encoding/json"
"strconv"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
"github.com/oiweiwei/go-msrpc/msrpc/dcetypes"
)
type StringBinding struct {
TowerID uint16 `json:"tower_id"`
NetworkAddr string `json:"network_addr"`
}
func (o *StringBinding) String() string {
... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/extension.go | msrpc/dcom/extension.go | package dcom
import (
"bytes"
"fmt"
ndr "github.com/oiweiwei/go-msrpc/ndr"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp"
)
const ErrorStringSignature uint32 = 0xFFFFFFFF
const ContextORPCExtensionSignature string = "ANUK"
const EntryHeaderSignature string = "INAN"
// Extension represents the ORPC Extension ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/options.go | msrpc/dcom/options.go | package dcom
import (
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp"
)
// Superclass option is an alias of the dcerpc.WithNoBind option.
func Superclass(cc dcerpc.Conn) dcerpc.Option {
return dcerpc.WithNoBind(cc)
}
// IsSuperclass option is an alias of the dcerpc.HasN... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/iid.go | msrpc/dcom/iid.go | package dcom
// IID_IActivation: RPC interface UUID for IActivation. {4d9f4ab8-7d1c-11cf-861e-0020af6e7c57}
var ActivationIID = &IID{Data1: 0x4d9f4ab8, Data2: 0x7d1c, Data3: 0x11cf, Data4: []byte{0x86, 0x1e, 0x00, 0x20, 0xaf, 0x6e, 0x7c, 0x57}}
// IID_IActivationPropertiesIn: The value of the iid field of the pActPro... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/class_id.go | msrpc/dcom/class_id.go | package dcom
func (o *ClassID) Equal(other *ClassID) bool {
return o.GUID().Equal(other.GUID())
}
| go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/context.go | msrpc/dcom/context.go | package dcom
import (
"fmt"
"github.com/oiweiwei/go-msrpc/ndr"
)
// InterfacePointer function encodes the context object into an InterfacePointer.
func (o *Context) InterfacePointer() (*InterfacePointer, error) {
blob, err := ndr.Marshal(o, ndr.Opaque)
if err != nil {
return nil, fmt.Errorf("marshal context: ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/activation_properties.go | msrpc/dcom/activation_properties.go | package dcom
import (
"bytes"
"fmt"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
// Activation property CLSID for ActivationContextInfoData. {000001a5-0000-0000-c000-000000000046}
var ActivationContextInfoClassID = &ClassID{Data1: 0x000001a5, Data2: 0x0000, Data3: 0x0000, Data4: []byte{0xc0, 0x00, 0x00, 0x00, 0x00, 0... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/iunknown/v0/server.go | msrpc/dcom/iunknown/v0/server.go | package iunknown
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = context.Background
_ = fmt.Errorf
_ = utf16.... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/iunknown/v0/v0.go | msrpc/dcom/iunknown/v0/v0.go | package iunknown
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcom "github.com/oiweiwei/go-msrpc/msrpc/dcom"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/iremunknown2/v0/server.go | msrpc/dcom/iremunknown2/v0/server.go | package iremunknown2
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
iremunknown "github.com/oiweiwei/go-msrpc/msrpc/dcom/iremunknown/v0"
ndr "github.com/oiweiwei/... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/iremunknown2/v0/v0.go | msrpc/dcom/iremunknown2/v0/v0.go | package iremunknown2
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcom "github.com/oiweiwei/go-msrpc/msrpc/dcom"
iremunknown "github.com/oiweiwei/go-msrpc/msrpc... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/wmi/clsid.go | msrpc/dcom/wmi/clsid.go | package wmi
import "github.com/oiweiwei/go-msrpc/msrpc/dcom"
var (
// 4590F812-1D3A-11D0-891F-00AA004B2E24
ClassObjectUnmarshalClassID = &dcom.ClassID{Data1: 0x4590F812, Data2: 0x1D3A, Data3: 0x11D0, Data4: []byte{0x89, 0x1F, 0x00, 0xAA, 0x00, 0x4B, 0x2E, 0x24}}
// 674B6698-EE92-11D0-AD71-00C04FD8FDFF
ContextUnm... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/wmi/object_array.go | msrpc/dcom/wmi/object_array.go | package wmi
import (
"fmt"
"github.com/oiweiwei/go-msrpc/msrpc/dcom"
"github.com/oiweiwei/go-msrpc/msrpc/dcom/wmio"
"github.com/oiweiwei/go-msrpc/msrpc/dtyp"
)
func UnmarshalObjectArrayWithClass(b []byte, cls wmio.Class) (*ObjectArray, error) {
o := &ObjectArray{}
return o, o.DecodeWithClass(wmio.NewCodec(b), ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/wmi/wmi.go | msrpc/dcom/wmi/wmi.go | // The wmi package implements the WMI client protocol.
//
// # Introduction
//
// Windows Management Instrumentation (WMI) Remote Protocol is a Distributed Component
// Object Model (DCOM), as specified in [MS-DCOM], a client/server–based framework
// that provides an open and automated means of systems management. WMI... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/wmi/iwbemobjectsink/v0/server.go | msrpc/dcom/wmi/iwbemobjectsink/v0/server.go | package iwbemobjectsink
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
iunknown "github.com/oiweiwei/go-msrpc/msrpc/dcom/iunknown/v0"
ndr "github.com/oiweiwei/go-... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/wmi/iwbemobjectsink/v0/v0.go | msrpc/dcom/wmi/iwbemobjectsink/v0/v0.go | package iwbemobjectsink
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcom "github.com/oiweiwei/go-msrpc/msrpc/dcom"
iunknown "github.com/oiweiwei/go-msrpc/msrpc... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/wmi/iwbemservices/v0/server.go | msrpc/dcom/wmi/iwbemservices/v0/server.go | package iwbemservices
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
iunknown "github.com/oiweiwei/go-msrpc/msrpc/dcom/iunknown/v0"
ndr "github.com/oiweiwei/go-ms... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/wmi/iwbemservices/v0/v0.go | msrpc/dcom/wmi/iwbemservices/v0/v0.go | package iwbemservices
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
dcom "github.com/oiweiwei/go-msrpc/msrpc/dcom"
iunknown "github.com/oiweiwei/go-msrpc/msrpc/d... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcom/wmi/iwbembackuprestore/v0/server.go | msrpc/dcom/wmi/iwbembackuprestore/v0/server.go | package iwbembackuprestore
import (
"context"
"fmt"
"strings"
"unicode/utf16"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
errors "github.com/oiweiwei/go-msrpc/dcerpc/errors"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
iunknown "github.com/oiweiwei/go-msrpc/msrpc/dcom/iunknown/v0"
ndr "github.com/oiweiwei/... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.