
Security News
New CNA Scorecard Tool Ranks CVE Data Quality Across the Ecosystem
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
github.com/jmichiels/tree
This golang package creates a nice tree representation of your data:
First Root Node (1)
├── A child node (11)
├── Another child node (12)
│ └── A child child node (121)
│ └── A child child child node (1211)
└── Yet another one (13)
Second Root Node (2)
└── Yet another child node (21)
Just create a type for your tree which implements the tree.Tree
interface (see for example the TestTree
type used for testing):
type Tree interface {
// Returns the top level nodes.
RootNodes() []Node
// Returns the children of the provided node.
ChildrenNodes(Node) []Node
}
Then, provide an instance of this type to tree.String
or tree.Write
, depending if you prefer the whole tree as a string or progressively written to the output via an io.Writer
.
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.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.