├── .gitignore ├── MaltegoTransform.py ├── README.md ├── __init__.py ├── config.py ├── credentials.cfg-sample ├── credentials.py ├── iSight ├── LICENSE ├── README.md ├── __init__.py ├── iSightTransforms.py └── isighttransforms.mtz ├── packetmail ├── LICENSE ├── PacketmailTransforms.py ├── README.md ├── __init__.py └── packetmail.mtz ├── proxies.cfg └── torlookup ├── LICENSE ├── README.md ├── TorExitNodeTransforms.py ├── __init__.py └── torlookuptransforms.mtz /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/.gitignore -------------------------------------------------------------------------------- /MaltegoTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/MaltegoTransform.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/config.py -------------------------------------------------------------------------------- /credentials.cfg-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/credentials.cfg-sample -------------------------------------------------------------------------------- /credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/credentials.py -------------------------------------------------------------------------------- /iSight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/iSight/LICENSE -------------------------------------------------------------------------------- /iSight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/iSight/README.md -------------------------------------------------------------------------------- /iSight/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iSight/iSightTransforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/iSight/iSightTransforms.py -------------------------------------------------------------------------------- /iSight/isighttransforms.mtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/iSight/isighttransforms.mtz -------------------------------------------------------------------------------- /packetmail/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/packetmail/LICENSE -------------------------------------------------------------------------------- /packetmail/PacketmailTransforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/packetmail/PacketmailTransforms.py -------------------------------------------------------------------------------- /packetmail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/packetmail/README.md -------------------------------------------------------------------------------- /packetmail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packetmail/packetmail.mtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/packetmail/packetmail.mtz -------------------------------------------------------------------------------- /proxies.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/proxies.cfg -------------------------------------------------------------------------------- /torlookup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/torlookup/LICENSE -------------------------------------------------------------------------------- /torlookup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/torlookup/README.md -------------------------------------------------------------------------------- /torlookup/TorExitNodeTransforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/torlookup/TorExitNodeTransforms.py -------------------------------------------------------------------------------- /torlookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /torlookup/torlookuptransforms.mtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xd34db33f/maltego-transforms/HEAD/torlookup/torlookuptransforms.mtz --------------------------------------------------------------------------------