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/OmerBerkcanMee/xml
Package github.com/m29h/xml
implements a XML 1.0 marshaler that is a drop in encoding/xml
replacement maintaining full interface compatibility to it but aims to producing C14N Exclusive XML Canonicalization compatible byte sequences. This includes sorting of all rendered element attributes as per the C14N-XML spec.
A Struct defined in the normal way as known from encoding/xml
type Person struct {
XMLName xml.Name `xml:"http://example.com/ns1 person"`
Name string `xml:"name"`
Phone string `xml:"http://example.com/ns2 phone,omitempty"`
}
is marshaled to
<ns1:person xmlns:ns1="http://example.com/ns1">
<ns1:name>Foo</ns1:name>
<ns2:phone xmlns:ns2="http://example.com/ns2">123</ns2:phone>
</ns1:person>
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.