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/friendsofgo/errors
This package is a fork from github.com/pkg/errors package created by Dave Cheney. The original package has no longer accepting proposals for new functionality.
With the new errors on go 1.13, the way to using the errors on Go has some changes that can be applied into Dave Cheney library. We want to offer one way to migrate your code to new errors, but with the minimum refactor, for that we've created this package.
This package provide the same interface that the original library have, but using new go 1.13 errors, or in previous version golang.org/x/xerrors package.
If you previously was using the package github.com/pkg/errors, you only need
change your imports for github.com/friendsofgo/errors, with this simple change now you're capable to use
go 1.13 in your code, and use the new methods As
and Is
if you want.
Furthermore the method Wrap
Wrapf become compatible with
Unwrap` interface of new go 1.13 errors.
With the original package go 1.13 if you want add context, ergo wrap your error you need to create a new error and using the new verb `"%w" like that:
_, err := ioutil.ReadAll(r)
if err != nil {
return fmt.Errorf("read failed: %w", err)
}
Using our library you can do that forgetting to the new verb:
_, err := ioutil.ReadAll(r)
if err != nil {
return errors.Wrap(err, "read failed")
}
We want to keep the compatibility with the github.com/pkg/errors package, for that
our package provides a Cause
method, but this method is not longer needed, because we can use the new methods Is
or As
that provides the official package.
So previously if you needed to check an error cause, your error must be implemented the causer
inteface:
type causer interface {
Cause() error
}
errors.Cause
will recursively retrieve the topmost error which does not implement causer, which is assumed to be the original cause. For example:
switch err := errors.Cause(err).(type) {
case *MyError:
// handle specifically
default:
// unknown error
}
But now you can do:
var target *MyError
if errors.As(err, &target) {
// handle specifically
} else {
// unknown error
}
Or if you uses a sentinel error:
var ErrMyError = errors.New("my sentinel error")
if errors.Is(err, ErrMyError) {
// handle specifically
} else {
// unknown error
}
This package was created to using with go 1.13 version however if you uses this package with a previous version, the methods
As
, Is
, Wrap
and Wrapf
will be using golang.org/x/xerrors package.
Contributions are more than welcome, if you are interested please fork this repo and send your Pull Request.
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.