Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion thorlog/v3/cobaltstrike.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package thorlog

type BeaconConfig struct {
Type string `json:"type" textlog:"type"`
Type string `json:"beacon_type" textlog:"type"`
C2 string `json:"c2" textlog:"c2"`
Port string `json:"port" textlog:"port"`
SpawnTo string `json:"spawn_to" textlog:"spawnto"`
Expand Down
2 changes: 1 addition & 1 deletion thorlog/v3/hostinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ type PlatformInfoWindows struct {
jsonlog.ObjectHeader

Name string `json:"name" textlog:"name"`
Type string `json:"type" textlog:"type"`
Type string `json:"os_type" textlog:"type"`
Version string `json:"version" textlog:"version"`
Proc string `json:"proc" textlog:"proc"`
Arch string `json:"arch" textlog:"arch"`
Expand Down
2 changes: 1 addition & 1 deletion thorlog/v3/processhandle.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type ProcessHandle struct {

Name string `json:"name" textlog:"name"`
Handle uint64 `json:"handle" textlog:"handle,omitempty"`
Type string `json:"type,omitempty" textlog:"type,omitempty"`
Type string `json:"handle_type,omitempty" textlog:"type,omitempty"`
}

func (ProcessHandle) reportable() {}
Expand Down