Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
github.com/blasphemy/sitemapper
simple site mapping library for go
Super simple usage example:
package main
import (
"fmt"
"log"
"github.com/blasphemy/sitemapper"
)
func main() {
m := sitemapper.NewMapper()
m.AddURL("http://yoursite.com/whatever")
m.AddURL("https://yoursite.com/whatever-article-2")
x, err := m.GenerateXML()
if err != nil {
log.Fatal(err.Error())
}
fmt.Println(string(x))
}
Output for above example:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>http://yoursite.com/whatever</loc>
</url>
<url>
<loc>https://yoursite.com/whatever-article-2</loc>
</url>
</urlset>
As you can tell, this literally does the bare minimum, setting the <loc>
of a URL and that's it. That's all I need for my implementation, but if there is interest I will add other attributes, like priority, and last updated.
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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.