├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── README.md ├── api └── functions.go ├── assets ├── bootstrap.bundle.min.js ├── bootstrap.min.css ├── custom.js ├── jquery.js └── starter-template.css ├── database ├── db.go ├── emails.go └── users.go ├── db.sqlite ├── images ├── Architecture.png ├── email.png ├── emails.png ├── files.png ├── implicitgrant.png ├── recommended.png ├── redirecturl.png ├── registerapp.png ├── url.png └── users.png ├── main.go ├── model ├── definitions.go └── structs.go ├── rules └── exampleRule.json ├── server ├── handlers.go └── http.go ├── static └── index.html ├── template.conf └── templates ├── about.html ├── email.html ├── emails.html ├── files.html ├── main.html └── users.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | downloads/*.* 3 | *.exe 4 | vendor/ -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /api/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/api/functions.go -------------------------------------------------------------------------------- /assets/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/assets/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /assets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/assets/bootstrap.min.css -------------------------------------------------------------------------------- /assets/custom.js: -------------------------------------------------------------------------------- 1 | // Any global JS code -------------------------------------------------------------------------------- /assets/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/assets/jquery.js -------------------------------------------------------------------------------- /assets/starter-template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/assets/starter-template.css -------------------------------------------------------------------------------- /database/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/database/db.go -------------------------------------------------------------------------------- /database/emails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/database/emails.go -------------------------------------------------------------------------------- /database/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/database/users.go -------------------------------------------------------------------------------- /db.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/db.sqlite -------------------------------------------------------------------------------- /images/Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/images/Architecture.png -------------------------------------------------------------------------------- /images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/images/email.png -------------------------------------------------------------------------------- /images/emails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/images/emails.png -------------------------------------------------------------------------------- /images/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/images/files.png -------------------------------------------------------------------------------- /images/implicitgrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/images/implicitgrant.png -------------------------------------------------------------------------------- /images/recommended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/images/recommended.png -------------------------------------------------------------------------------- /images/redirecturl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/images/redirecturl.png -------------------------------------------------------------------------------- /images/registerapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/images/registerapp.png -------------------------------------------------------------------------------- /images/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/images/url.png -------------------------------------------------------------------------------- /images/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/images/users.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/main.go -------------------------------------------------------------------------------- /model/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/model/definitions.go -------------------------------------------------------------------------------- /model/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/model/structs.go -------------------------------------------------------------------------------- /rules/exampleRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/rules/exampleRule.json -------------------------------------------------------------------------------- /server/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/server/handlers.go -------------------------------------------------------------------------------- /server/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/server/http.go -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/static/index.html -------------------------------------------------------------------------------- /template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/template.conf -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/templates/email.html -------------------------------------------------------------------------------- /templates/emails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/templates/emails.html -------------------------------------------------------------------------------- /templates/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/templates/files.html -------------------------------------------------------------------------------- /templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/templates/main.html -------------------------------------------------------------------------------- /templates/users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackhatethicalhacking/o365-attack-toolkit/HEAD/templates/users.html --------------------------------------------------------------------------------