Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

razaborg/MalwareBazaarApi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 

Repository files navigation

MalwareBazaarApi

A Python3 wrapper for the MalwareBazaar API. This is still an undergoing development.

✅ Support all 'pull' methods of the API

❌ Support of the 'push' methods (submit, upload, comment)

Requirements

Usage examples

from MalwareBazaar import MalwareBazaarClient

api = MalwareBazaarClient('your-api-key')
entry = api.get_infos('b47087bd013a60ff82b5338d7ea3dd4d804f6a961e9820fd306b9c5630775ebf')
print(entry)
from MalwareBazaar import MalwareBazaarClient

api = MalwareBazaarClient('your-api-key')
for entry in api.get_recent():
	print(entry)
from MalwareBazaar import MalwareBazaarClient

api = MalwareBazaarClient('your-api-key')
entry = api.get_taginfo('TrickBot'):
print(entry.to_json())

Releases

No releases published

Packages

No packages published

Languages