Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Minor edit
  • Loading branch information
Kwstubbs committed Oct 18, 2023
commit 5ae082c28304f7c098a5d18ad6274e35a08cfd11
5 changes: 4 additions & 1 deletion go/ql/src/experimental/CWE-347/Algorithm.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package main

import (
"fmt"

"github.com/golang-jwt/jwt/v5"
)

Expand Down Expand Up @@ -28,4 +31,4 @@ func (j JWT) Validate(token string) (interface{}, error) {
}

return claims["dat"], nil
}
}