Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/varshith-jv-1410/malware_analysis_tool

A malware analysis tool using python 3
https://github.com/varshith-jv-1410/malware_analysis_tool

malware-analysis python3

Last synced: 16 days ago
JSON representation

A malware analysis tool using python 3

Awesome Lists containing this project

README

        

[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=Varshith-JV-1410&repo=Malware_Analysis_Tool&theme=aura)](https://github.com/Varshith-JV-1410/Malware_Analysis_Tool)

# Malware_Analysis_Tool
A malware analysis tool using python 3

The OTX API key can be obtained from the AlienVault website by creating an account and subscribing to one of their plans. Once you have a valid account, you can generate an API key by going to the OTX Dashboard, selecting the "API" tab, and following the instructions to create a new API key.

The code will still work without the OTX API key, but the following lines of code will not produce any result:

_otx = OTXv2(OTX_API_KEY, server='https://otx.alienvault.com/')
result = otx.get_indicator_details_full(IndicatorTypes.FILE_HASH_MD5, hash_md5)
print("Alienvault Result:\n",result)_

This is because these lines of code use the OTX API to retrieve information about the file hash using the API key. Without the API key, these lines of code will not be able to access the OTX API and will not produce any results. However, the rest of the code that does not depend on the OTX API key will still execute successfully.

_Tested in Kali Linux_

INSTALLATION:

1. _sudo apt-get update_
2. _git clone https://github.com/VarshithMJ/Malware_Analysis_Tool.git_
3. _cd Malware_Analysis_tool_
4. _chmod +x *_
5. _sudo nano Malware_Analysis_Py3_version.py_ (replace the File_Name in line number 10 with the file path of the malware containing file or the file which you want to test for malware)
6. _ctrl+o ---> press enter ---> ctrl+x_
7. _python3 Malware_Analysis_Py3_version.py_