https://github.com/michenriksen/maltego
Custom Maltego transforms
https://github.com/michenriksen/maltego
Last synced: 4 months ago
JSON representation
Custom Maltego transforms
- Host: GitHub
- URL: https://github.com/michenriksen/maltego
- Owner: michenriksen
- License: mit
- Created: 2015-02-23T16:33:30.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-27T11:19:32.000Z (almost 11 years ago)
- Last Synced: 2025-08-25T09:39:00.410Z (5 months ago)
- Language: Python
- Size: 492 KB
- Stars: 68
- Watchers: 9
- Forks: 37
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Maltego
A collection of custom local transforms for the [Maltego](http://www.paterva.com/web6/products/maltego.php)
OSINT gathering tool.
## local_pull_aliases.py, local_pull_hashtags.py, local_pull_urls.py, local_tweet_to_words.py
Extracts entities from Tweets just like the built-in transforms, but faster as they
don't send the Tweets off the the remote servers, but extract the entities locally in code.
### Requirements:
Depends on [twitter-text-python](https://github.com/edburnett/twitter-text-python) which
can be installed with `pip install twitter-text-python`.
**local_tweet_to_words.py** also depends on [Natural Language Toolkit](http://www.nltk.org/)
which can be installed with `pip install nltk`. After installation, execute
`python -c "import nltk; nltk.download()"` in a terminal and download the `stopwords`
package under the Corpora tab.
## follow_redirects.py
URL transform that follows up to 15 HTTP redirects and returns the final URL.
Convenient if a transform returns a shortened or obfuscated URL.
**Note:** Running this transform will potentially engage target systems,
so if you're doing passive reconnaissance, this transform should not be used!