
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
github.com/bowery/gorc
A golang client for Orchestrate.io
Supports go 1.1 or later
Go Style Documentation: http://godoc.org/github.com/orchestrate-io/gorc
Usage examples
// Import the client
import "github.com/orchestrate-io/gorc"
// Create a client
c := gorc.NewClient("Your API Key")
// Get a value
result, _ := c.Get("collection", "key")
// Marshall value into a map
valueMap := make(map[string]interface{})
result.Value(&valueMap)
// Marshall value into a domain type
domainObject := DomainObject{}
result.Value(&domainObject)
// Put a serialized value
c.PutRaw("collection", "key", strings.NewReader("Some JSON"))
// Put a interface{} type
group := Group{Name: "name", Founded: 1990}
c.Put("collection", "key", group)
// Search
results, _ := c.Search("collection", "A Lucene Query", 100, 0)
// Marshall (search/event/graph) results into an array of domain objects
var values []DomainObject{} = make([]DomainObject{}, len(results.Results))
for i, result := range results.Results {
result.Value(&values[i])
}
// Get next page of results
if results.HasNext() {
results, err := c.SearchGetNext(results)
}
// Get Events
events, _ := c.GetEvents("collection", "key", "kind")
// Put Events
c.PutEvent("collection", "key", "kind", domainObject)
c.PutEventRaw("collection", "key", "kind", strings.NewReader(serializedJson))
// Get Relations
relations, _ := c.GetRelations("collection", "key", []string{"kind", "kind"})
// Put Relation
c.PutRelation("sourceCollection", "sourceKey", "kind", "sinkCollection", "sinkKey")
// Get a value at a particular ref
valueAtRef := c.GetRef("collection", "key", "ref")
// List the last 10 values of a collection-key pair
valueHistory := c.ListRefs("collection", "key", 10, true)
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
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.