Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
gopkg.in/pfnet/jasco.v1
jasco is a compact library to build a JSON API server. It's written in Go and built on github.com/gocraft/web.
jasco requires Go 1.4.2 or later.
$ go get gopkg.in/pfnet/jasco.v1
example.go
:
package main
import (
"net/http"
"github.com/gocraft/web"
"gopkg.in/pfnet/jasco.v1"
)
type Context struct {
*jasco.Context
}
func (c *Context) Get(rw web.ResponseWriter, req *web.Request) {
c.Render(map[string]interface{}{
"hello": "world",
"num": 10,
"obj": map[string]interface{}{
"a": 1,
"b": "2",
"c": []interface{}{3.4, "5"},
},
})
}
func (c *Context) Echo(rw web.ResponseWriter, req *web.Request) {
var js map[string]interface{}
if err := c.ParseBody(&js); err != nil {
c.ErrLog(err.Err).Error("Cannot parse the request body")
c.RenderError(err)
return
}
c.Render(js)
}
func main() {
root := jasco.New("", nil)
router := root.Subrouter(Context{}, "/")
router.Get("/", (*Context).Get)
router.Post("/", (*Context).Echo)
http.ListenAndServe(":10080", root)
}
Run the example:
$ go run sample.go
Test:
$ curl http://localhost:10080/
{"hello":"world","num":10,"obj":{"a":1,"b":"2","c":[3.4,"5"]}}
$ curl -XPOST -d'{"test":"data"}' http://localhost:10080/
{"test":"data"}
jasco uses github.com/sirupsen/logrus as a logger. Pass a logger that the
application uses to jasco.New
. By default, the default logger of logrus will
be used.
Context.AddLogField("field", value)
adds a field to be logged by logrus.
Because gocraft/web creates a context for each request, a field added to
the context is only available while the request is being processed.
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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
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.