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.
@owlnext/hel-js
Advanced tools
Redmine bugtracker API interfaces & utils for javascript technologies
A Javascript/Node/React API interface to Redmine bugtracker and easily add issues.
Statements | Branches | Functions | Lines | Build Status |
---|---|---|---|---|
npm -i --save @owlnext/hel-js
import Hel from '@owlnext/hel-js';
// ...
const hel: Hel = new Hel({
api_url: 'https://...', // base URL for redmine api
api_key: 'qsd5f4tye85rq...', // api token for redmine api
project_id: 1 // redmine project id for issue reporting
});
let issue: Issue;
try {
issue = await hel.createIssue({
subject: "Error happens",
description: "Some issue happened...",
reporter_identity: "Admin Istrator",
});
} catch (error) {
// treat errors.
}
const screenshot_content: string = '/** the image content as base64 string **/'
let issue: Issue;
try {
issue = await hel.createIssue({
subject: "Error happens",
description: "Some issue happened...",
reporter_identity: "Admin Istrator",
screenshots: [
{
name: 'screenshot_example.jpg',
content: screenshot_content,
content_type: 'image/jpeg'
}
]
});
} catch (error) {
// treat errors.
}
const screenshot_content: string = '/** the image content as base64 string **/'
let issue: Issue;
try {
issue = await hel.createIssue({
description: "test w screenshot",
reporter_identity: "Obi-Wan Kenobi",
subject: "test w screenshot",
url: "http://localhost:8822",
session_data: "{'session_id': 43531551}",
stack_trace: " at /var/www/src/hel.ts:69:23\n" +
" at processTicksAndRejections (internal/process/task_queues.js:95:5)\n",
additional_data: {
"foo": "bar"
},
screenshots: [
{
name: 'screenshot_ex.jpg',
content: screenshot_content,
content_type: 'image/jpeg'
}
]
});
} catch (error) {
// treat errors.
}
This module is under MIT license.
Hel (Old Norse: [ˈhel]) is a female being in Norse mythology who is said to preside over an underworld realm of the same name, where she receives a portion of the dead.
Wikipedia
FAQs
Redmine bugtracker API interfaces & utils for javascript technologies
The npm package @owlnext/hel-js receives a total of 2 weekly downloads. As such, @owlnext/hel-js popularity was classified as not popular.
We found that @owlnext/hel-js 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.