├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── libs ├── PrettyOutput.py └── __init__.py ├── requirements.txt └── spoofcheck.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighook/spoofcheck/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighook/spoofcheck/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighook/spoofcheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighook/spoofcheck/HEAD/README.md -------------------------------------------------------------------------------- /libs/PrettyOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighook/spoofcheck/HEAD/libs/PrettyOutput.py -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama 2 | py-emailprotections 3 | dnslib 4 | tldextract 5 | -------------------------------------------------------------------------------- /spoofcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sighook/spoofcheck/HEAD/spoofcheck.py --------------------------------------------------------------------------------