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/flip-id/sms-zenziva
Package zenziva is a library to use the Zenziva service. This library uses Hystrix client as its underlying HTTP client.
To show the documentation of the package, we can check the code directly or by running this command:
make doc
This will open the package documentation in local.
We can access it in http://localhost:6060/pkg/github.com/flip-id/sms-zenziva
.
This library can be used based on the example shown in the URL below:
http://localhost:6060/pkg/github.com/flip-id/sms-zenziva/#example_NewV1
Script:
package main
import (
"fmt"
"log"
"net/http"
)
func main() {
c, err := NewV1(
WithUserKey("userkey"),
WithPasswordKey("passwordkey"),
WithClient(http.DefaultClient),
)
if err != nil {
log.Fatal(err)
}
resp, err := c.SendSMSV1(RequestSendSMSV1{
PhoneNumber: "+6281001002003",
Text: "Hello Zenziva!",
})
if err != nil {
log.Fatal(err)
}
fmt.Printf("Resp: %+v\n", resp)
}
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.