Skip to content

Commit ba206fc

Browse files
committed
bumping version
1 parent 7f7cbed commit ba206fc

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

C2_Profiles/basic_webhook/CHANGELOG.MD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [v0.0.4] - 2026-03-03
2+
3+
### Changed
4+
5+
- Merged in support for Google Chat
16

27
## [v0.0.3] - 2025-12-03
38

C2_Profiles/basic_webhook/my_webhooks/google_chat.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
1+
package my_webhooks
2+
13
import (
24
"bytes"
35
"encoding/json"
46
"fmt"
57
"net/http"
68
"strings"
9+
710
"github.com/MythicMeta/MythicContainer/webhookstructs"
811
)
12+
913
type GoogleChatMessage struct {
1014
Text string `json:"text,omitempty"`
1115
}
16+
1217
func sendGoogleChatMessage(webhookURL string, msg webhookstructs.SlackWebhookMessage) error {
1318
var builder strings.Builder
1419
for _, att := range msg.Attachments {

C2_Profiles/basic_webhook/my_webhooks/initialize.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/MythicMeta/MythicContainer/webhookstructs"
77
)
88

9-
const version = "0.0.3"
9+
const version = "0.0.4"
1010

1111
func Initialize() {
1212
myWebhooks := webhookstructs.WebhookDefinition{

0 commit comments

Comments
 (0)