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.
@neoskop/aviation-client
Advanced tools
This library enables you to check against an Aviation Server whether a feature is supposedly enabled or not.
To add the library to your project:
$ yarn add @neoskop/aviation-client
To check for a feature:
let client: AviationClient = aviation().endpoint('http://localhost:8080').token('sup3rs3cr3t').mix();
client.feature('test-feature-1').then(f => {
if (f.enabled) {
console.log('feature is enabled!');
} else {
console.log('feature is disabled!');
}
}).catch(() => {
console.log('could not retrieve feature from server!');
});
To run integration tests in case you checked out the repository (awesome!):
$ docker-compose -f docker-compose.test.yml up --abort-on-container-exit --build
FAQs
![Aviation](https://bytebucket.org/neoskop/aviation-client-typescript/raw/master/logo.png)
We found that @neoskop/aviation-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.