├── .gitignore ├── LICENSE ├── README.md ├── interpol.mtz ├── project.py ├── requirements.txt └── transforms ├── ConvertToSearchFaceEntity.py ├── RedNoticeByPhraseFaceSearch.py ├── RedNoticeEntitiesByName.py ├── RedNoticeEntitiesByPhrase.py ├── RedNoticeFaceSearch.py ├── UNSCNoticeEntitiesByName.py ├── UNSCNoticeEntitiesByPhrase.py ├── YellowNoticeEntitiesByName.py ├── YellowNoticeEntitiesByPhrase.py └── common.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/README.md -------------------------------------------------------------------------------- /interpol.mtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/interpol.mtz -------------------------------------------------------------------------------- /project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/project.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | maltego_trx 2 | requests 3 | chardet -------------------------------------------------------------------------------- /transforms/ConvertToSearchFaceEntity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/transforms/ConvertToSearchFaceEntity.py -------------------------------------------------------------------------------- /transforms/RedNoticeByPhraseFaceSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/transforms/RedNoticeByPhraseFaceSearch.py -------------------------------------------------------------------------------- /transforms/RedNoticeEntitiesByName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/transforms/RedNoticeEntitiesByName.py -------------------------------------------------------------------------------- /transforms/RedNoticeEntitiesByPhrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/transforms/RedNoticeEntitiesByPhrase.py -------------------------------------------------------------------------------- /transforms/RedNoticeFaceSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/transforms/RedNoticeFaceSearch.py -------------------------------------------------------------------------------- /transforms/UNSCNoticeEntitiesByName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/transforms/UNSCNoticeEntitiesByName.py -------------------------------------------------------------------------------- /transforms/UNSCNoticeEntitiesByPhrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/transforms/UNSCNoticeEntitiesByPhrase.py -------------------------------------------------------------------------------- /transforms/YellowNoticeEntitiesByName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/transforms/YellowNoticeEntitiesByName.py -------------------------------------------------------------------------------- /transforms/YellowNoticeEntitiesByPhrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/transforms/YellowNoticeEntitiesByPhrase.py -------------------------------------------------------------------------------- /transforms/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SocialLinks-IO/interpol-notices-maltego/HEAD/transforms/common.py --------------------------------------------------------------------------------