-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from cerberauth/jwt-not-verified-challenge
refactor: move jwt generation in the challenges and create commands
- Loading branch information
Showing
20 changed files
with
313 additions
and
121 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
jwt-alg-none-bypass |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package jwt | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
|
||
"github.com/golang-jwt/jwt/v5" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
func NewJwtCmd() (jwtCmd *cobra.Command) { | ||
jwtCmd = &cobra.Command{ | ||
Use: "jwt", | ||
Run: func(cmd *cobra.Command, args []string) { | ||
token := jwt.New(jwt.SigningMethodNone) | ||
tokenString, err := token.SignedString(jwt.UnsafeAllowNoneSignatureType) | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
fmt.Printf("Token example: %s", tokenString) | ||
}, | ||
} | ||
|
||
return jwtCmd | ||
} |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package cmd | ||
|
||
import ( | ||
"os" | ||
|
||
"github.com/cerberauth/vulns-challenges/challenges/jwt-alg-none-bypass/cmd/jwt" | ||
"github.com/cerberauth/vulns-challenges/challenges/jwt-alg-none-bypass/cmd/serve" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
func NewRootCmd() (cmd *cobra.Command) { | ||
var rootCmd = &cobra.Command{} | ||
|
||
rootCmd.AddCommand(serve.NewServeCmd()) | ||
rootCmd.AddCommand(jwt.NewJwtCmd()) | ||
|
||
return rootCmd | ||
} | ||
|
||
// Execute adds all child commands to the root command and sets flags appropriately. | ||
// This is called by main.main(). It only needs to happen once to the RootCmd. | ||
func Execute() { | ||
c := NewRootCmd() | ||
|
||
if err := c.Execute(); err != nil { | ||
os.Exit(1) | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package serve | ||
|
||
import ( | ||
"github.com/spf13/cobra" | ||
|
||
"github.com/cerberauth/vulns-challenges/challenges/jwt-alg-none-bypass/serve" | ||
) | ||
|
||
func NewServeCmd() (serveCmd *cobra.Command) { | ||
serveCmd = &cobra.Command{ | ||
Use: "serve", | ||
Run: func(cmd *cobra.Command, args []string) { | ||
serve.RunServer() | ||
}, | ||
} | ||
|
||
return serveCmd | ||
} |
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 |
---|---|---|
@@ -1,2 +1,12 @@ | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= | ||
github.com/golang-jwt/jwt/v5 v5.0.0 h1:1n1XNM9hk7O9mnQoNBGolZvzebBQ7p93ULHRc28XJUE= | ||
github.com/golang-jwt/jwt/v5 v5.0.0/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= | ||
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= | ||
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= | ||
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= | ||
github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= | ||
github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= | ||
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= | ||
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= |
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 |
---|---|---|
@@ -1,51 +1,7 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"net/http" | ||
"strings" | ||
|
||
"github.com/golang-jwt/jwt/v5" | ||
) | ||
import "github.com/cerberauth/vulns-challenges/challenges/jwt-alg-none-bypass/cmd" | ||
|
||
func main() { | ||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { | ||
authorizationHeader := r.Header.Get("authorization") | ||
if authorizationHeader == "" { | ||
w.WriteHeader(401) | ||
return | ||
} | ||
|
||
parts := strings.Split(authorizationHeader, "Bearer") | ||
if len(parts) != 2 { | ||
w.WriteHeader(401) | ||
return | ||
} | ||
|
||
tokenString := strings.TrimSpace(parts[1]) | ||
token, err := jwt.Parse(tokenString, func(token *jwt.Token) (interface{}, error) { | ||
// fake vulnerability | ||
if token.Method.Alg() == "none" { | ||
return jwt.UnsafeAllowNoneSignatureType, nil | ||
} | ||
|
||
if _, ok := token.Method.(*jwt.SigningMethodHMAC); !ok { | ||
return nil, fmt.Errorf("Unexpected signing method: %v", token.Header["alg"]) | ||
} | ||
|
||
return []byte("my_secret_key"), nil | ||
}) | ||
|
||
if token != nil && token.Valid { | ||
w.WriteHeader(204) | ||
} else { | ||
fmt.Println(err) | ||
w.WriteHeader(401) | ||
} | ||
}) | ||
|
||
if err := http.ListenAndServe(":8080", nil); err != nil { | ||
log.Fatal(err) | ||
} | ||
cmd.Execute() | ||
} |
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package serve | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"net/http" | ||
"strings" | ||
|
||
"github.com/golang-jwt/jwt/v5" | ||
) | ||
|
||
func RunServer() { | ||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { | ||
authorizationHeader := r.Header.Get("authorization") | ||
if authorizationHeader == "" { | ||
w.WriteHeader(401) | ||
return | ||
} | ||
|
||
parts := strings.Split(authorizationHeader, "Bearer") | ||
if len(parts) != 2 { | ||
w.WriteHeader(401) | ||
return | ||
} | ||
|
||
tokenString := strings.TrimSpace(parts[1]) | ||
token, err := jwt.Parse(tokenString, func(token *jwt.Token) (interface{}, error) { | ||
// fake vulnerability | ||
if token.Method.Alg() == "none" { | ||
return jwt.UnsafeAllowNoneSignatureType, nil | ||
} | ||
|
||
if _, ok := token.Method.(*jwt.SigningMethodHMAC); !ok { | ||
return nil, fmt.Errorf("Unexpected signing method: %v", token.Header["alg"]) | ||
} | ||
|
||
return []byte("my_secret_key"), nil | ||
}) | ||
|
||
if token != nil && token.Valid { | ||
w.WriteHeader(204) | ||
} else { | ||
fmt.Println(err) | ||
w.WriteHeader(401) | ||
} | ||
}) | ||
|
||
log.Println("starting server") | ||
log.Fatal(http.ListenAndServe(":8080", nil)) | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
jwt-weak-hmac-secret |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package jwt | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
|
||
"github.com/golang-jwt/jwt/v5" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
func NewJwtCmd() (jwtCmd *cobra.Command) { | ||
jwtCmd = &cobra.Command{ | ||
Use: "jwt", | ||
Run: func(cmd *cobra.Command, args []string) { | ||
token := jwt.New(jwt.SigningMethodHS256) | ||
tokenString, err := token.SignedString([]byte("secret")) | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
fmt.Printf("Token example: %s", tokenString) | ||
}, | ||
} | ||
|
||
return jwtCmd | ||
} |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package cmd | ||
|
||
import ( | ||
"os" | ||
|
||
"github.com/cerberauth/vulns-challenges/challenges/jwt-weak-hmac-secret/cmd/jwt" | ||
"github.com/cerberauth/vulns-challenges/challenges/jwt-weak-hmac-secret/cmd/serve" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
func NewRootCmd() (cmd *cobra.Command) { | ||
var rootCmd = &cobra.Command{} | ||
|
||
rootCmd.AddCommand(serve.NewServeCmd()) | ||
rootCmd.AddCommand(jwt.NewJwtCmd()) | ||
|
||
return rootCmd | ||
} | ||
|
||
// Execute adds all child commands to the root command and sets flags appropriately. | ||
// This is called by main.main(). It only needs to happen once to the RootCmd. | ||
func Execute() { | ||
c := NewRootCmd() | ||
|
||
if err := c.Execute(); err != nil { | ||
os.Exit(1) | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package serve | ||
|
||
import ( | ||
"github.com/spf13/cobra" | ||
|
||
"github.com/cerberauth/vulns-challenges/challenges/jwt-weak-hmac-secret/serve" | ||
) | ||
|
||
func NewServeCmd() (serveCmd *cobra.Command) { | ||
serveCmd = &cobra.Command{ | ||
Use: "serve", | ||
Run: func(cmd *cobra.Command, args []string) { | ||
serve.RunServer() | ||
}, | ||
} | ||
|
||
return serveCmd | ||
} |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= | ||
github.com/golang-jwt/jwt/v5 v5.0.0 h1:1n1XNM9hk7O9mnQoNBGolZvzebBQ7p93ULHRc28XJUE= | ||
github.com/golang-jwt/jwt/v5 v5.0.0/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= | ||
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= | ||
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= | ||
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= | ||
github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= | ||
github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= | ||
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= | ||
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= | ||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= |
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 |
---|---|---|
@@ -1,46 +1,7 @@ | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"net/http" | ||
"strings" | ||
|
||
"github.com/golang-jwt/jwt/v5" | ||
) | ||
import "github.com/cerberauth/vulns-challenges/challenges/jwt-weak-hmac-secret/cmd" | ||
|
||
func main() { | ||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { | ||
authorizationHeader := r.Header.Get("authorization") | ||
if authorizationHeader == "" { | ||
w.WriteHeader(401) | ||
return | ||
} | ||
|
||
parts := strings.Split(authorizationHeader, "Bearer") | ||
if len(parts) != 2 { | ||
w.WriteHeader(401) | ||
return | ||
} | ||
|
||
tokenString := strings.TrimSpace(parts[1]) | ||
token, err := jwt.Parse(tokenString, func(token *jwt.Token) (interface{}, error) { | ||
if _, ok := token.Method.(*jwt.SigningMethodHMAC); !ok { | ||
return nil, fmt.Errorf("Unexpected signing method: %v", token.Header["alg"]) | ||
} | ||
|
||
return []byte("secret"), nil | ||
}) | ||
|
||
if token != nil && token.Valid { | ||
w.WriteHeader(204) | ||
} else { | ||
fmt.Println(err) | ||
w.WriteHeader(401) | ||
} | ||
}) | ||
|
||
if err := http.ListenAndServe(":8080", nil); err != nil { | ||
log.Fatal(err) | ||
} | ||
cmd.Execute() | ||
} |
Oops, something went wrong.