
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
github.com/k0sproject/dig
A simple zero-dependency go package that provides a Ruby-like Hash.dig
mechanism for map[string]any
, which in YAML is refered to as "Mapping".
The provided dig.Mapping
is handy when unmarshaling arbitrary YAML/JSON documents.
package main
import (
"fmt"
"github.com/k0sproject/dig"
"gopkg.in/yaml.v2"
)
var yamlDoc = []byte(`---
i18n:
hello:
se: Hejsan
fi: Moi
world:
se: Värld
fi: Maailma
`)
func main() {
m := dig.Mapping{}
if err := yaml.Unmarshal(yamlDoc, &m); err != nil {
panic(err)
}
// You can use DigMapping to access a deeply nested map and set values.
// Any missing Mapping level in between will be created.
m.DigMapping("i18n", "hello")["es"] = "Hola"
m.DigMapping("i18n", "world")["es"] = "Mundo"
langs := []string{"fi", "se", "es"}
for _, l := range langs {
// You can use Dig to access a deeply nested value
greeting := m.Dig("i18n", "hello", l).(string)
// ..or DigString to avoid having to cast it to string.
target := m.DigString("i18n", "world", l)
fmt.Printf("%s, %s!\n", greeting, target)
}
}
Output:
Moi, Maailma!
Hejsan, Värld!
Hola, Mundo!
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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.