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.
github.com/andreyvit/locateimage
Performs an (exact or fuzzy) search of a sample image within a larger image, returning the coordinates and similarity scores of the matches.
This package contains a Go module, so in Go 1.11+ module mode you can import it directly. Otherwise do:
go get -u github.com/andreyvit/locateimage
See godoc.org/github.com/andreyvit/locateimage for a full reference.
All
locates all matches:
mm, err := locateimage.All(context.Background(), canvas, sample, 0.04)
if err != nil {
log.Fatal(err)
}
log.Print(mm)
Find
locates a single match:
m, err := locateimage.Find(context.Background(), canvas, sample, 0, locateimage.Fastest)
if err != nil {
log.Print(err)
} else {
log.Printf("sample found at %v, similarity = %.*f%%", m.Rect, locateimage.SimilarityDigits-2, 100*m.Similarity)
}
Find
returns ErrNotFound
if no match is found. Available selection modes are Fastest
, Best
and Only
.
Foreach
invokes a callback for each match:
err = locateimage.Foreach(context.Background(), canvas, sample, 0.04, func(m locateimage.Match) error {
log.Print(m)
return nil
})
if err != nil {
log.Fatal(err)
}
The package currently only deals with image.RGBA
-encoded images. You can use Convert
to convert any image to this format. (Note that reading a PNG file returns an NRGBA format, so the conversion will be required. It makes sense to add support for formats like NRGBA in the future.)
The search is currently slow, taking tens or hundreds of milliseconds on large images (screenshots of a 27" screen). This can likely be improved, and contributions are welcome.
None currently.
FAQs
Unknown package
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.