├── .github └── workflows │ └── release.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Readme.md ├── cmd ├── root.go └── server.go ├── go.mod ├── go.sum ├── main.go └── pkg ├── entra ├── devicecode.go └── tenantinfo.go └── utils ├── banner.go ├── useragentwrapper.go └── username.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/Readme.md -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/cmd/server.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/main.go -------------------------------------------------------------------------------- /pkg/entra/devicecode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/pkg/entra/devicecode.go -------------------------------------------------------------------------------- /pkg/entra/tenantinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/pkg/entra/tenantinfo.go -------------------------------------------------------------------------------- /pkg/utils/banner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/pkg/utils/banner.go -------------------------------------------------------------------------------- /pkg/utils/useragentwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/pkg/utils/useragentwrapper.go -------------------------------------------------------------------------------- /pkg/utils/username.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denniskniep/DeviceCodePhishing/HEAD/pkg/utils/username.go --------------------------------------------------------------------------------