Skip to content

Commit

Permalink
add client side authentication vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
0c34 committed Nov 8, 2017
1 parent d42505f commit 0c146c2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"govwa/util/config"
"govwa/setting"
"govwa/util/middleware"
"govwa/vulnerability/csa"
"govwa/vulnerability/sqli"
"govwa/vulnerability/xss"
"govwa/vulnerability/idor"
Expand Down Expand Up @@ -51,6 +52,7 @@ func main() {
sqlI := sqli.New()
xss := xss.New()
idor := idor.New()
csa := csa.New()
setup := setup.New()
setting := setting.New()

Expand All @@ -62,6 +64,7 @@ func main() {
sqlI.SetRouter(router)
xss.SetRouter(router)
idor.SetRouter(router)
csa.SetRouter(router)
setup.SetRouter(router)
setting.SetRouter(router)

Expand Down

0 comments on commit 0c146c2

Please sign in to comment.