Skip to content

Commit 4d0e944

Browse files
committed
Merge branch 'issue_25' into dev
2 parents 23983f5 + c79674c commit 4d0e944

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

clients/mythic/mythic.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ func (client *Client) Initial(agent messages.AgentInfo) (messages.Base, error) {
274274
OS: agent.SysInfo.Platform,
275275
User: agent.SysInfo.UserName,
276276
Host: agent.SysInfo.HostName,
277-
PID: strconv.Itoa(agent.SysInfo.Pid),
277+
PID: agent.SysInfo.Pid,
278278
PayloadID: client.MythicID.String(), // Need to set now because it will be changed to tempUUID from RSA key exchange
279279
Arch: agent.SysInfo.Architecture,
280280
Domain: agent.SysInfo.Domain,

clients/mythic/structs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ type CheckIn struct {
5353
OS string `json:"os"` // "os": "macOS 10.15", // os version - required
5454
User string `json:"user"` // "user": "its-a-feature", // username of current user - required
5555
Host string `json:"host"` // "host": "spooky.local", // hostname of the computer - required
56-
PID string `json:"pid"` // "pid": 4444, // pid of the current process - required
56+
PID int `json:"pid"` // "pid": 4444, // pid of the current process - required
5757
PayloadID string `json:"uuid"` // "uuid": "payload uuid", //uuid of the payload - required
5858
Arch string `json:"architecture,omitempty"` // "architecture": "x64", // platform arch - optional
5959
Domain string `json:"domain,omitempty"` // "domain": "test", // domain of the host - optional

core/core.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var Verbose = false
2828
var Debug = false
2929

3030
// Version is the Merlin Agent's version number
31-
var Version = "1.6.2"
31+
var Version = "1.6.3"
3232

3333
// Mutex is used to ensure exclusive access to STDOUT & STDERR
3434
var Mutex = &sync.Mutex{}

docs/CHANGELOG.MD

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 1.6.3 - 2023-03-15
8+
9+
### Fixed
10+
11+
- [Issue 25](https://github.com/Ne0nd0g/merlin-agent/issues/25) - Updated Mythic CheckIn structure's PID to integer
12+
713
## 1.6.2 - 2023-03-08
814

915
### Fixed

0 commit comments

Comments
 (0)