├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── docker-compose.yml ├── mhd ├── modules │ ├── email_checker.py │ ├── hash_verify.py │ ├── ip_checker.py │ └── url_checker.py ├── requirements.txt ├── server.py ├── static │ ├── css │ │ ├── bootstrap-table.min.css │ │ ├── bootstrap.min.css │ │ ├── flag-sprites.min.css │ │ ├── ie10-viewport-bug-workaround.css │ │ └── starter-template.css │ ├── data │ │ └── GeoLite2-Country.mmdb │ ├── fonts │ │ ├── font-awesome │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── css │ │ │ │ ├── font-awesome.css │ │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ │ ├── animated.less │ │ │ │ ├── bordered-pulled.less │ │ │ │ ├── core.less │ │ │ │ ├── fixed-width.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── icons.less │ │ │ │ ├── larger.less │ │ │ │ ├── list.less │ │ │ │ ├── mixins.less │ │ │ │ ├── path.less │ │ │ │ ├── rotated-flipped.less │ │ │ │ ├── stacked.less │ │ │ │ └── variables.less │ │ │ └── scss │ │ │ │ ├── _animated.scss │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ ├── _core.scss │ │ │ │ ├── _fixed-width.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _larger.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _path.scss │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ ├── _stacked.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── font-awesome.scss │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ └── open-sans │ │ │ ├── open-sans-v13-latin-regular.eot │ │ │ ├── open-sans-v13-latin-regular.svg │ │ │ ├── open-sans-v13-latin-regular.ttf │ │ │ ├── open-sans-v13-latin-regular.woff │ │ │ └── open-sans-v13-latin-regular.woff2 │ ├── imgs │ │ ├── detective.png │ │ ├── detective_big.png │ │ ├── flags.png │ │ └── loading.gif │ └── js │ │ ├── bootstrap-table.min.js │ │ ├── bootstrap.min.js │ │ ├── html5shiv.min.js │ │ ├── ie-emulation-modes-warning.js │ │ ├── ie10-viewport-bug-workaround.js │ │ ├── jquery.min.js │ │ ├── loader.js │ │ ├── pygal-tooltips.min.js │ │ └── respond.min.js └── templates │ └── index.html ├── readme └── detective_big.png └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn --chdir mha server:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /mhd/modules/email_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/modules/email_checker.py -------------------------------------------------------------------------------- /mhd/modules/hash_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/modules/hash_verify.py -------------------------------------------------------------------------------- /mhd/modules/ip_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/modules/ip_checker.py -------------------------------------------------------------------------------- /mhd/modules/url_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/modules/url_checker.py -------------------------------------------------------------------------------- /mhd/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/requirements.txt -------------------------------------------------------------------------------- /mhd/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/server.py -------------------------------------------------------------------------------- /mhd/static/css/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/css/bootstrap-table.min.css -------------------------------------------------------------------------------- /mhd/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /mhd/static/css/flag-sprites.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/css/flag-sprites.min.css -------------------------------------------------------------------------------- /mhd/static/css/ie10-viewport-bug-workaround.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/css/ie10-viewport-bug-workaround.css -------------------------------------------------------------------------------- /mhd/static/css/starter-template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/css/starter-template.css -------------------------------------------------------------------------------- /mhd/static/data/GeoLite2-Country.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/data/GeoLite2-Country.mmdb -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/HELP-US-OUT.txt -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/animated.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/core.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/icons.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/larger.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/list.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/path.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/less/variables.less -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_animated.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /mhd/static/fonts/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/font-awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /mhd/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /mhd/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /mhd/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /mhd/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /mhd/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /mhd/static/fonts/open-sans/open-sans-v13-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/open-sans/open-sans-v13-latin-regular.eot -------------------------------------------------------------------------------- /mhd/static/fonts/open-sans/open-sans-v13-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/open-sans/open-sans-v13-latin-regular.svg -------------------------------------------------------------------------------- /mhd/static/fonts/open-sans/open-sans-v13-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/open-sans/open-sans-v13-latin-regular.ttf -------------------------------------------------------------------------------- /mhd/static/fonts/open-sans/open-sans-v13-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/open-sans/open-sans-v13-latin-regular.woff -------------------------------------------------------------------------------- /mhd/static/fonts/open-sans/open-sans-v13-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/fonts/open-sans/open-sans-v13-latin-regular.woff2 -------------------------------------------------------------------------------- /mhd/static/imgs/detective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/imgs/detective.png -------------------------------------------------------------------------------- /mhd/static/imgs/detective_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/imgs/detective_big.png -------------------------------------------------------------------------------- /mhd/static/imgs/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/imgs/flags.png -------------------------------------------------------------------------------- /mhd/static/imgs/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/imgs/loading.gif -------------------------------------------------------------------------------- /mhd/static/js/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/js/bootstrap-table.min.js -------------------------------------------------------------------------------- /mhd/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /mhd/static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/js/html5shiv.min.js -------------------------------------------------------------------------------- /mhd/static/js/ie-emulation-modes-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/js/ie-emulation-modes-warning.js -------------------------------------------------------------------------------- /mhd/static/js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /mhd/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/js/jquery.min.js -------------------------------------------------------------------------------- /mhd/static/js/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/js/loader.js -------------------------------------------------------------------------------- /mhd/static/js/pygal-tooltips.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/js/pygal-tooltips.min.js -------------------------------------------------------------------------------- /mhd/static/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/static/js/respond.min.js -------------------------------------------------------------------------------- /mhd/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/mhd/templates/index.html -------------------------------------------------------------------------------- /readme/detective_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akajhon/MailHeaderDetective/HEAD/readme/detective_big.png -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.0 2 | --------------------------------------------------------------------------------