Skip to content

Commit

Permalink
Bump version, fixes exception on missing vendor intel.
Browse files Browse the repository at this point in the history
  • Loading branch information
3c7 committed Dec 5, 2022
1 parent d3a7967 commit b6c51a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion malwarebazaar/bazaar.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ def query(
c.print(sample.sha256_hash)
else:
print_sample_table(sample, c)
print_vendor_info_table(sample, c)
if sample.vendor_intel:
print_vendor_info_table(sample, c)

if download:
for sample in track(samples, description="Downloading samples..."):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "malwarebazaar"
version = "0.2.0-beta1"
version = "0.2.0-beta2"
description = "CLI wrapper for malware bazaar API (bazaar.abuse.ch) and YARAify API (yaraify.abuse.ch)"
authors = ["3c7 <3c7@posteo.de>"]
license = "MIT"
Expand Down

0 comments on commit b6c51a9

Please sign in to comment.