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/sayden/groph
A WIP simple database library written in Go
This is more like a research project around an idea I had of making queries on a simple using callbacks than a serious simple database ready for production use.
You can load data in the graph by usin JSON or YAML data in "triples" format or a more advanced "extended" format:
go get -u github.com/sayden/groph
TODO
An example YAML simple format file:
- vertex: start
edge: goes to
d_vertex: B
- vertex: A
edge: goes to
d_vertex: finish
- vertex: A
edge: goes to
d_vertex: B
- vertex: B
edge: goes to
d_vertex: finish
- vertex: B
edge: goes to
d_vertex: A
- vertex: finish
edge: goes to
d_vertex: start
As you can see you just have to declare the source vertex, the destination vertex and an ID for the edge that connects them.
The JSON equivalent file would be like this:
[
{ "vertex": "start", "edge": "goes to", "d_vertex": "B" },
{ "vertex": "A", "edge": "goes to", "d_vertex": "finish" },
{ "vertex": "A", "edge": "goes to", "d_vertex": "B" },
{ "vertex": "B", "edge": "goes to", "d_vertex": "finish" },
{ "vertex": "B", "edge": "goes to", "d_vertex": "A" },
{ "vertex": "finish", "edge": "goes to", "d_vertex": "start" }
]
In the case of the extended format:
- vertex:
id: start
data:
description: starting point
edge:
id: goes to
data:
description: data in some edge
weight: 52.3
d_vertex:
id: A
- vertex:
id: A
edge:
id: goes to
weight: 52.3
d_vertex:
id: finish
- vertex:
id: A
edge:
id: goes to
d_vertex:
id: B
- vertex:
id: B
edge:
id: goes to
d_vertex:
id: A
- vertex:
id: B
edge:
id: goes to
weight: 52.3
d_vertex:
id: finish
In the extended format each vertex and edge can contain a "data" key with any value that you can consider inside. In this case the ID field is mandatory on each node of the YAML / JSON.
And the JSON equivalent:
[
{
"vertex": { "id": "start", "data":{ "description":"starting point" } },
"edge": { "id": "goes to", "data":{ "description":"data in some edge" }, "weight":52.3 },
"d_vertex":{ "id": "A" }
},
{
"vertex": { "id": "A" },
"edge": { "id": "goes to", "weight":52.3 },
"d_vertex":{ "id": "finish"}
},
{
"vertex": { "id": "A" },
"edge": { "id": "goes to" },
"d_vertex":{ "id": "B"}
},
{
"vertex": { "id": "B" },
"edge": { "id": "goes to" },
"d_vertex":{ "id": "A"}
},
{
"vertex": { "id": "B" },
"edge": { "id": "goes to", "weight":52.3 },
"d_vertex":{ "id": "finish"}
}
]
If you want a rock-solid simple database written in Go check Cayley
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.