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.
@mulgul/garmin-wrapper-ts
Advanced tools
Thw following library is wrapper around the Garmin IPCBound API. Garmin has two specific API's - The IPC Inbound API, and the IPC Outbound API. This API focuses on giving the tools to access these exact api's with ease. Currently this wrapper focuses on Inbound requests. Outbound service requires more than the scope of this library offers.
InboundGarminWrapper
import { InboundGarminWrapper } from '@mulgul/garmin-wrapper-ts';
const credentials = {
username: process.env.USERNAME,
password: process.env.PASSWORD
};
const ipcUrl = process.env.IPCURL;
const imei = process.env.IMEI;
const api = new InboundGarminWrapper(ipcUrl, credentials, imei);
let data;
try {
data = await api.getTrackingVersion();
} catch (e) {
console.error(e)
}
options
All api calls take in an option param of type RequestInit
. These contain basic header options etc.
await api.getTrackingVersion({
body: 'foo',
headers: {
...
}
});
The source code in this repository is distributed under the Apache-2.0 license. See the file.
This source code comes with absolutely no warranty. Use at your own risk.
FAQs
Unknown package
The npm package @mulgul/garmin-wrapper-ts receives a total of 0 weekly downloads. As such, @mulgul/garmin-wrapper-ts popularity was classified as not popular.
We found that @mulgul/garmin-wrapper-ts 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.