Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
kubernetes-probes
Advanced tools
Library for an express listener on specified port to expose an http probe endpoint that kubelet can use to check container status.
var k8sProbes = require('kubernetes-probes');
k8sProbes.addReadinessFunction(alive);
k8sProbes.addLivenessFunction(ready);
k8sProbes.listen(80);
//
// Readiness function
var ready = function(cb) {
cb(true, "I am ready.");
};
//
// Liveness function
var alive = function(cb) {
cb(true, "I am alive.");
};
addReadinessFunction(alive, name)
alive
- [REQUIRED] - function(cb).
Called by kubernetes-probes when kubernetes requests a liveness probe.
If this function is not defined, kubernetes-probes response will be "liveness function undefined." with status 400.
cb
- [REQUIRED] - function(isAlive, message).
Called to return liveness state to kubernetes-probes.
isAlive
- [REQUIRED] - boolean.
TRUE indicates alive, response status is 200.
FALSE indicates not alive, response status is 400.message
- [OPTIONAL] - string.
returned in response to probe.
isAlive
TRUE - "alive".isAlive
FALSE - "dead".name
- [OPTIONAL] - string.
Name of this particular aspect of being ready. Default is "All".addLivenessFunction(ready, name)
ready
- [REQUIRED] - function(cb).
Called by kubernetes-probes when kubernetes requests a readiness probe.
If this function is not defined, kubernetes-probes response will be "readiness function undefined." with status 400.
cb
- [REQUIRED] - function(isReady, message).
Called to return liveness state to kubernetes-probes.
isReady
- [REQUIRED] - boolean.
TRUE indicates ready, response status is 200.
FALSE indicates not ready, response status is 400.message
- [OPTIONAL] - string.
returned in response to probe.
isAlive
TRUE - "ready".isAlive
FALSE - "not ready".name
- [OPTIONAL] - string.
Name of this particular aspect of being lively. Default is "All".listen(port)
port
- [REQUIRED] - integer.
kubernetes-probes will start listening on this port.FAQs
Listener for health probes from kubernetes.
The npm package kubernetes-probes receives a total of 0 weekly downloads. As such, kubernetes-probes popularity was classified as not popular.
We found that kubernetes-probes 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.