Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
github.com/justblender/vk-api
vk-api is a simple Golang package that provides tools to interact with VK API. Supports authentication using login and password or by passing an access token right into the app, as well as long polling. More features yet to come, probably gonna turn this into a full SDK.
go get -t github.com/justblender/vk-api
package main
import (
"os"
"github.com/justblender/vk-api"
)
func main() {
// Use either one of three types: NoAuthentication, DirectAuthentication and ClientCredentialsFlow
client, err := vk_api.NewClient(vk_api.DirectAuthentication{
Username: os.Getenv("username"),
Password: os.Getenv("password"),
Device: vk_api.ANDROID,
})
if err != nil {
panic("Couldn't authenticate, sad!")
}
parameters := vk_api.RequestParameters{
"user_id": 1,
"message": "Pasha, bring back the wall!",
}
if _, err = client.Request("messages.send", parameters); err != nil {
panic("Pasha couldn't bring back the wall")
}
}
// don't forget about the previously created Client!..
longPoll, err := client.NewLongPoll()
if err != nil {
panic("Couldn't create a new LongPoll")
}
for {
messages, err := longPoll.Poll()
if err != nil {
panic("Some bad error occurred")
}
for _, message := range messages {
if message.HasFlag(vk_api.FLAG_CHAT) {
fmt.Printf("New message from chat %d: %s\n", message.PeerID, message.Text)
}
}
}
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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.