Abyss Watcher - Malware Downloader
Abyss Watcher is a simple python script that parses malicious url lists from following websites to automatically download the malware sample:
pip install -r requirements.txt
python abyss.py
You can specify download location with -p
.
If you want torified access, following instructions can be used.
sudo apt-get install tor
sudo service tor start
python abyss.py -t
The best way to use Abyss Watcher is to run it routinely from cron—with random delay—like this.
0 0 * * * sleep `expr $RANDOM \% 3600`; python /home/ntddk/Abyss-Watcher/abyss.py -t
Enjoy!