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.
visibilityobserver
Advanced tools
Experimental API for observing the visible box of an element
Note: This implementation currently has some serious performance problems when observing many elements or elements deeply nested in the DOM. It's based on
requestAnimationFrame()
,getComputedStyle()
, andgetBoundingClientRect()
which can cause additional "layouts" to happen on every frame. In the future this library could be refactored to useResizeObserver
,MutationObserver
,IntersectionObserver
, and scroll events in order to be much more performant.
npm install --save visibilityobserver
import VisibilityObserver from "visibilityobserver"
let visibilityObserver = new VisibilityObserver((entries) => {
for (let entry of entries) {
if (entry.visibleRect) {
highlightElem.style.display = "block"
highlightElem.style.top = entry.visibleRect.top + "px"
highlightElem.style.left = entry.visibleRect.left + "px"
highlightElem.style.width = entry.visibleRect.width + "px"
highlightElem.style.height = entry.visibleRect.height + "px"
} else {
highlightElem.style.display = "none"
}
}
})
visibilityObserver.observe(divElem)
FAQs
Experimental API for observing the visible box of an element.
The npm package visibilityobserver receives a total of 1 weekly downloads. As such, visibilityobserver popularity was classified as not popular.
We found that visibilityobserver 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.