Skip to content

Commit

Permalink
Update the net package to fix ddos via quic/http2
Browse files Browse the repository at this point in the history
  • Loading branch information
NHAS committed Nov 7, 2023
1 parent 8f38706 commit 3143fb5
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 36 deletions.
44 changes: 22 additions & 22 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,43 +3,43 @@ module github.com/NHAS/wag
go 1.21.0

require (
github.com/NHAS/session v0.0.0-20230913013109-aef0bdd63caa
github.com/NHAS/session v0.0.0-20231102064618-2b73ec5c2462
github.com/NHAS/webauthn v0.0.0-20230701002608-24fb1253febd
github.com/boombuler/barcode v1.0.1
github.com/cilium/ebpf v0.11.0
github.com/cilium/ebpf v0.12.2
github.com/coreos/go-iptables v0.7.0
github.com/mattn/go-sqlite3 v1.14.17
github.com/mattn/go-sqlite3 v1.14.18
github.com/mdlayher/netlink v1.7.2
github.com/msteinert/pam v1.1.0
github.com/msteinert/pam v1.2.0
github.com/pquerna/otp v1.4.0
github.com/zitadel/oidc v1.13.4
golang.org/x/crypto v0.13.0
golang.org/x/net v0.14.0
golang.org/x/sys v0.12.0
github.com/zitadel/oidc v1.13.5
golang.org/x/crypto v0.14.0
golang.org/x/net v0.17.0
golang.org/x/sys v0.13.0
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
)

require (
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
github.com/go-webauthn/x v0.1.2 // indirect
github.com/fxamacker/cbor/v2 v2.5.0 // indirect
github.com/go-webauthn/x v0.1.4 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/go-tpm v0.9.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/schema v1.2.0 // indirect
github.com/gorilla/securecookie v1.1.1 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/gorilla/schema v1.2.1 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/josharian/native v1.1.0 // indirect
github.com/mdlayher/genetlink v1.3.2 // indirect
github.com/mdlayher/socket v0.4.1 // indirect
github.com/mdlayher/socket v0.5.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/x448/float16 v0.8.4 // indirect
golang.org/x/exp v0.0.0-20230224173230-c95f2b4c22f2 // indirect
golang.org/x/oauth2 v0.6.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.zx2c4.com/wireguard v0.0.0-20230325221338-052af4a8072b // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.30.0 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/oauth2 v0.13.0 // indirect
golang.org/x/sync v0.5.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.zx2c4.com/wireguard v0.0.0-20231022001213-2e0774f246fb // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
)
Loading

0 comments on commit 3143fb5

Please sign in to comment.