mirror of
https://github.com/jfjallid/go-secdump
synced 2026-06-06 15:54:30 +00:00
a7a9c97889
Fix SHA256 rounds parameter being ignored, LSA VistaStyle fallback broken by fmt.Errorf comparison, missing return after invalid flag combination, format string argument mismatch in revertDacl, duplicate registry handle close in getSysKey, and incorrect pad64 alignment formula. Fix log.Errorln calls with format verbs to use log.Errorf. Rename snake_case types to camelCase, rename receiver parameters from self to idiomatic single-letter names, rename global m to originalDacls, fix function name typo addToListIfNotExit, replace bytes.Compare with bytes.Equal, remove deprecated rand.Seed init, and update CI to Go 1.24.
20 lines
451 B
Modula-2
20 lines
451 B
Modula-2
module github.com/jfjallid/go-secdump
|
|
|
|
go 1.24
|
|
|
|
require (
|
|
github.com/jfjallid/go-smb v0.7.0
|
|
github.com/jfjallid/golog v0.3.3
|
|
golang.org/x/crypto v0.37.0
|
|
golang.org/x/net v0.39.0
|
|
golang.org/x/term v0.31.0
|
|
)
|
|
|
|
require (
|
|
github.com/jfjallid/gofork v1.7.6 // indirect
|
|
github.com/jfjallid/gokrb5/v8 v8.5.1 // indirect
|
|
github.com/jfjallid/mstypes v0.0.1 // indirect
|
|
github.com/jfjallid/ndr v0.0.2 // indirect
|
|
golang.org/x/sys v0.32.0 // indirect
|
|
)
|