- Unshorten URL's that have been shortened by external services.
- Perform reputation checks from:
- Get links and compare them against VirusTotal (see requirements)
- Get links and compare them against URLscan to see screenshot of page.
- Query [WhoIs] database for domain information.
- Python 3.x
- Install all dependencies from the requirements.txt file.
pip install -r requirements.txt
It is important to not expose your API Keys!
To handle this concern, I've placed the API keys in a file named 'config.py'.
Create a file named 'config.py' on the root directory of this repo and add the following (replace 'API-KEY' with your keys):
urlScanAPIKey = 'API-KEY'
vtAPIKey = 'API-KEY'
=======
The main script file is linkAnalyzer.py
To run the script,
Open CMD, PowerShell or terminal and enter :
python linkAnalyzer.py
- ?