Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
kitchen-nodes-lobatoa
Advanced tools
A Test Kitchen Provisioner that generates searchable Nodes.
The nodes provisioner extends the chef-zero
provisioner along with all of its functionality and configuration. chef-zero
can support chef searches by querying against node data stored in json files inside of the kitchen nodes
folder. The kitchen-nodes
plugin automatically generates a node file when a test instance is provisioned by test-kitchen.
{
"id": "server-community-ubuntu-1204",
"automatic": {
"ipaddress": "172.17.0.8",
"platform": "ubuntu",
"recipes": [
"apt::default",
"couchbase-tests::ipaddress",
"couchbase::server",
"export-node"
]
},
"normal": {
"attr1": "val1"
}
"run_list": [
"recipe[apt]",
"recipe[couchbase-tests::ipaddress]",
"recipe[couchbase::server]",
"recipe[export-node]"
]
}
{
"id": "second-node-ubuntu-1204",
"automatic": {
"ipaddress": "172.17.0.9",
"platform": "ubuntu",
"recipes": [
"apt::default",
"couchbase-tests::ipaddress",
"couchbase::server",
"export-node"
]
},
"run_list": [
"recipe[apt]",
"recipe[couchbase-tests::ipaddress]",
"recipe[couchbase-tests::default]",
"recipe[export-node]"
]
}
The node data includes the node id based on the test-kitchen suite name, the run list assigned to the node, the normal attributes included in the .kitchen.yml
file, the externally reachable ip address and the platform of the test instance os.
gem install kitchen-nodes
Use nodes
instead of chef-zero
for the kitchen provisioner name.
provisioner:
name: nodes
Using kitchen-nodes
one can expect all previously converged nodes to be represented in a node file and be searchable. For example consider this scenario looking for a primary node in a cluster in order to add a node to join:
require 'timeout'
def search_for_nodes(query, timeout = 120)
nodes = []
Timeout::timeout(timeout) do
nodes = search(:node, query)
until nodes.count > 0 && nodes[0].has_key?('ipaddress')
sleep 5
nodes = search(:node, query)
end
end
if nodes.count == 0 || !nodes[0].has_key?('ipaddress')
raise "Unable to find nodes!"
end
nodes
end
primary = search_for_nodes("run_list:*couchbase??server* AND platform:#{node['platform']}")
node.normal["couchbase-tests"]["primary_ip"] = primary[0]['ipaddress']
When using kitchen-nodes with the vagrant driver, make sure you add the following to your driver_config
:
network:
- ["private_network", { type: "dhcp" }]
This will add an additional non-NAT NIC to your vagrant box with an IP reachable from the host and other test nodes.
ipaddress
different from my node ipaddress on vagrant with VirtualBox?Ohai will pick up the localhost ipaddress on vagrant boxes using virtualbox. To reset the node["ipaddress"]
to the reachable ip, add hurry-up-and-test::set_non_nat_vbox_ip
to the top of your run_list
.
suites:
- name: my-suite
run_list:
- recipe[hurry-up-and-test::set_non_nat_vbox_ip]
- recipe[cookbook-under-test]
You can add this even if you do not use virtualbox and the recipe will do nothing.
Pull requests are very welcome! Make sure your patches are well tested. Ideally create a topic branch for every separate change you make. For example:
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)Created and maintained by Matt Wrock (matt@mattwrock.com)
Apache 2.0 (see LICENSE)
FAQs
Unknown package
We found that kitchen-nodes-lobatoa demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.