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/asim/go-micro/plugins/client/http/v4
This plugin is a http client for go-micro.
The http client wraps net/http
to provide a robust go-micro client with service discovery, load balancing and streaming.
It complies with the go-micro.Client interface.
import "github.com/asim/go-micro/plugins/client/http"
service := micro.NewService(
micro.Name("my.service"),
micro.Client(http.NewClient()),
)
import _ "github.com/asim/go-micro/plugins/client/http"
go run main.go --client=http
Assuming you have a http service "my.service" with path "/foo/bar"
// new client
client := http.NewClient()
// create request/response
request := client.NewRequest("my.service", "/foo/bar", protoRequest{})
response := new(protoResponse)
// call service
err := client.Call(context.TODO(), request, response)
Look at http_test.go for detailed use.
Default protobuf with content-type application/proto
client.NewRequest("service", "/path", protoRequest{})
Json with content-type application/json
client.NewJsonRequest("service", "/path", jsonRequest{})
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.