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.
holy-stars
Advanced tools
import 'holy-stars/index.css'
import { HolyStars } from 'holy-stars'
const stars = new HolyStars({
el: document.getElementById('stars'),
rate: 4.4,
size: 16,
primaryColor: '#FFE135',
secondColor: '#ddd',
})
stars.update({
rate: 4,
size: 24,
})
import { HolyStars, HolyRender } from 'holy-stars'
const renderTemplate = ({size = 12, primaryColor, secondColor}, offset = 1) => {
return `
<div class="holy-stars__entity" style="width: ${size}px; height: ${size}px">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 ${24 * offset} 24" width="${size * offset}" height="${size}">
<path fill="${primaryColor}" d="M12 .587l3.668 7.568 8.332 1.151-6.064 5.828 1.48 8.279-7.416-3.967-7.417 3.967 1.481-8.279-6.064-5.828 8.332-1.151z"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="${size}" height="${size}">
<path fill="${secondColor}" d="M12 .587l3.668 7.568 8.332 1.151-6.064 5.828 1.48 8.279-7.416-3.967-7.417 3.967 1.481-8.279-6.064-5.828 8.332-1.151z"/>
</svg>
</div>`
}
const render = new HolyRender(renderTemplate)
const stars1 = new HolyStars({
el: document.getElementById('stars1'),
rate: 4.4,
size: 16,
primaryColor: '#FFE135',
secondColor: '#ddd',
}, render)
const stars2 = new HolyStars({
el: document.getElementById('stars2'),
rate: 4.4,
size: 16,
primaryColor: '#FFE135',
secondColor: '#ddd',
}, render)
FAQs
Simple stars widget
The npm package holy-stars receives a total of 166 weekly downloads. As such, holy-stars popularity was classified as not popular.
We found that holy-stars 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.