This repository has been archived by the owner on Nov 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Feature: - (#152, #155) Add In-App WAF protection to Echo's request parameter parser: [`Context`](https://pkg.go.dev/github.com/labstack/echo/v4#Context)'s method `Bind()` is now protected by the In-App WAF. The Go value it parses from the HTTP request is made available to the In-App WAF rules via the `GET/POST parameters` field. When blocked, `Bind()` returns a non-nil [`SqreenError` value](https://godoc.org/github.com/sqreen/go-agent/sdk/types#SqreenError) and its caller should immediately return. Read more about the blocking behavior of Sqreen for Go at <https://docs.sqreen.com/go/integration>. Fix: - (#153) RASP shellshock: properly handle environment variables containing variable definitions (eg. `TERMCAP`).
- Loading branch information
Showing
9 changed files
with
799 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,6 @@ | |
|
||
package version | ||
|
||
const version = "0.15.0" | ||
const version = "0.16.0" | ||
|
||
func Version() string { return version } |
Oops, something went wrong.