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/binxml/reader.go | msrpc/binxml/reader.go | package binxml
import (
"bytes"
"encoding/binary"
"fmt"
"reflect"
"strings"
"github.com/oiweiwei/go-msrpc/text/encoding/utf16le"
)
var (
Debug = false
)
type Reader struct {
binary.ByteOrder
r *bytes.Reader
sz int
err error
ctx []string
}
func NewReader(b []byte) *Reader {
return &Reader{binary.Lit... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/binxml/value.go | msrpc/binxml/value.go | package binxml
import (
"bytes"
"encoding/binary"
"encoding/hex"
"fmt"
"math"
"github.com/oiweiwei/go-msrpc/midl/uuid"
"github.com/oiweiwei/go-msrpc/msrpc/dtyp"
)
type Value struct {
ID int `json:"id"`
Length uint16 `json:"length,omitempty"`
Type uint8 `json:"type"`
IsArr... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/binxml/binxml.go | msrpc/binxml/binxml.go | package binxml
import (
"encoding/xml"
"fmt"
"reflect"
"strconv"
"strings"
"time"
"github.com/oiweiwei/go-msrpc/midl/uuid"
"github.com/oiweiwei/go-msrpc/msrpc/dtyp"
)
func Unmarshal(b []byte) (*ResultSet, error) {
rs := &ResultSet{}
if err := NewReader(nil).ReadWithBytes(b, &rs); err != nil {
return nil,... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/trp/trp.go | msrpc/trp/trp.go | // The trp package implements the TRP client protocol.
//
// # Introduction
//
// The Microsoft Telephony Application Programming Interface (TAPI) enables implementation
// of communications applications ranging from voice mail to call centers with multiple
// agents and switches. The Microsoft Telephony programming mo... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/trp/remotesp/v1/server.go | msrpc/trp/remotesp/v1/server.go | package remotesp
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/trp/remotesp/v1/v1.go | msrpc/trp/remotesp/v1/v1.go | package remotesp
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 | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/trp/tapsrv/v1/server.go | msrpc/trp/tapsrv/v1/server.go | package tapsrv
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/trp/tapsrv/v1/v1.go | msrpc/trp/tapsrv/v1/v1.go | package tapsrv
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 | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/lsat/lsat.go | msrpc/lsat/lsat.go | // The lsat package implements the LSAT client protocol.
//
// # Introduction
//
// The Local Security Authority (Translation Methods) Remote Protocol is implemented
// in Windows products to translate identifiers for security principals between human-readable
// and machine-readable forms. This translation can be used... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/lsat/lsarpc/v0/server.go | msrpc/lsat/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/lsat/lsarpc/v0/v0.go | msrpc/lsat/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/eerr/eerr.go | msrpc/eerr/eerr.go | // The eerr package implements the EERR client protocol.
//
// # Introduction
//
// This specification for encoding extended error information assumes that the reader
// has familiarity with the concepts and the requirements that are detailed in [MS-RPCE]
// and [C706].
//
// The purpose of the encoding that this speci... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/eerr/extendederror/v1/server.go | msrpc/eerr/extendederror/v1/server.go | package extendederror
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
_ = u... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/eerr/extendederror/v1/v1.go | msrpc/eerr/extendederror/v1/v1.go | package extendederror
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
_ = u... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/mqrr/mqrr.go | msrpc/mqrr/mqrr.go | // The mqrr package implements the MQRR client protocol.
//
// # Introduction
//
// This document specifies the Message Queuing (MSMQ): Queue Manager Remote Read Protocol,
// a remote procedure call (RPC)-based protocol that is used by Microsoft Message Queuing
// (MSMQ) clients to read or reject a message from a queue... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/mqrr/remoteread/v1/server.go | msrpc/mqrr/remoteread/v1/server.go | package remoteread
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
_ = utf1... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/mqrr/remoteread/v1/v1.go | msrpc/mqrr/remoteread/v1/v1.go | package remoteread
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/... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/cmrp/cmrp.go | msrpc/cmrp/cmrp.go | // The cmrp package implements the CMRP client protocol.
//
// # Introduction
//
// The Failover Cluster: Management API (ClusAPI) Protocol is a remote procedure call
// (RPC)–based protocol that is used for remotely managing a failover cluster. Managing
// a failover cluster involves managing the data that represents ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/cmrp/clusapi3/v3/v3.go | msrpc/cmrp/clusapi3/v3/v3.go | package clusapi3
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/cmrp/clusapi3/v3/server.go | msrpc/cmrp/clusapi3/v3/server.go | package clusapi3
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/cmrp/clusapi2/v2/v2.go | msrpc/cmrp/clusapi2/v2/v2.go | package clusapi2
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/cmrp/clusapi2/v2/server.go | msrpc/cmrp/clusapi2/v2/server.go | package clusapi2
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/dssp/dssp.go | msrpc/dssp/dssp.go | // The dssp package implements the DSSP client protocol.
//
// # Introduction
//
// The Directory Services Setup Remote Protocol is a client/server-based remote procedure
// call (RPC) protocol. The protocol exposes an RPC interface that a client can call
// to obtain domain-related computer state and configuration inf... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dssp/dssetup/v0/server.go | msrpc/dssp/dssetup/v0/server.go | package dssetup
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/dssp/dssetup/v0/v0.go | msrpc/dssp/dssetup/v0/v0.go | package dssetup
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 | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/frs1/frs1.go | msrpc/frs1/frs1.go | // The frs1 package implements the FRS1 client protocol.
//
// # Introduction
//
// The File Replication Service (FRS) Protocol is used to replicate files and folders
// among servers on the network. This protocol enables duplicate files and folders to
// be maintained on multiple servers. FRS is used to maintain dupl... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/frs1/ntfrsapi/v1/server.go | msrpc/frs1/ntfrsapi/v1/server.go | package ntfrsapi
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/frs1/ntfrsapi/v1/v1.go | msrpc/frs1/ntfrsapi/v1/v1.go | package ntfrsapi
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 | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/frs1/frsrpc/v1/server.go | msrpc/frs1/frsrpc/v1/server.go | package frsrpc
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/frs1/frsrpc/v1/v1.go | msrpc/frs1/frsrpc/v1/v1.go | package frsrpc
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/rpcl/rpcl.go | msrpc/rpcl/rpcl.go | // The rpcl package implements the RPCL client protocol.
//
// # Introduction
//
// The Remote Procedure Call Location Services Extensions is a legacy protocol that
// has been deprecated and is not used by Microsoft. Implementers should use the DCE-based
// RPC Location Services capabilities in [C706].
//
// The Remot... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/rpcl/loctoloc/v1/server.go | msrpc/rpcl/loctoloc/v1/server.go | package loctoloc
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/rpcl/loctoloc/v1/v1.go | msrpc/rpcl/loctoloc/v1/v1.go | package loctoloc
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"
rpcl "github.com/oiweiwei/go-msrpc/msrpc/rpcl"
ndr... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/w32t/w32t.go | msrpc/w32t/w32t.go | // The w32t package implements the W32T client protocol.
//
// # Introduction
//
// The W32Time Remote Protocol is a remote procedure call (RPC) interface for controlling
// and monitoring a time service that implements the Network Time Protocol (NTP) Authentication
// Extensions [MS-SNTP].
//
// # Overview
//
// The W... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/w32t/w32time/v4/v4.go | msrpc/w32t/w32time/v4/v4.go | package w32time
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"
w32t "github.com/oiweiwei/go-msrpc/msrpc/w32t"
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/w32t/w32time/v4/server.go | msrpc/w32t/w32time/v4/server.go | package w32time
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/even/even.go | msrpc/even/even.go | // The even package implements the EVEN client protocol.
//
// # Introduction
//
// The EventLog Remoting Protocol is an RPC-based protocol that exposes remote procedure
// call (RPC) methods for reading events in both live event logs and backup event logs
// on remote computers. The protocol also specifies how to get ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/even/eventlog/v0/server.go | msrpc/even/eventlog/v0/server.go | package eventlog
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/even/eventlog/v0/v0.go | msrpc/even/eventlog/v0/v0.go | package eventlog
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/dtyp/system_time.go | msrpc/dtyp/system_time.go | package dtyp
import "time"
func (s *SystemTime) AsTime() time.Time {
return time.Date(int(s.Year), time.Month(s.Month), int(s.Day), int(s.Hour), int(s.Minute), int(s.Second), 1000*int(s.Milliseconds), nil)
}
| go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dtyp/dtyp.go | msrpc/dtyp/dtyp.go | // The dtyp package implements the DTYP client protocol.
//
// # Introduction
//
// This document provides a collection of commonly used data types, which are categorized
// into two basic types: common base types and common data types. The common base types
// are those types that Microsoft compilers natively support.... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dtyp/filetime.go | msrpc/dtyp/filetime.go | package dtyp
import (
"encoding/binary"
"encoding/json"
"time"
)
func (ft *Filetime) MarshalJSON() ([]byte, error) {
if ft.IsNever() {
return json.Marshal("never")
}
return json.Marshal(ft.AsTime())
}
func (ft *Filetime) IsNever() bool {
return ft.LowDateTime == 0xFFFFFFFF && ft.HighDateTime == 0x7FFFFFFF
}... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dtyp/ace_guid.go | msrpc/dtyp/ace_guid.go | package dtyp
func (o *ACEGUID) MarshalJSON() ([]byte, error) {
if guid, ok := o.GetValue().(*GUID); ok {
return guid.MarshalJSON()
}
return []byte("null"), nil
}
| go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dtyp/security_descriptor.go | msrpc/dtyp/security_descriptor.go | package dtyp
import (
"context"
"github.com/oiweiwei/go-msrpc/ndr"
)
func (o *SecurityDescriptor) Parse(b []byte) error {
r := ndr.NDR20(b, ndr.Opaque)
r.ReadData(&o.Revision)
r.ReadData(&o.SBZ1)
r.ReadData(&o.Control)
if r.Err() != nil {
return r.Err()
}
if o.Control&SelfRelative == 0 {
return ndr.... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dtyp/sid.go | msrpc/dtyp/sid.go | package dtyp
import (
"bytes"
"encoding/binary"
"encoding/hex"
"encoding/json"
"fmt"
"strconv"
"strings"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
func (o *SID) MarshalJSON() ([]byte, error) {
return json.Marshal(o.String())
}
func (o *SID) Bytes() ([]byte, error) {
return ndr.Marshal(o, ndr.Opaque)
}
fun... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dtyp/guid.go | msrpc/dtyp/guid.go | package dtyp
import (
"bytes"
"encoding/hex"
"encoding/json"
"fmt"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
)
func (g *GUID) String() string {
if g != nil && len(g.Data4) == 8 {
return fmt.Sprintf("%08x-%04x-%04x-%02x%02x-%012s",
g.Data1, g.Data2, g.Data3, g.Data4[0], g.Data4[1], hex.EncodeToString(g... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dtyp/unicode_string.go | msrpc/dtyp/unicode_string.go | package dtyp
import (
"context"
"strings"
"github.com/oiweiwei/go-msrpc/ndr"
)
func (o *UnicodeString) BeforePreparePayload(ctx context.Context) error {
// XXX: skip over setting parameters if they are already set, skip empty strings.
if o.Length != 0 || o.MaximumLength != 0 || o.Buffer == "" {
return nil
}... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dtyp/filetime/filetime.go | msrpc/dtyp/filetime/filetime.go | package filetime
import (
"time"
"github.com/oiweiwei/go-msrpc/msrpc/dtyp"
)
// Never returns a Filetime that represents the maximum time.
func Never() *dtyp.Filetime {
return &dtyp.Filetime{
LowDateTime: 0xFFFFFFFF,
HighDateTime: 0x7FFFFFFF,
}
}
// Now returns a Filetime that represents the current UTC ti... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/conv/conv.go | msrpc/conv/conv.go | // The conv package implements the CONV client protocol.
package conv
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"... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/conv/conv/v3/v3.go | msrpc/conv/conv/v3/v3.go | package conv
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"
conv "github.com/oiweiwei/go-msrpc/msrpc/conv"
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/conv/conv/v3/server.go | msrpc/conv/conv/v3/server.go | package conv
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/conv/convc/v1/server.go | msrpc/conv/convc/v1/server.go | package convc
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/conv/convc/v1/v1.go | msrpc/conv/convc/v1/v1.go | package convc
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"
conv "github.com/oiweiwei/go-msrpc/msrpc/conv"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = c... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dltm/dltm.go | msrpc/dltm/dltm.go | // The dltm package implements the DLTM client protocol.
//
// # Introduction
//
// This document specifies the Distributed Link Tracking: Central Manager Protocol.
//
// Distributed Link Tracking (DLT) consists of two protocols that work together to discover
// the new location of a file that has moved. DLT can determ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dltm/trksvr/v1/server.go | msrpc/dltm/trksvr/v1/server.go | package trksvr
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/dltm/trksvr/v1/v1.go | msrpc/dltm/trksvr/v1/v1.go | package trksvr
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"
dltm "github.com/oiweiwei/go-msrpc/msrpc/dltm"
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/dcetypes/tower.go | msrpc/dcetypes/tower.go | package dcetypes
import (
"bytes"
"encoding/binary"
"encoding/hex"
"encoding/json"
"fmt"
"net"
"strconv"
dcerpc "github.com/oiweiwei/go-msrpc/dcerpc"
uuid "github.com/oiweiwei/go-msrpc/midl/uuid"
)
var (
// https://github.com/boundary/wireshark/blob/master/epan/dissectors/packet-dcerpc-epm.c#L250
Protocol... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcetypes/context_handle.go | msrpc/dcetypes/context_handle.go | package dcetypes
func (o *ContextHandle) IsZero() bool {
return o.Attributes == 0 && o.UUID.IsZero()
}
| go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/dcetypes/dcetypes.go | msrpc/dcetypes/dcetypes.go | // The dcetypes package implements the DCETYPES client protocol.
package dcetypes
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... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/pan/pan.go | msrpc/pan/pan.go | // The pan package implements the PAN client protocol.
//
// # Introduction
//
// The Print System Asynchronous Notification Protocol is used asynchronously by clients
// to receive print status notifications from a server and to send back responses to
// those notifications. A set of notifications and responses are de... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/pan/irpcremoteobject/v1/server.go | msrpc/pan/irpcremoteobject/v1/server.go | package irpcremoteobject
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/pan/irpcremoteobject/v1/v1.go | msrpc/pan/irpcremoteobject/v1/v1.go | package irpcremoteobject
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/pan/irpcasyncnotify/v1/server.go | msrpc/pan/irpcasyncnotify/v1/server.go | package irpcasyncnotify
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/pan/irpcasyncnotify/v1/v1.go | msrpc/pan/irpcasyncnotify/v1/v1.go | package irpcasyncnotify
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/ad/parser.go | msrpc/ad/parser.go | package ad
import (
"encoding/binary"
"time"
"github.com/oiweiwei/go-msrpc/msrpc/drsr/drsuapi/v4"
"github.com/oiweiwei/go-msrpc/msrpc/dtyp"
"github.com/oiweiwei/go-msrpc/ndr"
"github.com/oiweiwei/go-msrpc/text/encoding/utf16le"
)
type StringUnicode struct{}
func (StringUnicode) Size() int { return -1 }
func ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/ad/attributes.go | msrpc/ad/attributes.go | package ad
import (
"encoding/asn1"
"github.com/oiweiwei/go-msrpc/midl/uuid"
)
var attributes = map[string]Attr{
"a-accountexpires": {
CN: "Account-Expires",
LDAPName: "accountExpires",
AttributeID: asn1.ObjectIdentifier{1, 2, 840, 113556, 1, 4, 159},
SystemID: &uuid.UUID{TimeLow: 0xbf96791... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/ad/gen.go | msrpc/ad/gen.go | //go:build ignore
package main
import (
"bytes"
"context"
"encoding/asn1"
"encoding/json"
"flag"
"fmt"
"go/format"
"os"
"path/filepath"
"sort"
"strconv"
"strings"
"sync"
"time"
"github.com/PuerkitoBio/goquery"
"github.com/oiweiwei/go-msrpc/midl/uuid"
)
var (
u string
cache string
dump ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/ad/ad.go | msrpc/ad/ad.go | package ad
import (
"encoding/asn1"
"encoding/json"
"fmt"
"github.com/oiweiwei/go-msrpc/midl/uuid"
)
type Converter interface {
Size() int
Convert([]byte, ...any) (any, error)
}
type Syntax struct {
Name string
Converter Converter
}
func (s Syntax) MarshalJSON() ([]byte, error) {
return json.Marshal(... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/rsp/rsp.go | msrpc/rsp/rsp.go | // The rsp package implements the RSP client protocol.
//
// # Introduction
//
// This document specifies the Remote Shutdown Protocol. The Remote Shutdown Protocol
// is a remote procedure call (RPC)-based protocol used to shut down or terminate shutdown
// on a remote computer.
//
// # Overview
//
// The Remote Shutd... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/rsp/windowsshutdown/v1/server.go | msrpc/rsp/windowsshutdown/v1/server.go | package windowsshutdown
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/rsp/windowsshutdown/v1/v1.go | msrpc/rsp/windowsshutdown/v1/v1.go | package windowsshutdown
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"
rsp "github.com/oiweiwei/go-msrpc/msrpc/rsp"
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/rsp/winreg/v1/server.go | msrpc/rsp/winreg/v1/server.go | package winreg
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/rsp/winreg/v1/v1.go | msrpc/rsp/winreg/v1/v1.go | package winreg
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"
rsp "github.com/oiweiwei/go-msrpc/msrpc/rsp"
ndr "github.com/oiweiwei/go-msrpc/ndr"
)
var (
_ = co... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/rsp/initshutdown/v1/server.go | msrpc/rsp/initshutdown/v1/server.go | package initshutdown
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
_ = ut... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/rsp/initshutdown/v1/v1.go | msrpc/rsp/initshutdown/v1/v1.go | package initshutdown
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"
rsp "github.com/oiweiwei/go-msrpc/msrpc/rsp"
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/ssp/ssp.go | msrpc/ssp/ssp.go | // The ssp package implements the SSP client protocol.
package ssp
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 (
... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/ssp/isinglesignonremotemastersecret/v1/server.go | msrpc/ssp/isinglesignonremotemastersecret/v1/server.go | package isinglesignonremotemastersecret
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
_ =... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/ssp/isinglesignonremotemastersecret/v1/v1.go | msrpc/ssp/isinglesignonremotemastersecret/v1/v1.go | package isinglesignonremotemastersecret
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
_ =... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/pcq/pcq.go | msrpc/pcq/pcq.go | // The pcq package implements the PCQ client protocol.
//
// # Introduction
//
// The Performance Counter Query Protocol is a remote procedure call (RPC)–based protocol
// that is used for browsing performance counters and retrieving performance counter
// values from a server.
//
// # Overview
//
// To effectively man... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/pcq/perflibv2/v1/server.go | msrpc/pcq/perflibv2/v1/server.go | package perflibv2
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/pcq/perflibv2/v1/v1.go | msrpc/pcq/perflibv2/v1/v1.go | package perflibv2
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/d... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/wkst/wkst.go | msrpc/wkst/wkst.go | // The wkst package implements the WKST client protocol.
//
// # Introduction
//
// The Workstation Service Remote Protocol is used to perform tasks on a computer remotely
// on a network, including:
//
// * Configuring properties and behavior of a Server Message Block ( 3acf0e02-9bbd-4ce0-a7a0-586bc72d3ef4#gt_09dbec39... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/wkst/wkssvc/v1/server.go | msrpc/wkst/wkssvc/v1/server.go | package wkssvc
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/wkst/wkssvc/v1/v1.go | msrpc/wkst/wkssvc/v1/v1.go | package wkssvc
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 | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/wdsc/wdsc.go | msrpc/wdsc/wdsc.go | // The wdsc package implements the WDSC client protocol.
//
// # Introduction
//
// The Windows Deployment Services (WDS) Control Protocol specifies an RPC interface
// that provides the ability to remotely invoke services provided by WDS Server. It
// is a client/server protocol which uses RPC as a transport. The prot... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/wdsc/wdsrpc/v1/server.go | msrpc/wdsc/wdsrpc/v1/server.go | package wdsrpc
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/wdsc/wdsrpc/v1/v1.go | msrpc/wdsc/wdsrpc/v1/v1.go | package wdsrpc
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/fsrvp/fsrvp.go | msrpc/fsrvp/fsrvp.go | // The fsrvp package implements the FSRVP client protocol.
//
// # Introduction
//
// The File Server Remote VSS Protocol (FSRVP) is a remote procedure call (RPC)-based
// protocol that is used for creating shadow copies of file shares on a remote computer.
// This protocol facilitates the backup applications' tasks in... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/fsrvp/fileservervssagent/v1/server.go | msrpc/fsrvp/fileservervssagent/v1/server.go | package fileservervssagent
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/fsrvp/fileservervssagent/v1/v1.go | msrpc/fsrvp/fileservervssagent/v1/v1.go | package fileservervssagent
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"
)
... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/pac/upn_dns_info.go | msrpc/pac/upn_dns_info.go | package pac
import (
"bytes"
"context"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp"
ndr "github.com/oiweiwei/go-msrpc/ndr"
"github.com/oiweiwei/go-msrpc/text/encoding/utf16le"
)
func (o *UPNDNSInfo) Unmarshal(b []byte) error {
r := ndr.NDR20(b, ndr.Opaque)
if err := r.Unmarshal(context.Background(), o); e... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/pac/pac_credential_info.go | msrpc/pac/pac_credential_info.go | package pac
import (
"errors"
"fmt"
ndr "github.com/oiweiwei/go-msrpc/ndr"
"github.com/oiweiwei/gokrb5.fork/v9/crypto"
"github.com/oiweiwei/gokrb5.fork/v9/iana/keyusage"
"github.com/oiweiwei/gokrb5.fork/v9/types"
)
func (o *PACCredentialInfo) DecryptCredentialData(key types.EncryptionKey) (*PACCredentialData, ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/pac/pac_test.go | msrpc/pac/pac_test.go | package pac
import (
"encoding/hex"
"encoding/json"
"fmt"
"testing"
"github.com/oiweiwei/gokrb5.fork/v9/test/testdata"
"github.com/oiweiwei/gokrb5.fork/v9/types"
ndr "github.com/oiweiwei/go-msrpc/ndr"
"github.com/oiweiwei/go-msrpc/msrpc/adts/claims/claims/v1"
pac_testdata "github.com/oiweiwei/go-msrpc/msr... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/pac/pac.go | msrpc/pac/pac.go | // The pac package implements the PAC client protocol.
//
// # Introduction
//
// The Privilege Attribute Certificate (PAC) Data Structure is used by authentication
// protocols that verify identities to transport authorization information, which controls
// access to resources. The Kerberos protocol [RFC4120] does not... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/pac/pac_type.go | msrpc/pac/pac_type.go | package pac
import (
"bytes"
"fmt"
ndr "github.com/oiweiwei/go-msrpc/ndr"
claims "github.com/oiweiwei/go-msrpc/msrpc/adts/claims/claims/v1"
dtyp "github.com/oiweiwei/go-msrpc/msrpc/dtyp"
)
type PAC struct {
Version int `json:"version"`
Buffers ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/pac/testdata/testdata.go | msrpc/pac/testdata/testdata.go | package testdata
var (
MarshaledPAC_AD_WIN2K_PAC = "0800000000000000010000000002000088000000000000000d0000000000000088020000000000000a0000001800000088020000000000000c00000088000000a00200000000000011000000080000002803000000000000120000001c00000030030000000000000600000010000000500300000000000007000000100000006003000000... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/well_known/gen.go | msrpc/well_known/gen.go | //go:build exclude
package main
import (
"bytes"
"flag"
"fmt"
"go/format"
"io"
"os"
"strings"
"encoding/csv"
"github.com/oiweiwei/go-msrpc/dcerpc"
"github.com/oiweiwei/go-msrpc/midl/uuid"
)
var (
file string
pkg string
out string
)
func init() {
flag.StringVar(&file, "f", "./data/well_known_endpoi... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/well_known/well_known_endpoints.go | msrpc/well_known/well_known_endpoints.go | package well_known
import (
"github.com/oiweiwei/go-msrpc/midl/uuid"
)
var (
Null = uuid.UUID{TimeLow: 0x0, TimeMid: 0x0, TimeHiAndVersion: 0x0, ClockSeqHiAndReserved: 0x0, ClockSeqLow: 0x0, Node: [6]uint8{0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}
MCCCFGIClusCfgAsyncEvictCleanup ... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/well_known/well_known.go | msrpc/well_known/well_known.go | //go:generate go run gen.go -o well_known_endpoints.go
package well_known
import (
"context"
"strings"
"github.com/oiweiwei/go-msrpc/dcerpc"
)
// The WellKnownMapper represents the static endpoint mapper.
type WellKnownMapper struct{}
func EndpointMapper() dcerpc.Option {
return dcerpc.WithEndpointMapper(&WellK... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | false |
oiweiwei/go-msrpc | https://github.com/oiweiwei/go-msrpc/blob/6f89ec8889c9e3408ffdc71c45f01e61ce95ce78/msrpc/frs2/frs2.go | msrpc/frs2/frs2.go | // The frs2 package implements the FRS2 client protocol.
//
// # Introduction
//
// The Distributed File System: Replication (DFS-R) Protocol is a remote procedure call
// (RPC) that replicates files between servers. DFS-R enables creation of multimaster
// optimistic file replication systems. It is multimaster, becaus... | go | MIT | 6f89ec8889c9e3408ffdc71c45f01e61ce95ce78 | 2026-01-07T09:45:59.650381Z | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.