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.
@atlassian-partner-engineering/atlassian-html-to-gmail
Advanced tools
import { truncate } from '@atlassian-partner-engineering/atlassian-html-to-gmail'
const html = '<p>external <a href="http://example.com">link to the resource</a></p>'
truncate(html, 16) // <p>external <a href="http://example.com">link...</a></p>
baseUrl
only for Jira description field)import { convert } from '@atlassian-partner-engineering/atlassian-html-to-gmail'
const html = '<p><em>external</em> <a href="http://example.com">link to the resource</a></p>'
convert(html, { baseUrl: 'https://example.atlassian.net' }) // <p><i>external</i> <a href=\"http://example.com\">link to the resource</a></p>
import { convert, truncate } from '@atlassian-partner-engineering/atlassian-html-to-gmail'
const html = '<p><em>external</em> <a href="http://example.com">link to the resource</a></p>'
truncate(convert(html), 16) // <p><i>external</i> <a href="http://example.com">link...</a></p>
import { transformHtmlToText } from '@atlassian-partner-engineering/atlassian-html-to-gmail'
const html = '<p><em>external</em> <a href="http://example.com">link to the resource</a></p>'
transformHtmlToText(html) // external link to the resource
> npm test
> npm run build
> npm version
> npm publish --access public
FAQs
## Usage
The npm package @atlassian-partner-engineering/atlassian-html-to-gmail receives a total of 0 weekly downloads. As such, @atlassian-partner-engineering/atlassian-html-to-gmail popularity was classified as not popular.
We found that @atlassian-partner-engineering/atlassian-html-to-gmail demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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.