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/selectel/craas-go
Package craas-go provides Go SDK to work with the Selectel Container Registry Service.
The Go library documentation is available at go.dev.
You can use this library to work with the following objects of the Selectel Container Registry Service:
You can install needed craas-go
packages via go get
command:
go get github.com/selectel/craas-go/pkg/v1/registry
To work with the Selectel Container Registry API you first need to:
Selectel Container Registry Service currently has the following API endpoints:
URL |
---|
https://cr.selcloud.ru/api/v1 |
package main
import (
"context"
"fmt"
"log"
v1 "github.com/selectel/craas-go/pkg"
"github.com/selectel/craas-go/pkg/v1/registry"
"github.com/selectel/craas-go/pkg/v1/repository"
)
func main() {
// Token to work with Selectel Cloud project.
token := "gAAAAABeVNzu-..."
// CRaaS endpoint to work with.
endpoint := "https://cr.selcloud.ru/api/v1"
// Create a new CRaaS client.
crClient := v1.NewCRaaSClientV1(token, endpoint)
// Prepare empty context.
ctx := context.Background()
// Create a new registry.
createdRegistry, _, err := registry.Create(ctx, crClient, "my-registry")
if err != nil {
log.Fatal(err)
}
// Print the registry fields.
fmt.Printf("Created registry: %+v", createdRegistry)
// Get a list of registry repositories.
repositories, _, err := repository.ListRepositories(ctx, crClient, createdRegistry.ID)
if err != nil {
log.Fatal(err)
}
// Print the repository fields.
for _, repo := range repositories {
fmt.Printf("Repository: %+v", repo)
}
}
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.