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.
:bangbang: Work in progress. The API will be changed. Do not use it. Really. :bangbang:
Image-fns provides toolset for manipulating images in a browser
npm install image-fns
or
yarn add image-fns
const input = document.querySelector('#file')
const preview = document.querySelector('#result')
input.addEventListener('change', e =>
fromFile(e.target.files[0])
.then(canvas => shrink(canvas, 300, 300))
.then(canvas => Promise.all([canvas, hasTransparency(canvas)]))
.then(([canvas, isTransparent]) =>
toImage(canvas, isTransparent ? 'png' : 'jpeg', 0.1)
)
.then(append)
)
const append = node => preview.appendChild(node)
const convertToBetterFormat = async file => {
const [formats, canvas] = await Promise.all([
getSupportedFormats(),
fromFile(file),
])
let format = 'jpeg'
if (formats.includes('webp')) {
format = 'webp'
} else if (hasTransparency(canvas)) {
format = 'png'
}
return toFile({ name: file.name, format, quality: 0.8 }, canvas)
}
input.addEventListener('change', async e => {
const file = await convertToBetterFormat(e.target.files[0])
sendToServer(file)
})
If you think you ran into something in Uploadcare libraries which might have security implications, please hit us up at bugbounty@uploadcare.com or Hackerone.
We'll contact you personally in a short time to fix an issue through co-op and prior to any public disclosure.
Issues and PR‘s are welcome. You can provide your feedback or drop us a support request at hello@uploadcare.com.
1.0.0-alpha
The first public alpha release.
shrink
function to shrink any image.canvas
hasTransparency
functionFAQs
## Project Status
The npm package image-fns receives a total of 0 weekly downloads. As such, image-fns popularity was classified as not popular.
We found that image-fns 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.