
Research
/Security News
60 Malicious Ruby Gems Used in Targeted Credential Theft Campaign
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
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 RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.