File tree Expand file tree Collapse file tree
C2_Profiles/basic_webhook Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ package my_webhooks
2+
13import (
24 "bytes"
35 "encoding/json"
46 "fmt"
57 "net/http"
68 "strings"
9+
710 "github.com/MythicMeta/MythicContainer/webhookstructs"
811)
12+
913type GoogleChatMessage struct {
1014 Text string `json:"text,omitempty"`
1115}
16+
1217func sendGoogleChatMessage (webhookURL string , msg webhookstructs.SlackWebhookMessage ) error {
1318 var builder strings.Builder
1419 for _ , att := range msg .Attachments {
Original file line number Diff line number Diff line change 66 "github.com/MythicMeta/MythicContainer/webhookstructs"
77)
88
9- const version = "0.0.3 "
9+ const version = "0.0.4 "
1010
1111func Initialize () {
1212 myWebhooks := webhookstructs.WebhookDefinition {
You can’t perform that action at this time.
0 commit comments