automated malware analysis with cuckoo

Setup and configuration of Cuckoo framework on Linux, to automate the malaware analysis process. You need to install the following as prerequisites. 1. Installing Python and dependencies apt-get install python # installed by default apt-get install python-magic # for identifying file formats apt-get install python-dpkt # for extracting info from pcaps apt-get install python-mako # for rendering html reports and web gui apt-get install python-sqlalchemy apt-get install python-jinja2 #
Back to Top