
Research
/Security News
Bitwarden CLI Compromised in Ongoing Checkmarx Supply Chain Campaign
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.
gitlab.com/mjwhitta/safety
Advanced tools
This Go module provides some thread-safe utilities.
Open a terminal and run the following:
$ go get --ldflags="-s -w" --trimpath -u gitlab.com/mjwhitta/safety
package main
import (
hl "gitlab.com/mjwhitta/hilighter"
"gitlab.com/mjwhitta/safety"
)
func main() {
var m *safety.Map = safety.NewMap()
var s *safety.Set = safety.NewSet()
var sl *safety.Slice = safety.NewSlice()
// Maps
m.Put("a", "asdf")
m.Put("b", "blah")
m.Put("s", "stop")
m.Put("t", "test")
m.Range(
func(k, v interface{}) bool {
switch v.(string) {
case "stop":
return true
}
hl.Printf("%s = %s\n", k.(string), v.(string))
return false
},
)
hl.Println(m.Keys())
// Sets
s.Add("asdf")
s.Add("blah")
s.Add("stop")
s.Add("test")
s.Range(
func(entry interface{}) bool {
switch entry.(string) {
case "stop":
return true
}
hl.Printf("Set includes: %s\n", entry.(string))
return false
},
)
hl.Println(s.Get())
// Slices
sl.Append("asdf")
sl.Append("blah")
sl.Append("stop")
sl.Append("test")
sl.Range(
func(i int, v interface{}) bool {
switch v.(string) {
case "stop":
return true
}
hl.Printf("Slice %d: %s\n", i, v.(string))
return false
},
)
hl.Println(sl.Get(0))
}
FAQs
Unknown package
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.

Research
/Security News
Docker and Socket have uncovered malicious Checkmarx KICS images and suspicious code extension releases in a broader supply chain compromise.

Product
Stay on top of alert changes with filtered subscriptions, batched summaries, and notification routing built for triage.